report_suite_group_functional.html

Report generated on 24-Jun-2023 at 07:16:24 by pytest-html v3.2.0

Summary

240 tests ran in 50287.58 seconds.

225 passed, 25 skipped, 13 failed, 0 errors, 2 expected failures, 0 unexpected passes

Results

Result Test Duration Links
Failed functional/hard_drop_counters/test_hard_drop_counters.py::test_hw_drop_l3[3] 698.23
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f1b805adc30>
ports_num = 3

@pytest.mark.parametrize('ports_num', [1, 3])
async def test_hw_drop_l3(testbed, ports_num):
"""
Test Name: test_hw_drop_l3
Test Suite: suite_functional_hard_drop_counters
Test Overview: Test L3 hard_drop counters with 1/3 ports
Test Procedure:
1. Set link up on interfaces on all participant ports
2. Configure ip address on ports and connect devices
3. Add Static Arp entry on the first and second ports connected to ixia
4. Set up streams matching all L3 invalid packets types on tx ports
5. Transmit traffic and verify drop counters updated according to the rate packets sent
"""

tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
dev_name = dent_devices[0].host_name
dent_dev = dent_devices[0]
tg_ports = tgen_dev.links_dict[dev_name][0]
dut_ports = tgen_dev.links_dict[dev_name][1]
frame_size = randint(128, 1400)
macs = {port: random_mac() for port in dut_ports}
ip_network = IPv4Network('2.2.2.0/24')

# 1.Set link up on interfaces on all participant ports
out = await IpLink.set(
input_data=[{dev_name: [
{'device': port, 'operstate': 'up'} for port in dut_ports]}])
err_msg = f"Verify that ports {dut_ports} set to 'UP' state.\n{out}"
assert not out[0][dev_name]['rc'], err_msg

# 2.Configure ip address on ports and connect devices
addr_map = []
for p_indx in range(ports_num):
ip_addr = ip_network[1]
if ports_num == 1 or p_indx == 2:
addr_map.append((dut_ports[p_indx], tg_ports[p_indx], str(ip_addr + 1), str(ip_addr), ip_network.prefixlen,
str(ip_network.broadcast_address), macs[dut_ports[p_indx]]))
addr_map.append((
dut_ports[p_indx + 1], tg_ports[p_indx + 1], '0.0.0.0',
'0.0.0.1', 24, '0.0.0.255', macs[dut_ports[p_indx + 1]]))
else:
addr_map.append((
dut_ports[p_indx], tg_ports[p_indx], str(ip_addr + 1),
str(ip_addr), ip_network.prefixlen, str(ip_network.broadcast_address), macs[dut_ports[p_indx]]))
ip_network = IPv4Network(f'{ip_network[0] + 256}/{ip_network.prefixlen}')

out = await IpAddress.add(input_data=[{dev_name: [
{'dev': port, 'prefix': f'{ip}/{plen}', 'broadcast': broadcast}
for port, _, _, ip, plen, broadcast, _ in addr_map]}])
assert not out[0][dev_name]['rc'], f'Failed to add IP addr to ports \n{out}'

dev_groups = tgen_utils_dev_groups_from_config(
[{'ixp': tg_port, 'ip': tg_ip, 'gw': gw, 'plen': plen}
for _, tg_port, tg_ip, gw, plen, _, _ in addr_map])
await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups)

# 3.Add Static Arp entry on the first and second ports connected to ixia
out = await IpNeighbor.add(input_data=[{dev_name: [
{'dev': port, 'address': nei_ip, 'lladdr': lladdr}
for port, _, nei_ip, _, _, _, lladdr in addr_map[:ports_num]
]}])
assert not out[0][dev_name]['rc'], 'Failed to add static arp entries'

# 4.Set up streams matching all L3 invalid packets types on tx ports
streams = {}
for p_indx in range(ports_num):
src_dst_ports = [tg_ports[p_indx], tg_ports[p_indx ^ 1]]
port_streams = await get_illegal_drop_streams(dent_dev, dev_groups, src_dst_ports, dut_ports[p_indx],
macs[dut_ports[p_indx]], addr_map[p_indx][2], size=frame_size)
streams.update(port_streams)
# Update ip_sip_is_zero_ when 1 port (tg_port[1] will be as tx_port)
if ports_num == 1:
swp_info = {}
await tgen_utils_get_swp_info(dent_dev, dut_ports[1], swp_info)
streams[f'ip_sip_is_zero_{dut_ports[0]}']['ip_source'] = dev_groups[tg_ports[1]][0]['name']
streams[f'ip_sip_is_zero_{dut_ports[0]}']['ip_destination'] = dev_groups[tg_ports[0]][0]['name']
streams[f'ip_sip_is_zero_{dut_ports[0]}']['dstMac'] = swp_info['mac']
streams[f'ip_sip_is_zero_{dut_ports[0]}']['srcMac'] = macs[dut_ports[1]]

# 5.Transmit traffic and verify drop counters updated according to the rate packets sent
for stream_name in DROP_COUNTERS_MAP:
streams_to_apply = {name: streams[name] for name in streams if name.startswith(stream_name)}
await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams_to_apply)
await tgen_utils_start_traffic(tgen_dev)
await asyncio.sleep(15)
stats = await tgen_utils_get_traffic_stats(tgen_dev)
exp_rate = sum([int(row['Frames Tx. Rate']) for row in stats.Rows])
> await verify_drop_rate_avg(dent_dev, DROP_COUNTERS_MAP[stream_name], exp_rate)

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py:316:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

dent_dev = [DENT aggregation 1: 10.36.118.44], cpu_stat_code = 145
exp_rate = 6218904, deviation = 0.1, logs = False

async def verify_drop_rate_avg(dent_dev, cpu_stat_code, exp_rate, deviation=0.1, logs=False):
"""
Verify average drop rate is as expected
Args:
dent_dev: Dent device
cpu_stat_code (str): Cpu code to read counters from
exp_rate (float): Expected rate value
deviation (float): Deviation percentage
"""
rc, out = await dent_dev.run_cmd(f'get_drops_rate_code_avg {cpu_stat_code}')
assert not rc, f'get_drops_rate_code_avg failed with rc {rc}'
actual_rate = int(out.strip())
res = isclose(exp_rate, actual_rate, rel_tol=deviation)
if logs:
dent_dev.applog.info(f'Drop rate {actual_rate} expected {exp_rate} for stat_code {cpu_stat_code}')
> assert res, f'Current drop rate {actual_rate} exceeds expected rate {exp_rate} including deviation {deviation}'
E AssertionError: Current drop rate 3137538 exceeds expected rate 6218904 including deviation 0.1
E assert False

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py:185: AssertionError
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5842' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_hw_drop_l3[3]">Starting testcase:test_hw_drop_l3[3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=99, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=100] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=100] Local address: 172.17.0.3, port 38090 INFO asyncssh:logging.py:92 [conn=100] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=100] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=100] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=100, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:29:03 PM UTC INFO asyncssh:logging.py:92 [conn=100, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=100, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=100, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=100, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=100, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=100, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=100, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=100, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=100, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=100, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=100, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:29:03 PM UTC INFO asyncssh:logging.py:92 [conn=100, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=100, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=100, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address add 2.2.2.1/24 broadcast 2.2.2.255 dev swp1 && ip address add 2.2.3.1/24 broadcast 2.2.3.255 dev swp2 && ip address add 2.2.4.1/24 broadcast 2.2.4.255 dev swp3 && ip address add 0.0.0.1/24 broadcast 0.0.0.255 dev swp4 INFO asyncssh:logging.py:92 [conn=100, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=12] Command: ip address add 2.2.2.1/24 broadcast 2.2.2.255 dev swp1 && ip address add 2.2.3.1/24 broadcast 2.2.3.255 dev swp2 && ip address add 2.2.4.1/24 broadcast 2.2.4.255 dev swp3 && ip address add 0.0.0.1/24 broadcast 0.0.0.255 dev swp4 INFO asyncssh:logging.py:92 [conn=100, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.3.2/24', 'count': 1, 'ip': '2.2.3.2', 'gw': '2.2.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_2.2.4.2/24', 'count': 1, 'ip': '2.2.4.2', 'gw': '2.2.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_0.0.0.0/24', 'count': 1, 'ip': '0.0.0.0', 'gw': '0.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=100, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 2.2.2.2 lladdr 02:7f:e4:81:d8:13 dev swp1 && ip neigh add 2.2.3.2 lladdr 02:5d:ec:4f:34:19 dev swp2 && ip neigh add 2.2.4.2 lladdr 02:e5:d1:d5:2b:aa dev swp3 INFO asyncssh:logging.py:92 [conn=100, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=14] Command: ip neigh add 2.2.2.2 lladdr 02:7f:e4:81:d8:13 dev swp1 && ip neigh add 2.2.3.2 lladdr 02:5d:ec:4f:34:19 dev swp2 && ip neigh add 2.2.4.2 lladdr 02:e5:d1:d5:2b:aa dev swp3 INFO asyncssh:logging.py:92 [conn=100, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=100, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=16] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=100, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=16] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=100, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=18] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=100, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"broadcast":"2.2.2.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"broadcast":"2.2.2.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=100, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=20] Command: bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=100, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=20] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp2 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=100, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=22] Command: ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=100, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.3.1","prefixlen":24,"broadcast":"2.2.3.255","scope":"global","label":"swp2","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp2 ', 'rc': 0, 'result': '[{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.3.1","prefixlen":24,"broadcast":"2.2.3.255","scope":"global","label":"swp2","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=23] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp3 INFO asyncssh:logging.py:92 [conn=100, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=24] Command: bridge -j vlan show dev swp3 INFO asyncssh:logging.py:92 [conn=100, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=24] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp3 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp3 INFO asyncssh:logging.py:92 [conn=100, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=26] Command: ip -j address show swp3 INFO asyncssh:logging.py:92 [conn=100, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.4.1","prefixlen":24,"broadcast":"2.2.4.255","scope":"global","label":"swp3","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp3 ', 'rc': 0, 'result': '[{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.4.1","prefixlen":24,"broadcast":"2.2.4.255","scope":"global","label":"swp3","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6ea6e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 10663780 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 10663780 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 10663780 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=100, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=27] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 138 INFO asyncssh:logging.py:92 [conn=100, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=28] Command: get_drops_rate_code_avg 138 INFO asyncssh:logging.py:92 [conn=100, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=28] Channel closed DEBUG agg1:Logger.py:156 6274952 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_uc_dip_da_mismatch_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_uc_dip_da_mismatch_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_uc_dip_da_mismatch_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6eada0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 10679256 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 10679256 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 10679256 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=100, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=29] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=100, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=30] Command: get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=100, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=30] Channel closed DEBUG agg1:Logger.py:156 6275715 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_checksum_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_checksum_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_checksum_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e63fa00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 9452793 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 9452793 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 9452793 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=100, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=31] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=100, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=32] Command: get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=100, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=32] Channel closed DEBUG agg1:Logger.py:156 6275515 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_length_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_length_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_length_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e786560>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 8674465 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 8674465 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 8674465 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 1 INFO asyncssh:logging.py:92 [conn=100, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=33] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=34] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=34] Channel closed DEBUG agg1:Logger.py:156 6274702 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_dip_zero_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_dip_zero_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_dip_zero_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e784730>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 10732297 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 10732297 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 10732297 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 1 INFO asyncssh:logging.py:92 [conn=100, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=35] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=36] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=36] Channel closed DEBUG agg1:Logger.py:156 6275096 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_sip_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_sip_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_sip_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e785390>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 8457201 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 8457201 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 8457201 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=100, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=37] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=38] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=38] Channel closed DEBUG agg1:Logger.py:156 6274818 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_dip_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': -1, 'result': 'Unable to delete a started Taffic Item'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e785000>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 10630484 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 10630484 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 10630484 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=100, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=39] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 145 INFO asyncssh:logging.py:92 [conn=100, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=40] Command: get_drops_rate_code_avg 145 INFO asyncssh:logging.py:92 [conn=100, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=40] Channel closed DEBUG agg1:Logger.py:156 3137538
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_hw_drop_l3[3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=100, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=41] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=100, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=42] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:40:40 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=100, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=100, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=44] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=100, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=44] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=100, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=46] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=100, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=46] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=100, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=100, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=48] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=100, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=49] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=100, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=50] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=100, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=50] Channel closed DEBUG agg1:Logger.py:156
Failed functional/igmp/test_igmp_snooping.py::test_igmp_snooping_modified_query 205.47
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f1b805adc30>

async def test_igmp_snooping_modified_query(testbed):
"""
Test Name: test_igmp_querier
Test Suite: suite_functional_igmp
Test Overview: Test IGMP snooping with modified querier interval
Test Procedure:
1. Create a bridge and enable IGMP Snooping, enable querrier and change query interval
Enslave all TG ports to bridge interface and config fastleave on 1st rx_port
2. Init interfaces and create 2 multicast Streams
3. Create 3 membership report streams, 1 with invalid checksum
4. Send Traffic from router port and from clients
5. Verify Mdb entries were created for clients and router
6. Verify the multicast traffic is flooded to all bridge ports except last client
7. Create and send leave stream from 1st client
8. Verify MDB entry is deleted
9. Verify no traffic is received on the port that left the group
"""

bridge = 'br0'
querrier_interval = 10
sleep_value = 5
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
dev_name = dent_devices[0].host_name
tg_ports = tgen_dev.links_dict[dev_name][0]
dut_ports = tgen_dev.links_dict[dev_name][1]
mcast_group1 = '227.1.1.1'
mcast_group2 = '239.2.2.2'
mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2]
macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04']

# 1.Create a bridge and enable IGMP Snooping, enable querrier and change query interval
# Config Fastleave on 1st rx_port
await common_bridge_and_igmp_setup(dev_name, bridge, 2, dut_ports, querier_interval=querrier_interval)

out = await BridgeLink.set(
input_data=[{dev_name: [
{'device': dut_ports[1], 'fastleave': 'on'}]}])
err_msg = f'Verify that port entities set to fastleave ON.\n{out}'
assert out[0][dev_name]['rc'] == 0, err_msg

# 2.Init interfaces and create 2 multicast Streams
# 3.Create 3 membership report streams, 1 with invalid checksum
dev_groups = tgen_utils_dev_groups_from_config(
[{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24},
{'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24},
{'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24},
{'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}])

tx_port = dev_groups[tg_ports[0]][0]['name']
rx_ports = [dev_groups[tg_ports[1]][0]['name'],
dev_groups[tg_ports[2]][0]['name'],
dev_groups[tg_ports[3]][0]['name']]

await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups)
streams = {f'mcast_{idx + 1}': {
'type': 'raw',
'protocol': 'ip',
'ip_source': tx_port,
'ip_destination': rx_ports[1],
'srcMac': macs[0],
'dstMac': mcast_ip_to_mac(mcast_group),
'srcIp': '0.0.0.0',
'dstIp': mcast_group,
'frame_rate_type': 'line_rate',
'rate': 40,
} for idx, mcast_group in enumerate([mcast_group1, mcast_group2])}

streams.update({f'member_report{idx + 1}': {
'type': 'raw',
'protocol': 'ip',
'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'],
'ip_destination': dev_groups[tg_ports[0]][0]['name'],
'srcMac': combined[1],
'dstMac': mcast_ip_to_mac(combined[0]),
'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'],
'dstIp': combined[0],
'ipproto': 'igmpv2',
'totalLength': '28',
'igmpType': '22',
'igmpGroupAddr': combined[0],
'rate': 1,
'transmissionControlType': 'fixedPktCount',
'frameCount': 1,
} for idx, combined in enumerate(zip(mcast_group_addr, macs[1:]))
})
streams['member_report3']['igmpChecksum'] = '0'
await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams)

# 4.Send Traffic from router port and from clients
await tgen_utils_start_traffic(tgen_dev)
await asyncio.sleep(querrier_interval + 5)

# 5.Verify Mdb entries were created for clients and router
mdb_entires, router_entires = await get_bridge_mdb(dev_name)
verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1])
> assert len(router_entires), f'No MDB router entries were added to bridge MDB table {router_entires}'
E AssertionError: No MDB router entries were added to bridge MDB table {}
E assert 0
E + where 0 = len({})

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:589: AssertionError
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_modified_query">Starting testcase:test_igmp_snooping_modified_query from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-6127' coro=<test_igmp_snooping_modified_query() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:513> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=107, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=108] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=108] Local address: 172.17.0.3, port 45374 INFO asyncssh:logging.py:92 [conn=108] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=108] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=108] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=108, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:25:25 PM UTC INFO asyncssh:logging.py:92 [conn=108, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=108, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=108, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=108, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=108, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=108, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=108, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge mcast_querier 1 mcast_querier_interval 1000 INFO asyncssh:logging.py:92 [conn=108, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=8] Command: ip link set dev br0 type bridge mcast_querier 1 mcast_querier_interval 1000 INFO asyncssh:logging.py:92 [conn=108, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=108, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=10] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=108, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp2 fastleave on INFO asyncssh:logging.py:92 [conn=108, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=12] Command: bridge link set dev swp2 fastleave on INFO asyncssh:logging.py:92 [conn=108, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=108, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=108, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=14] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=108, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":108,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 250.84"},{"index":108,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 250.84"},{"index":108,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 222.87"},{"index":108,"dev":"br0","port":"br0","grp":"ff02::1:ffa3:6e2e","state":"temp","flags":[],"vid":1,"timer":" 219.29"}],"router":{}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_modified_query from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=108, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=108, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=16] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:28:50 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=108, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=108, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=108, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":108,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=108, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=108, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=108, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=20] Channel closed DEBUG agg1:Logger.py:156
Failed functional/lacp/test_lacp_no_traffic.py::test_lacp_unsupported_modes 0.92
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f1b805adc30>

async def test_lacp_unsupported_modes(testbed):
"""
Test Name: LACP unsupported modes
Test Suite: suite_functional_lacp
Test Overview: Test lacp unsupported modes state
Test Procedure:
1. Create bond devices with unsupported modes : 'balance-rr', 'broadcast', 'balance-tlb', 'balance-alb'
2. Try to set created bond devices to `up` state
3. Verify bond(s) with unsupported modes are in `down` state
"""
dent_devices = await tb_get_all_devices(testbed)
device = dent_devices[0].host_name
unsupported_modes = ['balance-rr',
'broadcast', 'balance-tlb', 'balance-alb']
# 1. Create bond devices with unsupported modes : 'balance-rr', 'broadcast', 'balance-tlb', 'balance-alb'
out = await IpLink.add(input_data=[{device: [
{'device': f'bond_{unsupported_modes.index(mode)}',
'type': 'bond',
'mode': mode} for mode in unsupported_modes]}])
assert out[0][device]['rc'] == 0, 'Fail to create bond(s)'
# 2. Try to set created bond devices to `up` state

out = await IpLink.set(input_data=[{device: [
{'device': f'bond_{unsupported_modes.index(mode)}',
'operstate': 'up'} for mode in unsupported_modes]}])
assert out[0][device]['rc'] == 0, 'Fail to set bond(s) to up state'

# 3. Verify bond(s) with unsupported modes are in `down` state
for mode in unsupported_modes:
out = await IpLink.show(input_data=[{device: [{'device': f'bond_{unsupported_modes.index(mode)}',
'cmd_options': '-j'}]}], parse_output=True)
err_msg = f'Bond bond_{unsupported_modes.index(mode)} with unsupported mode {mode} is in `UP` state'
> assert out[0][device]['parsed_output'][0]['operstate'] == 'DOWN', err_msg
E AssertionError: Bond bond_0 with unsupported mode balance-rr is in `UP` state
E assert 'UNKNOWN' == 'DOWN'
E - DOWN
E + UNKNOWN

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py:52: AssertionError
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_unsupported_modes">Starting testcase:test_lacp_unsupported_modes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-8655' coro=<test_lacp_unsupported_modes() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py:30> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO asyncssh:logging.py:92 [conn=155, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=156] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=156] Local address: 172.17.0.3, port 36180 INFO asyncssh:logging.py:92 [conn=156] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=156] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=156] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:30:39 AM UTC INFO asyncssh:logging.py:92 [conn=156, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_0 type bond mode balance-rr && ip link add bond_1 type bond mode broadcast && ip link add bond_2 type bond mode balance-tlb && ip link add bond_3 type bond mode balance-alb INFO asyncssh:logging.py:92 [conn=156, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=2] Command: ip link add bond_0 type bond mode balance-rr && ip link add bond_1 type bond mode broadcast && ip link add bond_2 type bond mode balance-tlb && ip link add bond_3 type bond mode balance-alb INFO asyncssh:logging.py:92 [conn=156, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_0 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=156, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=4] Command: ip link set dev bond_0 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=156, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip -j link show bond_0 INFO asyncssh:logging.py:92 [conn=156, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=6] Command: ip -j link show bond_0 INFO asyncssh:logging.py:92 [conn=156, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=6] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":124,"ifname":"bond_0","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"06:6c:6b:5b:4f:0c","broadcast":"ff:ff:ff:ff:ff:ff"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_unsupported_modes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=156, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:30:39 AM UTC INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=156, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=156, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=10] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=156, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":124,"ifname":"bond_0","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"06:6c:6b:5b:4f:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"balance-rr","miimon":0,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":125,"ifname":"bond_1","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:38:ca:a1:e7:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"broadcast","miimon":0,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":126,"ifname":"bond_2","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:d4:48:da:b2:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"balance-tlb","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":127,"ifname":"bond_3","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"92:cc:5a:b2:76:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"balance-alb","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=156, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_0 INFO asyncssh:logging.py:92 [conn=156, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=12] Command: ip link delete bond_0 INFO asyncssh:logging.py:92 [conn=156, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=156, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=14] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=156, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=156, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=16] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=156, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=156, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=18] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=156, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=156, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:30:40 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Failed functional/lacp/test_lacp_routing_over_vrf.py::test_lacp_routing_over_lag_vrf 1.28
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f1b805adc30>

async def test_lacp_routing_over_lag_vrf(testbed):
"""
Test Name: LACP routing
Test Suite: suite_functional_lacp
Test Overview: Test routing over vrf's
Test Procedure:
1. Create 3 bonds and 2 vrf tables
2. Enslave
DUT port <==> tgen port 1 to bond 1
DUT port <==> tgen port 2 to bond 2
DUT port <==> tgen port 3 to bond 3
DUT port <==> tgen port 4 to bond 3
3. Set link up on all participant ports
4. Configure ip addresses in each LAG and configure route 10.1.1.0/24 via 2 vrf's
5. Setup one stream with destination IP 10.1.1.1
6. Transmit traffic
7. Verify traffic received on active bond2 port in vrf0 and not received on vrf1
"""
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
device = dent_devices[0]
dent = device.host_name
tg_ports = tgen_dev.links_dict[dent][0]
ports = tgen_dev.links_dict[dent][1]
bonds = [f'bond_{idx}' for idx in range(1, 4)]
tgen_lag_1 = ('LAG_0', [tg_ports[0]])
tgen_lag_2 = ('LAG_1', [tg_ports[1]])
tgen_lag_3 = ('LAG_2', tg_ports[2:])
vrf_1 = 'vrf0'
vrf_2 = 'vrf1'
rate = 10000
vrfs = {
vrf_1: 10,
vrf_2: 20
}

# 1. Create 3 bonds
out = await IpLink.add(input_data=[{dent: [{'device': bond, 'type': 'bond', 'mode': '802.3ad'} for bond in bonds]}])
assert out[0][dent]['rc'] == 0, 'Failed to add bond'

out = await IpLink.set(input_data=[{dent: [{'device': bond, 'operstate': 'up'} for bond in bonds]}])
assert out[0][dent]['rc'] == 0, 'Failed setting bond to state up'

# Create 2 VRF tables
out = await IpLink.add(input_data=[{dent: [{'dev': vrf, 'type': 'vrf', 'table': id} for vrf, id in vrfs.items()]}])
> assert out[0][dent]['rc'] == 0, 'Failed to add vrf'
E AssertionError: Failed to add vrf
E assert 2 == 0

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vrf.py:75: AssertionError
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9070' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_routing_over_lag_vrf">Starting testcase:test_lacp_routing_over_lag_vrf from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vrf.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO asyncssh:logging.py:92 [conn=161, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=162] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=162] Local address: 172.17.0.3, port 43382 INFO asyncssh:logging.py:92 [conn=162] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=162] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=162] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:39:48 AM UTC INFO asyncssh:logging.py:92 [conn=162, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=162, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=2] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=162, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=162, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=3] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=4] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:39:48 AM UTC INFO asyncssh:logging.py:92 [conn=162, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip -j route show table all INFO asyncssh:logging.py:92 [conn=162, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=6] Command: ip -j route show table all INFO asyncssh:logging.py:92 [conn=162, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=6] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"type":"local","dst":"10.36.118.44","dev":"ma1","table":"local","protocol":"kernel","scope":"host","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"type":"broadcast","dst":"10.36.118.255","dev":"ma1","table":"local","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.0/8","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"broadcast","dst":"127.255.255.255","dev":"lo","table":"local","protocol":"kernel","scope":"link","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"::1","dev":"lo","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::36ef:b6ff:feec:3804","dev":"ma1","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"ma1","table":"local","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=162, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:39:48 AM UTC INFO asyncssh:logging.py:92 [conn=162, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=9] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=162, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=10] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=162, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=10] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=162, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=162, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=12] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=162, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=162, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:39:48 AM UTC INFO asyncssh:logging.py:92 [conn=162, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=162, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=16] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=162, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=162, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=162, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=18] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=162, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=162, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link add type vrf table 10 && ip link add type vrf table 20 INFO asyncssh:logging.py:92 [conn=162, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=20] Command: ip link add type vrf table 10 && ip link add type vrf table 20 INFO asyncssh:logging.py:92 [conn=162, chan=20] Received exit status 2 INFO asyncssh:logging.py:92 [conn=162, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=20] Channel closed DEBUG agg1:Logger.py:156 Error: Unknown device type.
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_routing_over_lag_vrf from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vrf.py INFO asyncssh:logging.py:92 [conn=162, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=21] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=162, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=22] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=162, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=22] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:147 Deleting tables INFO asyncssh:logging.py:92 [conn=162, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j route show table all INFO asyncssh:logging.py:92 [conn=162, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=24] Command: ip -j route show table all INFO asyncssh:logging.py:92 [conn=162, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"type":"local","dst":"10.36.118.44","dev":"ma1","table":"local","protocol":"kernel","scope":"host","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"type":"broadcast","dst":"10.36.118.255","dev":"ma1","table":"local","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.0/8","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"broadcast","dst":"127.255.255.255","dev":"lo","table":"local","protocol":"kernel","scope":"link","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"::1","dev":"lo","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::36ef:b6ff:feec:3804","dev":"ma1","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"ma1","table":"local","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"}] INFO DENT:Logger.py:147 Deleting routes INFO asyncssh:logging.py:92 [conn=162, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=162, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=26] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=162, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=162, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=28] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:39:48 AM UTC INFO DENT:Logger.py:147 Deleting VRFs INFO asyncssh:logging.py:92 [conn=162, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type vrf INFO asyncssh:logging.py:92 [conn=162, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=30] Command: ip -j link show type vrf INFO asyncssh:logging.py:92 [conn=162, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{}] INFO asyncssh:logging.py:92 [conn=162, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=32] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:39:48 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=162, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=162, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=162, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=34] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=162, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=35] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=36] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:39:48 AM UTC INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=162, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=162, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=38] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=162, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":202,"ifname":"bond_1","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:2f:e0:93:25:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":203,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:74:b1:2a:24:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":204,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"1a:70:66:b9:4e:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=162, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=162, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=40] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=162, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=162, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=162, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=42] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=162, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=162, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=162, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=44] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=162, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=44] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=162, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=45] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=46] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:39:49 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Failed functional/lacp/test_lacp_routing_over_vrf_and_vlan_device.py::test_lacp_routing_over_lag_vrf_vlan_device 1.48
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f1b805adc30>

async def test_lacp_routing_over_lag_vrf_vlan_device(testbed):
"""
Test Name: LACP routing
Test Suite: suite_functional_lacp
Test Overview: Test routing over vrf's
Test Procedure:
1. Create 3 bonds and 2 vrf tables
2. Enslave
DUT port <==> tgen port 1 to bond 1
DUT port <==> tgen port 2 to bond 2
DUT port <==> tgen port 3 to bond 3
DUT port <==> tgen port 4 to bond 3
3. Set link up on all participant ports
4. Configure ip addresses in each LAG and configure route 10.1.1.0/24 via 2 vrf's
5. Setup one stream with destination IP 10.1.1.1
6. Transmit traffic
7. Verify traffic received on active bond2 port in vrf0 and not received on vrf1
"""
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
device = dent_devices[0]
dent = device.host_name
tg_ports = tgen_dev.links_dict[dent][0]
ports = tgen_dev.links_dict[dent][1]
bonds = [f'bond_{idx}' for idx in range(1, 4)]
tgen_lag_1 = ('LAG_0', [tg_ports[0]])
tgen_lag_2 = ('LAG_1', [tg_ports[1]])
tgen_lag_3 = ('LAG_2', tg_ports[2:])
vrf_1 = 'vrf0'
vrf_2 = 'vrf1'
vrfs = {
vrf_1: 10,
vrf_2: 20
}
vid = 10
bridge = 'bridge_0'
vlan_device = f'{bridge}.{vid}'
rate = 10000

# 1. Create 3 bonds and a bridge
out = await IpLink.add(input_data=[{dent: [{
'device': bridge,
'type': 'bridge',
'vlan_filtering': 1,
'vlan_default_pvid': 10,
}]}])
assert out[0][dent]['rc'] == 0, 'Failed to add bridge'

out = await IpLink.set(input_data=[{dent: [{'device': bridge, 'operstate': 'up'}]}])
assert out[0][dent]['rc'] == 0, 'Failed setting bridge to state up'

# Bridge to vlan id
out = await BridgeVlan.add(input_data=[{dent: [{'device': bridge, 'vid': vid, 'self': True}]}])
assert out[0][dent]['rc'] == 0, 'Failed to add vlan on device'

####
out = await IpLink.add(input_data=[{dent: [{'device': bond, 'type': 'bond', 'mode': '802.3ad'} for bond in bonds]}])
assert out[0][dent]['rc'] == 0, 'Failed to add bond'

out = await IpLink.set(input_data=[{dent: [{'device': bond, 'operstate': 'up'} for bond in bonds]}])
assert out[0][dent]['rc'] == 0, 'Failed setting bond to state up'

# Create 2 VRF tables
out = await IpLink.add(input_data=[{dent: [{'dev': vrf, 'type': 'vrf', 'table': id} for vrf, id in vrfs.items()]}])
> assert out[0][dent]['rc'] == 0, 'Failed to add vrf'
E AssertionError: Failed to add vrf
E assert 2 == 0

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vrf_and_vlan_device.py:95: AssertionError
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9136' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_routing_over_lag_vrf_vlan_device">Starting testcase:test_lacp_routing_over_lag_vrf_vlan_device from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vrf_and_vlan_device.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO asyncssh:logging.py:92 [conn=162, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=163] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=163] Local address: 172.17.0.3, port 43388 INFO asyncssh:logging.py:92 [conn=163] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=163] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=163] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:39:49 AM UTC INFO asyncssh:logging.py:92 [conn=163, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j route show table all INFO asyncssh:logging.py:92 [conn=163, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=2] Command: ip -j route show table all INFO asyncssh:logging.py:92 [conn=163, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"type":"local","dst":"10.36.118.44","dev":"ma1","table":"local","protocol":"kernel","scope":"host","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"type":"broadcast","dst":"10.36.118.255","dev":"ma1","table":"local","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.0/8","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"broadcast","dst":"127.255.255.255","dev":"lo","table":"local","protocol":"kernel","scope":"link","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"::1","dev":"lo","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::36ef:b6ff:feec:3804","dev":"ma1","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"ma1","table":"local","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=163, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=3] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=4] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:39:49 AM UTC INFO asyncssh:logging.py:92 [conn=163, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=163, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=6] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=163, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=6] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=163, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:39:49 AM UTC INFO asyncssh:logging.py:92 [conn=163, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=9] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=163, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=10] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=163, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=10] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=163, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=163, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=12] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=163, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=163, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:39:49 AM UTC INFO asyncssh:logging.py:92 [conn=163, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link add bridge_0 type bridge vlan_filtering 1 vlan_default_pvid 10 INFO asyncssh:logging.py:92 [conn=163, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=16] Command: ip link add bridge_0 type bridge vlan_filtering 1 vlan_default_pvid 10 INFO asyncssh:logging.py:92 [conn=163, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge_0 up INFO asyncssh:logging.py:92 [conn=163, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=18] Command: ip link set dev bridge_0 up INFO asyncssh:logging.py:92 [conn=163, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev bridge_0 vid 10 self INFO asyncssh:logging.py:92 [conn=163, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=20] Command: bridge vlan add dev bridge_0 vid 10 self INFO asyncssh:logging.py:92 [conn=163, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=163, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=22] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=163, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=163, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=24] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=163, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link add type vrf table 10 && ip link add type vrf table 20 INFO asyncssh:logging.py:92 [conn=163, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=26] Command: ip link add type vrf table 10 && ip link add type vrf table 20 INFO asyncssh:logging.py:92 [conn=163, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=163, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Unknown device type.
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_routing_over_lag_vrf_vlan_device from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vrf_and_vlan_device.py INFO asyncssh:logging.py:92 [conn=163, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=27] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=163, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=163, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=28] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:147 Deleting routes INFO asyncssh:logging.py:92 [conn=163, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=163, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=30] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=163, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=163, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=32] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:39:49 AM UTC INFO DENT:Logger.py:147 Deleting VRFs INFO asyncssh:logging.py:92 [conn=163, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type vrf INFO asyncssh:logging.py:92 [conn=163, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=34] Command: ip -j link show type vrf INFO asyncssh:logging.py:92 [conn=163, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{}] INFO asyncssh:logging.py:92 [conn=163, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=35] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=36] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:39:50 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=163, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=163, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=163, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":205,"ifname":"bridge_0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"92:9f:31:46:83:4c","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=163, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge_0 INFO asyncssh:logging.py:92 [conn=163, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=40] Command: ip link delete bridge_0 INFO asyncssh:logging.py:92 [conn=163, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=163, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=41] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=42] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:39:50 AM UTC INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=163, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=163, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=44] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=163, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=44] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":206,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ae:6e:fb:5f:57:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":207,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"da:3d:36:bc:fd:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":208,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:6f:1b:5f:8f:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=163, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=163, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=46] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=163, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=46] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=163, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=48] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=163, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=49] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=163, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=50] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=163, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=163, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=51] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=52] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:39:50 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Deleting tables INFO asyncssh:logging.py:92 [conn=163, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=53] Channel closed DEBUG agg1:Logger.py:156 ip -j route show table all INFO asyncssh:logging.py:92 [conn=163, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=54] Command: ip -j route show table all INFO asyncssh:logging.py:92 [conn=163, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=54] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"type":"local","dst":"10.36.118.44","dev":"ma1","table":"local","protocol":"kernel","scope":"host","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"type":"broadcast","dst":"10.36.118.255","dev":"ma1","table":"local","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.0/8","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"broadcast","dst":"127.255.255.255","dev":"lo","table":"local","protocol":"kernel","scope":"link","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"::1","dev":"lo","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::36ef:b6ff:feec:3804","dev":"ma1","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"ma1","table":"local","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"}]
Failed functional/lldp/test_lldp_transmit.py::test_lldp_tx[port_down] 64.44
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f1b805adc30>
scenario = 'port_down'

@pytest.mark.parametrize('scenario', ['disabled', 'port_down', 'interval'])
async def test_lldp_tx(testbed, scenario):
"""
Test Name: test_lldp_tx
Test Suite: suite_functional_lldp
Test Overview: Test Lldp transmitted with different status scenarios
Test Procedure:
1. Init interfaces and set first DUT port up
2. Set first DUT port down in case of tx_port_down
3. Configure lldp status on first DUT port disabled/tx-only depending from scenario
4. Configure lldp tx-interval to 2 sec
5. Collect lldp units tx stats from first DUT port and sleep 6 sec
6. Verify that lldp pkts weren't transmitted from DUT first port in case of scenarios: port_down, disabled
port_down: Set first DUT port up, sleep interval time and verify that lldp pkt were sent from port
interval: Verify that lldp pkts were transmitted from port
"""

tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 2)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
dev_name = dent_devices[0].host_name
tg_ports = tgen_dev.links_dict[dev_name][0]
dut_ports = tgen_dev.links_dict[dev_name][1]
lldp_interval = 2
wait_time = 3

# 1.Init interfaces and set first DUT port up
out = await IpLink.set(
input_data=[{dev_name: [
{'device': dut_ports[0], 'operstate': 'up'}]}])
assert not out[0][dev_name]['rc'], f"Verify {dut_ports[0]} set to 'UP' state.\n{out}"

dev_groups = tgen_utils_dev_groups_from_config(
[{'ixp': tg_ports[0], 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24},
{'ixp': tg_ports[1], 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24}]
)
await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups)

status = 'disabled' if scenario == 'disabled' else 'tx-only'
# 2.Set first DUT port down in case of tx_port_down
if scenario == 'port_down':
out = await IpLink.set(
input_data=[{dev_name: [
{'device': dut_ports[0], 'operstate': 'down'}]}])
assert not out[0][dev_name]['rc'], f"Verify {dut_ports[0]} set to 'DOWN' state.\n{out}"

# 3.Configure lldp status on first DUT port disabled/tx-only depending from scenario
# 4.Configure lldp tx-interval to 2 sec
out = await Lldp.configure(
input_data=[{dev_name: [
{'interface': dut_ports[0], 'ports': '', 'lldp': '', 'status': status},
{'lldp': '', 'tx-interval': lldp_interval}]}])
assert not out[0][dev_name]['rc'], \
f'Failed to configure lldp status on port {dut_ports[0]} and tx-interval.\n{out}'

# 5.Collect lldp units tx stats from first DUT port and sleep 6 sec
tx_before = await get_lldp_statistic(dev_name, dut_ports[0])
await asyncio.sleep(lldp_interval * wait_time)

# 6.Verify that lldp pkts weren't transmitted from DUT first port
if scenario in ['disabled', 'port_down']:
tx_after = await get_lldp_statistic(dev_name, dut_ports[0])
assert tx_after == tx_before, f'tx_counter_after {tx_after} == tx_counters_before {tx_before}'

if scenario == 'port_down':
# tx_port_down: Set first DUT port up, sleep interval time and verify that lldp pkt were sent from port
out = await IpLink.set(
input_data=[{dev_name: [
{'device': dut_ports[0], 'operstate': 'up'}]}])
assert not out[0][dev_name]['rc'], f"Verify {dut_ports[0]} set to 'UP' state.\n{out}"

await asyncio.sleep(lldp_interval * wait_time)
tx_after = await get_lldp_statistic(dev_name, dut_ports[0])
> assert tx_after >= tx_before + wait_time, \
f'tx_counter_after {tx_after} >= tx_counters_before {tx_before + wait_time}'
E AssertionError: tx_counter_after 14 >= tx_counters_before 15
E assert 14 >= (12 + 3)

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py:168: AssertionError
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9562' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_tx[port_down]">Starting testcase:test_lldp_tx[port_down] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=173, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=174] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=174] Local address: 172.17.0.3, port 52078 INFO asyncssh:logging.py:92 [conn=174] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=174] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=174] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=174, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:04:20 AM UTC INFO asyncssh:logging.py:92 [conn=174, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=174, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=174, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty-static.service loaded active exited getty on tty2-tty6 if dbus and logind are not available getty@tty1.service loaded active running Getty on tty1 getty@tty2.service loaded active running Getty on tty2 getty@tty3.service loaded active running Getty on tty3 getty@tty4.service loaded active running Getty on tty4 getty@tty5.service loaded active running Getty on tty5 getty@tty6.service loaded active running Getty on tty6 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded activating auto-restart Advanced IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP Authenticator ifupdown-pre.service loaded active exited Helper to synchronize boot up for ifupdown inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited Raise network interfaces ntp.service loaded active running Network Time Service onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited Resets System Activity Data Collector systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-sysusers.service loaded active exited Create System Users systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 44 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=174, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=174, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=174, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=174, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=174, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:04:20 AM UTC INFO asyncssh:logging.py:92 [conn=174, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=174, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=8] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=174, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=174, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down INFO asyncssh:logging.py:92 [conn=174, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=10] Command: ip link set dev swp1 down INFO asyncssh:logging.py:92 [conn=174, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=174, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=11] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=174, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=12] Command: lldpcli configure ports swp1 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=174, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=174, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=13] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=174, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=14] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=174, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=14] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "12" }, "rx": { "rx": "0" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=174, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=15] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=174, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=16] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=174, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=16] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "12" }, "rx": { "rx": "0" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=174, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=174, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=18] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=174, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=174, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=19] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=174, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=20] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=174, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=20] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "14" }, "rx": { "rx": "0" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } }
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_tx[port_down] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=174, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=174, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:05:24 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=174, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=23] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=174, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=24] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=174, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=174, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=25] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=174, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=26] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=174, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=26] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=174, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=27] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=174, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=28] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=174, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=28] Channel closed DEBUG agg1:Logger.py:156
Failed functional/lldp/test_lldp_tx_rx.py::test_lldp_lag 118.30
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f1b805adc30>

@pytest.mark.usefixtures('cleanup_bonds')
async def test_lldp_lag(testbed):
"""
Test Name: test_lldp_lag
Test Suite: suite_functional_lldp
Test Overview: Test lldp transmitted and received with port in lag
Test Procedure:
1. Create lag device and set first DUT port to down
2. Add first port from DUT to lag
3. Set first port DUT and lag device to up state
4. Init interfaces
5. Configure lldp tx-interval 2 sec, bond-slave-src-mac-type real and lldp status rx-and-tx
6. Setup lldp packet for trasmitting to first DUT port and start sending
7. Verify lldp pkt received and mandatory fields are as expected
8. Verify lldp pkt's were transmitted with all fields as expected
"""

tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 2)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
dev_name = dent_devices[0].host_name
dent_dev = dent_devices[0]
tg_ports = tgen_dev.links_dict[dev_name][0]
dut_ports = tgen_dev.links_dict[dev_name][1]
lldp_interval = 2
bond1 = 'bond1'
wait = 5

# 1.Create lag device and set first DUT port to down
out = await IpLink.add(
input_data=[{dev_name: [
{'name': bond1, 'type': 'bond', 'mode': '802.3ad'}]}])
err_msg = f'Verify that {bond1} was successfully added. \n{out}'
assert not out[0][dev_name]['rc'], err_msg

out = await IpLink.set(
input_data=[{dev_name: [
{'device': dut_ports[0], 'operstate': 'down'}]}])
assert not out[0][dev_name]['rc'], f"Verify {dut_ports[0]} set to 'DOWN' state.\n{out}"

# 2.Add first port from DUT to lag
out = await IpLink.set(
input_data=[{dev_name: [
{'device': dut_ports[0], 'master': bond1}]}])
err_msg = f'Verify that {dut_ports[0]} set to master .\n{out}'
assert not out[0][dev_name]['rc'], err_msg

# 3.Set first port DUT and lag device to up state
out = await IpLink.set(
input_data=[{dev_name: [
{'device': dev, 'operstate': 'up'} for dev in [dut_ports[0], bond1]]}])
assert not out[0][dev_name]['rc'], f"Verify {dut_ports[0]} and {bond1} set to 'UP' state.\n{out}"
# 4.Init interfaces
dev_groups = tgen_utils_dev_groups_from_config(
[{'ixp': bond1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'lag_members': [tg_ports[0]]},
{'ixp': tg_ports[1], 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24}]
)
await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups)

# 5.Configure lldp tx-interval 2 sec, bond-slave-src-mac-type real and lldp status rx-and-tx
out = await Lldp.configure(
input_data=[{dev_name: [
{'lldp': '', 'tx-interval': lldp_interval}]}])
assert not out[0][dev_name]['rc'], f'Failed to configure lldp tx-interval {lldp_interval}.\n{out}'

out = await Lldp.configure(
input_data=[{dev_name: [
{'system': 'bond-slave-src-mac-type real'}]}])
assert not out[0][dev_name]['rc'], f'Failed to configure lldp .\n{out}'

tx_before = await get_lldp_statistic(dev_name, dut_ports[0])
out = await Lldp.configure(
input_data=[{dev_name: [
{'interface': dut_ports[0], 'ports': '', 'lldp': '', 'status': 'rx-and-tx'}]}])
assert not out[0][dev_name]['rc'], f'Failed to configure lldp status on port {dut_ports[0]}.\n{out}'

# 6.Setup lldp packet for trasmitting to first DUT port and start sending
chassis = random_mac()
port = 'FastEthernet/19'
ttl = 110
port_subtype = 5
lldp = {
'chassisLen': (len(chassis.replace(':', '')) // 2) + 1,
'chassisSubtype': 4,
'chassisVarLen': len(chassis.replace(':', '')) // 2,
'chassisId': chassis.replace(':', ''),
'portLen': (len(port.encode().hex()) // 2) + 1,
'portSubtype': port_subtype,
'portVarLen': len(port.encode().hex()) // 2,
'portId': port.encode().hex(),
'ttlLen': 2,
'ttlVal': ttl
}
lldp_stream = get_lldp_stream(dev_groups[bond1][0]['name'], dev_groups[tg_ports[1]][0]['name'], lldp)
> await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=lldp_stream)

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py:326:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

device = [Ixia Traffic Generator: 10.36.118.213], config_file_name = None
streams = {'lldp_1': {'chassisId': '02cb64f0f8a1', 'chassisLen': 7, 'chassisSubtype': 4, 'chassisVarLen': 6, ...}}
force_update = True

async def tgen_utils_setup_streams(device, config_file_name, streams, force_update=True):
"""
- if there is a tgen config file then try to load it
- else creates the streams and saves it and download a copy for future use.
- start the protocols and resolve arp.
"""
res = -1
if not force_update and os.path.exists(config_file_name):
device.applog.info(f'Loading Tgen config file {config_file_name}')
out = await TrafficGen.load_config(
input_data=[{device.host_name: [{'config_file_name': config_file_name}]}]
)
res = out[0][device.host_name]['rc']
if res != 0:
for s in streams.keys():
device.applog.info(f'Setting up Tgen traffic for {s}')
out = await TrafficGen.set_traffic(
input_data=[{device.host_name: [{'name': s, 'pkt_data': streams[s]}]}]
)
device.applog.info(out)
assert out[0][device.host_name]['rc'] == 0, f'Setting tgen traffic failed.\n{out}'
device.applog.info(f'Saving Tgen config file {config_file_name}')
out = await TrafficGen.save_config(
input_data=[{device.host_name: [{'config_file_name': config_file_name}]}]
)
device.applog.info('Starting Protocols')
out = await TrafficGen.start_protocols(input_data=[{device.host_name: [{}]}])
device.applog.info(out)
> assert out[0][device.host_name]['rc'] == 0
E AssertionError

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:426: AssertionError
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9785' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_lag">Starting testcase:test_lldp_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=178, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=179] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=179] Local address: 172.17.0.3, port 46564 INFO asyncssh:logging.py:92 [conn=179] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=179] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=179] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=179, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:13:56 AM UTC INFO asyncssh:logging.py:92 [conn=179, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=179, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=179, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty-static.service loaded active exited getty on tty2-tty6 if dbus and logind are not available getty@tty1.service loaded active running Getty on tty1 getty@tty2.service loaded active running Getty on tty2 getty@tty3.service loaded active running Getty on tty3 getty@tty4.service loaded active running Getty on tty4 getty@tty5.service loaded active running Getty on tty5 getty@tty6.service loaded active running Getty on tty6 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded activating auto-restart Advanced IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP Authenticator ifupdown-pre.service loaded active exited Helper to synchronize boot up for ifupdown inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited Raise network interfaces ntp.service loaded active running Network Time Service onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited Resets System Activity Data Collector systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-sysusers.service loaded active exited Create System Users systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 44 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=179, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=179, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=179, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=179, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=179, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:13:56 AM UTC INFO asyncssh:logging.py:92 [conn=179, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add name bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=179, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=8] Command: ip link add name bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=179, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down INFO asyncssh:logging.py:92 [conn=179, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=10] Command: ip link set dev swp1 down INFO asyncssh:logging.py:92 [conn=179, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=179, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=12] Command: ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=179, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev bond1 up INFO asyncssh:logging.py:92 [conn=179, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=14] Command: ip link set dev swp1 up && ip link set dev bond1 up INFO asyncssh:logging.py:92 [conn=179, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=179, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=15] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=179, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=16] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=179, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=17] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure system bond-slave-src-mac-type real INFO asyncssh:logging.py:92 [conn=179, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=18] Command: lldpcli configure system bond-slave-src-mac-type real INFO asyncssh:logging.py:92 [conn=179, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=19] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=179, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=20] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=179, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=20] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "87" }, "rx": { "rx": "6" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "1" } } } } } INFO asyncssh:logging.py:92 [conn=179, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=21] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=179, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=22] Command: lldpcli configure ports swp1 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=179, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' Error in L2/L3 Traffic Apply\n'}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=179, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=179, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:15:54 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' Error in L2/L3 Traffic Apply\n'}}] INFO asyncssh:logging.py:92 [conn=179, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=25] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=179, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=26] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=179, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=27] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=179, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=28] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=179, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=28] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "real", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=179, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=29] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=179, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=30] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=179, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=31] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure system bond-slave-src-mac-type local INFO asyncssh:logging.py:92 [conn=179, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=32] Command: lldpcli configure system bond-slave-src-mac-type local INFO asyncssh:logging.py:92 [conn=179, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=179, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=33] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=179, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=34] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:15:54 AM UTC INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=179, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=179, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=36] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=179, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":214,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=179, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=179, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=38] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=179, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=38] Channel closed DEBUG agg1:Logger.py:156
Failed functional/storm_control/test_storm_control_different_rates.py::test_storm_control_different_rates 267.69
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f1b805adc30>

async def test_storm_control_different_rates(testbed):
"""
Test Name: test_storm_control_different_rates
Test Suite: suite_functional_storm_control
Test Overview: Verify rate is limited according to the changes in Storm Control Rules.
Test Author: Kostiantyn Stavruk
Test Procedure:
1. Set entities swp1, swp2, swp3, swp4 UP state.
2. Init vlan aware bridge entity br0.
3. Set bridge br0 admin state UP.
4. Set ports swp1, swp2, swp3, swp4 master br0.
5. Add swp1 and swp2 to the same vlan. Add swp3 and swp4 to another vlan.
6. Set up the following streams:
Ixia port 1: broadcast, multicast and unknown unicast streams, with random generated size of packet;
Ixia port 2: broadcast stream, with random generated size of packet;
Ixia port 3: multicast stream, with random generated size of packet;
Ixia port 4: unknown unicast stream, with random generated size of packet.
7. Set a storm control rate limit for all types of traffic on all ports.
8. Transmit continues traffic by TG.
9. Verify the RX rate on the RX port is as expected - the rate is limited by storm control.
10. Change storm control rates for all ports.
11. Verify the RX rate on the RX port is as expected - the rate is limited by storm control.
12. Change storm control rates for all ports again.
13. Verify the RX rate on the RX port is as expected - the rate is limited by storm control.
14. Disable storm control for all ports.
15. Verify the RX rate on the RX port is as expected - the rate is not limited by storm control.
"""

bridge = 'br0'
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
dent_dev = dent_devices[0]
device_host_name = dent_dev.host_name
tg_ports = tgen_dev.links_dict[device_host_name][0]
ports = tgen_dev.links_dict[device_host_name][1]
traffic_duration = 15
correlation = 0.33
deviation = 0.10
kbyte_value_stream = [randrange(start, end+1) for start, end in [(1500, 1700), (2800, 3000), (3800, 4000),
(4500, 4700), (1000, 1200), (5100, 5300)]]

out = await IpLink.set(
input_data=[{device_host_name: [
{'device': port, 'operstate': 'up'} for port in ports]}])
assert out[0][device_host_name]['rc'] == 0, f"Verify that entities set to 'UP' state.\n{out}"

out = await IpLink.add(
input_data=[{device_host_name: [
{'device': bridge, 'vlan_filtering': 1, 'vlan_default_pvid': 0, 'type': 'bridge'}]}])
err_msg = f"Verify that bridge created, vlan filtering set to 'ON' and vlan_default_pvid set to '0'.\n{out}"
assert out[0][device_host_name]['rc'] == 0, err_msg

out = await IpLink.set(
input_data=[{device_host_name: [
{'device': bridge, 'operstate': 'up'}]}])
assert out[0][device_host_name]['rc'] == 0, f"Verify that bridge set to 'UP' state.\n{out}"

out = await IpLink.set(
input_data=[{device_host_name: [
{'device': port, 'master': bridge} for port in ports]}])
err_msg = f'Verify that bridge entities enslaved to bridge.\n{out}'
assert out[0][device_host_name]['rc'] == 0, err_msg

out = await BridgeVlan.add(
input_data=[{device_host_name: [
{'device': ports[x], 'vid': f'{1 if x<2 else 2}', 'untagged': True, 'pvid': True}
for x in range(4)]}])
assert out[0][device_host_name]['rc'] == 0, f"Verify that entities added to vid '1' and '2'.\n{out}"

# set a storm control rate limits
await set_rates(kbyte_value_stream, ports, device_host_name)

try:
address_map = (
# swp port, tg port, tg ip, gw, plen
(ports[0], tg_ports[0], '1.1.1.2', '1.1.1.1', 24),
(ports[1], tg_ports[1], '1.1.1.3', '1.1.1.1', 24),
(ports[2], tg_ports[2], '1.1.1.4', '1.1.1.1', 24),
(ports[3], tg_ports[3], '1.1.1.5', '1.1.1.1', 24)
)

dev_groups = tgen_utils_dev_groups_from_config(
{'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen}
for _, port, ip, gw, plen in address_map
)

await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups)

"""
Set up the following streams:
— stream_1 — | — stream_2 — | — stream_3 — | — stream_4 — | — stream_5 — | — stream_6 —
swp1 -> swp4 | swp1 -> swp4 | swp1 -> swp4 | swp2 -> swp4 | swp3 -> swp4 | swp4 -> swp3

— stream_1 — | — stream_2 — | — stream_3 — | — stream_4 — | — stream_5 — | — stream_6 —
swp1 -> swp3 | swp1 -> swp3 | swp1 -> swp3 | swp2 -> swp3 | swp3 -> swp2 | swp4 -> swp2

— stream_1 — | — stream_2 — | — stream_3 — | — stream_4 — | — stream_5 — | — stream_6 —
swp1 -> swp2 | swp1 -> swp2 | swp1 -> swp2 | swp2 -> swp1 | swp3 -> swp1 | swp4 -> swp1
"""

streams = {
f'stream_1_swp1->swp{4-x}': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[3-x]][0]['name'],
'srcMac': f'16:ea:c3:{x+5}d:1e:ec',
'dstMac': 'ff:ff:ff:ff:ff:ff',
'frameSize': randrange(100, 1500),
'frame_rate_type': 'line_rate',
'rate': 5,
'protocol': '0x0800',
'type': 'raw'
} for x in range(3)
}
streams.update({
f'stream_2_swp1->swp{4-x}': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[3-x]][0]['name'],
'srcIp': f'3.6.92.20{x+1}',
'dstIp': f'228.68.176.2{x+11}',
'srcMac': f'36:11:3d:38:9a:{x+5}e',
'dstMac': f'01:00:5E:4{x+4}:b0:d3',
'frameSize': randrange(100, 1500),
'frame_rate_type': 'line_rate',
'rate': 5,
'protocol': '0x0800',
'type': 'raw'
} for x in range(3)
})
streams.update({
f'stream_3_swp1->swp{4-x}': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[3-x]][0]['name'],
'srcMac': f'72:88:c5:ec:f5:0{x+5}',
'dstMac': f'92:ff:e{x+6}:07:88:a2',
'frameSize': randrange(100, 1500),
'frame_rate_type': 'line_rate',
'rate': 5,
'protocol': '0x0800',
'type': 'raw'
} for x in range(3)
})
streams.update({
f'stream_4_swp2->swp{4-x if x < 2 else 1}': {
'ip_source': dev_groups[tg_ports[1]][0]['name'],
'ip_destination': dev_groups[tg_ports[3-x if x < 2 else 0]][0]['name'],
'srcMac': f'84:fc:70:36:2a:7{x+3}',
'dstMac': 'ff:ff:ff:ff:ff:ff',
'frameSize': randrange(100, 1500),
'frame_rate_type': 'line_rate',
'rate': 5,
'protocol': '0x0800',
'type': 'raw'
} for x in range(3)
})
streams.update({
f'stream_5_swp3->swp{4-x if x <= 0 else 3-x}': {
'ip_source': dev_groups[tg_ports[2]][0]['name'],
'ip_destination': dev_groups[tg_ports[3-x if x <= 0 else 2-x]][0]['name'],
'srcMac': f'e4:c7:7f:{x+6}e:60:2b',
'dstMac': f'01:00:5E:19:bd:a{x+5}',
'frameSize': randrange(100, 1500),
'frame_rate_type': 'line_rate',
'rate': 5,
'protocol': '0x9100',
'type': 'raw'
} for x in range(3)
})
streams.update({
f'stream_6_swp4->swp{3-x}': {
'ip_source': dev_groups[tg_ports[3]][0]['name'],
'ip_destination': dev_groups[tg_ports[2-x]][0]['name'],
'srcMac': f'70:c5:30:7c:ef:f{x+5}',
'dstMac': f'00:8{x+5}:4f:1b:80:91',
'frameSize': randrange(100, 1500),
'frame_rate_type': 'line_rate',
'rate': 5,
'protocol': '0x88a8',
'type': 'raw'
} for x in range(3)
})

await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams)
await tgen_utils_start_traffic(tgen_dev)
await asyncio.sleep(traffic_duration)

# verify the rate is limited
> await verify_rates(kbyte_value_stream, tgen_dev, correlation, deviation)

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py:248:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

kbyte_value_stream = [1553, 2831, 3831, 4540, 1163, 5178]
tgen_dev = [Ixia Traffic Generator: 10.36.118.213], correlation = 0.33
deviation = 0.1

async def verify_rates(kbyte_value_stream, tgen_dev, correlation, deviation):
# check the traffic stats
stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Traffic Item Statistics')
collected = {row['Traffic Item']:
{'tx_rate': row['Tx Rate (Bps)'], 'rx_rate': row['Rx Rate (Bps)']} for row in stats.Rows}
rate_value = {
'stream_1_swp1->swp2': kbyte_value_stream[0],
'stream_2_swp1->swp2': kbyte_value_stream[1],
'stream_3_swp1->swp2': kbyte_value_stream[2],
'stream_4_swp2->swp1': kbyte_value_stream[3],
'stream_5_swp3->swp4': kbyte_value_stream[4],
'stream_6_swp4->swp3': kbyte_value_stream[5]
}
for stream, value in rate_value.items():
> assert math.isclose(value*correlation*1000, float(collected[stream]['rx_rate']), rel_tol=deviation), \
f'Failed: the rate is not limited by storm control for {rate_value}.'
E AssertionError: Failed: the rate is not limited by storm control for {'stream_1_swp1->swp2': 1553, 'stream_2_swp1->swp2': 2831, 'stream_3_swp1->swp2': 3831, 'stream_4_swp2->swp1': 4540, 'stream_5_swp3->swp4': 1163, 'stream_6_swp4->swp3': 5178}.
E assert False
E + where False = <built-in function isclose>(((1553 * 0.33) * 1000), 4135179.335, rel_tol=0.1)
E + where <built-in function isclose> = math.isclose
E + and 4135179.335 = float('4135179.335')

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py:57: AssertionError
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_different_rates">Starting testcase:test_storm_control_different_rates from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-15652' coro=<test_storm_control_different_rates() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py:90> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=221, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=222] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=222] Local address: 172.17.0.3, port 55306 INFO asyncssh:logging.py:92 [conn=222] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=222] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=222] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=222, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:01:11 AM UTC INFO asyncssh:logging.py:92 [conn=222, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=222, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=2] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=222, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=222, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=4] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=222, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=222, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=222, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master br0 && ip link set dev swp2 master br0 && ip link set dev swp3 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=222, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=8] Command: ip link set dev swp1 master br0 && ip link set dev swp2 master br0 && ip link set dev swp3 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=222, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 1 pvid untagged && bridge vlan add dev swp2 vid 1 pvid untagged && bridge vlan add dev swp3 vid 2 pvid untagged && bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=222, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=10] Command: bridge vlan add dev swp1 vid 1 pvid untagged && bridge vlan add dev swp2 vid 1 pvid untagged && bridge vlan add dev swp3 vid 2 pvid untagged && bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=222, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=11] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 1553 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=12] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 1553 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=13] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=14] Command: devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=14] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1553}]}]}} INFO asyncssh:logging.py:92 [conn=222, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=15] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 2831 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=16] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 2831 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=17] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=18] Command: devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=18] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":2831}]}]}} INFO asyncssh:logging.py:92 [conn=222, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=19] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 3831 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=20] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 3831 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=21] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=22] Command: devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=22] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3831}]}]}} INFO asyncssh:logging.py:92 [conn=222, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=23] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 4540 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=24] Command: devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 4540 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=25] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=26] Command: devlink -j port param show pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=26] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":4540}]}]}} INFO asyncssh:logging.py:92 [conn=222, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=27] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 1163 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=28] Command: devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 1163 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=29] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=30] Command: devlink -j port param show pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=30] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/3":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1163}]}]}} INFO asyncssh:logging.py:92 [conn=222, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=31] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 5178 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=32] Command: devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 5178 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=33] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=34] Command: devlink -j port param show pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=222, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=34] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/4":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5178}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp2->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp2->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp2->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5_swp3->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5_swp3->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5_swp3->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6_swp4->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6_swp4->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6_swp4->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e2b7280>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp4 Tx 2324097 Rx 0 Frames Delta 2324097 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp3 Tx 2022592 Rx 0 Frames Delta 2022592 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp2 Tx 311298 Rx 2928 Frames Delta 308370 Loss 99.059 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp4 Tx 1439152 Rx 0 Frames Delta 1439152 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp3 Tx 333494 Rx 0 Frames Delta 333494 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp2 Tx 251804 Rx 3998 Frames Delta 247806 Loss 98.412 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp4 Tx 345503 Rx 0 Frames Delta 345503 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp3 Tx 466558 Rx 0 Frames Delta 466558 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp2 Tx 634203 Rx 13197 Frames Delta 621006 Loss 97.919 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp4 Tx 305953 Rx 0 Frames Delta 305953 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp3 Tx 348074 Rx 0 Frames Delta 348074 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp1 Tx 295095 Rx 7282 Frames Delta 287813 Loss 97.532 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp4 Tx 261848 Rx 1659 Frames Delta 260189 Loss 99.366 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp2 Tx 479718 Rx 0 Frames Delta 479718 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp1 Tx 277582 Rx 0 Frames Delta 277582 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp3 Tx 289165 Rx 8259 Frames Delta 280906 Loss 97.144 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp2 Tx 926187 Rx 0 Frames Delta 926187 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp1 Tx 453551 Rx 0 Frames Delta 453551 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=222, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=35] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=222, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=36] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=222, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=36] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1553}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3831}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":2831}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":4540}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1163}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5178}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=222, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=37] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=38] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=39] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=40] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=41] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=42] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=222, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=42] Channel closed DEBUG agg1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_different_rates from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=222, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=43] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=222, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=44] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:05:34 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=222, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=45] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=222, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=46] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:05:39 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=222, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=222, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=48] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=222, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=48] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":263,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=222, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=49] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=222, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=50] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=222, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=50] Channel closed DEBUG agg1:Logger.py:156
Failed functional/storm_control/test_storm_control_interaction_span_rule.py::test_storm_control_interaction_span_rule 202.54
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f1b805adc30>

async def test_storm_control_interaction_span_rule(testbed):
"""
Test Name: test_storm_control_interaction_span_rule
Test Suite: suite_functional_storm_control
Test Overview: Verify rate is not limited by Storm Control due to the mirred rule.
Test Author: Kostiantyn Stavruk
Test Procedure:
1. Init bridge entity br0.
2. Set bridge br0 admin state UP.
3. Set ports swp1, swp2, swp3, swp4 master br0.
4. Set entities swp1, swp2, swp3, swp4 UP state.
5. Set storm control rate limit rule for all streams.
6. Define a SPAN rule with a source port.
7. Set up the following streams:
- broadcast with random generated size of packet;
- multicast with random generated size of packet;
- unknown unicast with random generated size of packet.
8. Transmit continues traffic by TG.
9. Verify the RX rate on the RX port is as expected - the rate is limited according to storm control limits.
Echamine the impact of the SPAN rule.
10. Disable storm control rate limit rule for all streams.
12. Verify the RX rate on the RX port is as expected - the rate is not limited by storm control.
"""

bridge = 'br0'
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
dent_dev = dent_devices[0]
device_host_name = dent_dev.host_name
tg_ports = tgen_dev.links_dict[device_host_name][0]
ports = tgen_dev.links_dict[device_host_name][1]
size_packets = randrange(500, 1000)
traffic_duration = 15
deviation = 0.10
kbyte_value_stream = [randrange(start, end+1) for start, end in [(1500, 1700), (3800, 4000), (5100, 5300)]]

out = await IpLink.add(
input_data=[{device_host_name: [
{'device': bridge, 'vlan_filtering': 1, 'type': 'bridge'}]}])
err_msg = f"Verify that bridge created and vlan filtering set to 'ON'.\n{out}"
assert out[0][device_host_name]['rc'] == 0, err_msg

out = await IpLink.set(
input_data=[{device_host_name: [
{'device': bridge, 'operstate': 'up'}]}])
assert out[0][device_host_name]['rc'] == 0, f"Verify that bridge set to 'UP' state.\n{out}"

out = await IpLink.set(
input_data=[{device_host_name: [
{'device': port, 'master': bridge, 'operstate': 'up'} for port in ports]}])
err_msg = f"Verify that bridge entities set to 'UP' state and links enslaved to bridge.\n{out}"
assert out[0][device_host_name]['rc'] == 0, err_msg

# set a storm control rate limits
await set_rates(kbyte_value_stream, ports, device_host_name)

try:
out = await TcQdisc.add(
input_data=[{device_host_name: [
{'dev': ports[0], 'kind': 'ingress'}]}])
assert out[0][device_host_name]['rc'] == 0, f'Failed to configure ingress qdisc.\n{out}'

rc, out = await dent_dev.run_cmd(f'tc filter add dev {ports[0]} ingress matchall skip_sw action mirred \
egress mirror dev {ports[1]}')
assert rc == 0, 'Failed to configure ingress matchall.'

address_map = (
# swp port, tg port, tg ip, gw, plen
(ports[0], tg_ports[0], '1.1.1.2', '1.1.1.1', 24),
(ports[1], tg_ports[1], '1.1.1.3', '1.1.1.1', 24),
(ports[2], tg_ports[2], '1.1.1.4', '1.1.1.1', 24),
(ports[3], tg_ports[3], '1.1.1.5', '1.1.1.1', 24)
)

dev_groups = tgen_utils_dev_groups_from_config(
{'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen}
for _, port, ip, gw, plen in address_map
)

await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups)

"""
Set up the following streams:
— stream_1 — | — stream_2 — | — stream_3 — |
swp1 -> swp2 | swp1 -> swp3 | swp1 -> swp4 |
"""

streams = {
'stream_1': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[1]][0]['name'],
'srcMac': '10:62:5a:cf:ab:39',
'dstMac': '34:1e:60:35:58:ac',
'frameSize': size_packets,
'frame_rate_type': 'line_rate',
'rate': 33,
'protocol': '0x0800',
'type': 'raw'
},
'stream_2': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[2]][0]['name'],
'srcMac': '98:92:be:4c:c8:53',
'dstMac': '01:00:5E:51:14:af',
'frameSize': size_packets,
'frame_rate_type': 'line_rate',
'rate': 33,
'protocol': '0x0800',
'type': 'raw'
},
'stream_3': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[3]][0]['name'],
'srcMac': '54:84:c3:74:89:37',
'dstMac': 'ff:ff:ff:ff:ff:ff',
'frameSize': size_packets,
'frame_rate_type': 'line_rate',
'rate': 33,
'protocol': '0x0800',
'type': 'raw'
}
}

await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams)
await tgen_utils_start_traffic(tgen_dev)
await asyncio.sleep(traffic_duration)

# check the traffic stats
stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Traffic Item Statistics')
collected = {row['Traffic Item']:
{'tx_rate': row['Tx Rate (Bps)'], 'rx_rate': row['Rx Rate (Bps)']} for row in stats.Rows}
assert math.isclose(float(collected['stream_1']['tx_rate']),
float(collected['stream_1']['rx_rate']), rel_tol=deviation), \
'Failed: the rate is limited by storm control due to mirred rule.'
for x in range(2):
> assert math.isclose(kbyte_value_stream[x+1]*1000,
float(collected[f'stream_{x+2}']['rx_rate']), rel_tol=deviation), \
'Failed: the rate is not limited by storm control.'
E AssertionError: Failed: the rate is not limited by storm control.
E assert False
E + where False = <built-in function isclose>((3998 * 1000), 26903546.51, rel_tol=0.1)
E + where <built-in function isclose> = math.isclose
E + and 26903546.51 = float('26903546.510')

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_span_rule.py:176: AssertionError
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_interaction_span_rule">Starting testcase:test_storm_control_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_span_rule.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-15920' coro=<test_storm_control_interaction_span_rule() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_span_rule.py:65> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=223, chan=193] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=224] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=224] Local address: 172.17.0.3, port 53814 INFO asyncssh:logging.py:92 [conn=224] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=224] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=224] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=224, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:10:00 AM UTC INFO asyncssh:logging.py:92 [conn=224, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=224, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=224, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=224, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=224, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=224, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=224, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=7] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 1529 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=8] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 1529 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=9] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=224, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=10] Command: devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=224, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=10] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1529}]}]}} INFO asyncssh:logging.py:92 [conn=224, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=11] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 3998 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=12] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 3998 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=13] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=224, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=14] Command: devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=224, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=14] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3998}]}]}} INFO asyncssh:logging.py:92 [conn=224, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=15] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 5119 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=16] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 5119 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=17] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=224, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=18] Command: devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=224, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=18] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5119}]}]}} INFO asyncssh:logging.py:92 [conn=224, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=224, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=20] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=224, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress matchall skip_sw action mirred egress mirror dev swp2 INFO asyncssh:logging.py:92 [conn=224, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=22] Command: tc filter add dev swp1 ingress matchall skip_sw action mirred egress mirror dev swp2 INFO asyncssh:logging.py:92 [conn=224, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e175ff0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 3978147 Rx 3964577 Frames Delta 13570 Loss 0.341 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 3978147 Rx 39861 Frames Delta 3938286 Loss 98.998 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 3978146 Rx 51037 Frames Delta 3927109 Loss 98.717 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=224, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=23] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=224, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=24] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=224, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=24] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5119}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1529}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3998}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=224, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=25] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=26] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=27] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=28] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=29] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=30] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=224, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=30] Channel closed DEBUG agg1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_span_rule.py INFO asyncssh:logging.py:92 [conn=224, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=224, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=32] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:13:16 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=224, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=224, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=34] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=224, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=224, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=224, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=36] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=224, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=224, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=38] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=224, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=224, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=56] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=224, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=224, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=58] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=224, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=224, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=60] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=224, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=224, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=62] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=224, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=224, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=64] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=224, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=224, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=66] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=224, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=224, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=68] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=224, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=224, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=70] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=224, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=224, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=72] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=224, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=224, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=74] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=224, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=224, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=76] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=224, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=224, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=78] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=224, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=224, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=80] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=224, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=224, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=82] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=224, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=224, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=84] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=224, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=224, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=86] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=224, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=224, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=88] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=224, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=224, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=90] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=224, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=224, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=92] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=224, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=224, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=94] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=224, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=224, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=96] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=224, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=224, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=98] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=224, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=224, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=100] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=224, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=224, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=102] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=224, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=224, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=104] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=224, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=224, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=106] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=224, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=224, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=108] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=224, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=224, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=110] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=224, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=224, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=112] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=224, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=224, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=114] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=224, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=224, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=116] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=224, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=224, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=118] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=224, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=224, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=120] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=224, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=224, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=122] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=224, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=224, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=124] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=224, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=224, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=126] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=224, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=224, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=128] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=224, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=224, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=130] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=224, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=224, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=132] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=224, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=224, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=134] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=224, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=224, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=136] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=224, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=224, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=138] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=224, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=224, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=140] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=224, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=224, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=142] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=224, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=224, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=144] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=224, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=224, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=146] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=224, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=224, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=148] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=224, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=224, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=150] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=224, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=224, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=152] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=224, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=224, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=154] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=224, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=154] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=224, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=155] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=224, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=156] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=156] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=156] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:13:18 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=224, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=157] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=224, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=158] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=158] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=158] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:13:22 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=224, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=159] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=224, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=160] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=224, chan=160] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=160] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":265,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=224, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=161] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=224, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=162] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=224, chan=162] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=162] Channel closed DEBUG agg1:Logger.py:156
Failed functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py::test_storm_control_rule_set_for_br_and_mc_traffic 204.75
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f1b805adc30>

async def test_storm_control_rule_set_for_br_and_mc_traffic(testbed):
"""
Test Name: test_storm_control_rule_set_for_br_and_mc_traffic
Test Suite: suite_functional_storm_control
Test Overview: Verify Storm Control limits the rate of specific traffic types.
Test Author: Kostiantyn Stavruk
Test Procedure:
1. Init bridge entity br0.
2. Set ports swp1, swp2 master br0.
3. Set entities swp1, swp2 UP state.
4. Set bridge br0 admin state UP.
5. Set up the following streams:
- broadcast stream with random generated size of packet, on TX port;
- multicast stream with random generated size of packet, on TX port;
- unknown unicast stream with random generated size of packet, on TX port.
6. Set storm control rate limit of broadcast traffic on TX port.
7. Transmit continues traffic by TG.
8. Verify broadcast traffic is limited on RX port. Verify multicast and unknown unicast are not limited.
9. Disable storm control rate limit for broadcast traffic.
10. Set storm control rate limit of multicast traffic on TX port.
11. Verify multicast traffic is limited on RX port. Verify broadcast and unknown unicast are not limited.
"""

bridge = 'br0'
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
dent_dev = dent_devices[0]
device_host_name = dent_dev.host_name
tg_ports = tgen_dev.links_dict[device_host_name][0]
ports = tgen_dev.links_dict[device_host_name][1]
kbyte_value_bc = 15689
kbyte_value_mc = 27713
traffic_duration = 15
deviation = 0.10

out = await IpLink.add(
input_data=[{device_host_name: [
{'device': bridge, 'vlan_filtering': 1, 'type': 'bridge'}]}])
err_msg = f"Verify that bridge created and vlan filtering set to 'ON'.\n{out}"
assert out[0][device_host_name]['rc'] == 0, err_msg

out = await IpLink.set(
input_data=[{device_host_name: [
{'device': bridge, 'operstate': 'up'}]}])
assert out[0][device_host_name]['rc'] == 0, f"Verify that bridge set to 'UP' state.\n{out}"

out = await IpLink.set(
input_data=[{device_host_name: [
{'device': port, 'master': bridge, 'operstate': 'up'} for port in ports]}])
err_msg = f"Verify that bridge entities set to 'UP' state and links enslaved to bridge.\n{out}"
assert out[0][device_host_name]['rc'] == 0, err_msg

await devlink_rate_value(dev=f'pci/0000:01:00.0/{ports[0].replace("swp","")}',
name='bc_kbyte_per_sec_rate', value=kbyte_value_bc,
cmode='runtime', device_host_name=device_host_name, set=True, verify=True)

try:
address_map = (
# swp port, tg port, tg ip, gw, plen
(ports[0], tg_ports[0], '1.1.1.2', '1.1.1.1', 24),
(ports[1], tg_ports[1], '1.1.1.3', '1.1.1.1', 24),
(ports[2], tg_ports[2], '1.1.1.4', '1.1.1.1', 24),
(ports[3], tg_ports[3], '1.1.1.5', '1.1.1.1', 24)
)

dev_groups = tgen_utils_dev_groups_from_config(
{'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen}
for _, port, ip, gw, plen in address_map
)

await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups)

"""
Set up the following streams:
— stream_1 — | — stream_2 — | — stream_3 —
swp1 -> swp4 | swp1 -> swp3 | swp1 -> swp2
"""

streams = {
'stream_1': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[3]][0]['name'],
'srcIp': '147.126.111.32',
'dstIp': '255.255.255.255',
'srcMac': 'b2:ac:8f:b3:fb:2c',
'dstMac': 'ff:ff:ff:ff:ff:ff',
'frameSize': randrange(100, 1500),
'frame_rate_type': 'line_rate',
'rate': 30,
'protocol': '0x0800',
'type': 'raw'
},
'stream_2': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[2]][0]['name'],
'srcIp': '109.51.220.173',
'dstIp': '224.33.57.130',
'srcMac': '76:07:44:b7:38:07',
'dstMac': '01:00:5E:21:39:82',
'frameSize': randrange(100, 1500),
'frame_rate_type': 'line_rate',
'rate': 30,
'protocol': '0x0800',
'type': 'raw'
},
'stream_3': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[1]][0]['name'],
'srcMac': '98:ba:45:33:c7:ee',
'dstMac': 'd2:15:8d:45:e1:1e',
'frameSize': randrange(100, 1500),
'frame_rate_type': 'line_rate',
'rate': 30,
'protocol': '0x0800',
'type': 'raw'
}
}

await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams)
await tgen_utils_start_traffic(tgen_dev)
await asyncio.sleep(traffic_duration)

# check the traffic stats
stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Traffic Item Statistics')
collected = {row['Traffic Item']:
{'tx_rate': row['Tx Rate (Bps)'], 'rx_rate': row['Rx Rate (Bps)']} for row in stats.Rows}
> assert math.isclose(kbyte_value_bc*1000,
float(collected['stream_1']['rx_rate']), rel_tol=deviation), \
f"The rate is not limited by storm control, \
actual rate {kbyte_value_bc*1000} instead of {float(collected['stream_1']['rx_rate'])}."
E AssertionError: The rate is not limited by storm control, actual rate 15689000 instead of 106385423.356.
E assert False
E + where False = <built-in function isclose>((15689 * 1000), 106385423.356, rel_tol=0.1)
E + where <built-in function isclose> = math.isclose
E + and 106385423.356 = float('106385423.356')

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py:154: AssertionError
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_rule_set_for_br_and_mc_traffic">Starting testcase:test_storm_control_rule_set_for_br_and_mc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-16287' coro=<test_storm_control_rule_set_for_br_and_mc_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=226, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=227] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=227] Local address: 172.17.0.3, port 36704 INFO asyncssh:logging.py:92 [conn=227] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=227] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=227] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=227, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:26:38 AM UTC INFO asyncssh:logging.py:92 [conn=227, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=227, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=227, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=227, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=227, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=227, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=227, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=7] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 15689 cmode runtime INFO asyncssh:logging.py:92 [conn=227, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=8] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 15689 cmode runtime INFO asyncssh:logging.py:92 [conn=227, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=9] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=227, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=10] Command: devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=227, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=10] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":15689}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e2b5480>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 1531227 Rx 65036 Frames Delta 1466191 Loss 95.753 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 2156096 Rx 2156095 Frames Delta 1 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 8616097 Rx 8616091 Frames Delta 6 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=227, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=11] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=227, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=12] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=227, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=12] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":15689}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=227, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=13] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=227, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=14] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=227, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=15] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=227, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=16] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=227, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=17] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=227, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=18] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=227, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=18] Channel closed DEBUG agg1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_rule_set_for_br_and_mc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=227, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=227, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:29:58 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=227, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=227, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:30:02 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=227, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=227, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=227, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":269,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=227, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=227, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=227, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=26] Channel closed DEBUG agg1:Logger.py:156
Failed functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py::test_storm_control_rule_set_for_br_and_unk_uc_traffic 201.89
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f1b805adc30>

async def test_storm_control_rule_set_for_br_and_unk_uc_traffic(testbed):
"""
Test Name: test_storm_control_rule_set_for_br_and_unk_uc_traffic
Test Suite: suite_functional_storm_control
Test Overview: Verify Storm Control limits the rate of specific traffic types.
Test Author: Kostiantyn Stavruk
Test Procedure:
1. Init bridge entity br0.
2. Set ports swp1, swp2 master br0.
3. Set entities swp1, swp2 UP state.
4. Set bridge br0 admin state UP.
5. Set up the following streams:
- broadcast stream with random generated size of packet, on TX port;
- multicast stream with random generated size of packet, on TX port;
- unknown unicast stream with random generated size of packet, on TX port.
6. Set storm control rate limit of broadcast traffic on TX port.
7. Transmit continues traffic by TG.
8. Verify broadcast traffic is limited on RX port. Verify multicast and unknown unicast are not limited.
9. Disable storm control rate limit for broadcast traffic.
10. Set storm control rate limit of unknown unicast traffic on TX port.
11. Verify unknown unicast traffic is limited on RX port. Verify broadcast and multicast are not limited.
"""

bridge = 'br0'
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
dent_dev = dent_devices[0]
device_host_name = dent_dev.host_name
tg_ports = tgen_dev.links_dict[device_host_name][0]
ports = tgen_dev.links_dict[device_host_name][1]
kbyte_value_unk_uc = 7229
kbyte_value_bc = 21689
traffic_duration = 15
deviation = 0.10

out = await IpLink.add(
input_data=[{device_host_name: [
{'device': bridge, 'vlan_filtering': 1, 'type': 'bridge'}]}])
err_msg = f"Verify that bridge created and vlan filtering set to 'ON'.\n{out}"
assert out[0][device_host_name]['rc'] == 0, err_msg

out = await IpLink.set(
input_data=[{device_host_name: [
{'device': bridge, 'operstate': 'up'}]}])
assert out[0][device_host_name]['rc'] == 0, f"Verify that bridge set to 'UP' state.\n{out}"

out = await IpLink.set(
input_data=[{device_host_name: [
{'device': port, 'master': bridge, 'operstate': 'up'} for port in ports]}])
err_msg = f"Verify that bridge entities set to 'UP' state and links enslaved to bridge.\n{out}"
assert out[0][device_host_name]['rc'] == 0, err_msg

await devlink_rate_value(dev=f'pci/0000:01:00.0/{ports[0].replace("swp","")}',
name='bc_kbyte_per_sec_rate', value=kbyte_value_bc,
cmode='runtime', device_host_name=device_host_name, set=True, verify=True)

try:
address_map = (
# swp port, tg port, tg ip, gw, plen
(ports[0], tg_ports[0], '1.1.1.2', '1.1.1.1', 24),
(ports[1], tg_ports[1], '1.1.1.3', '1.1.1.1', 24),
(ports[2], tg_ports[2], '1.1.1.4', '1.1.1.1', 24),
(ports[3], tg_ports[3], '1.1.1.5', '1.1.1.1', 24)
)

dev_groups = tgen_utils_dev_groups_from_config(
{'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen}
for _, port, ip, gw, plen in address_map
)

await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups)

"""
Set up the following streams:
— stream_1 — | — stream_2 — | — stream_3 —
swp1 -> swp4 | swp1 -> swp3 | swp1 -> swp2
"""

streams = {
'stream_1': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[3]][0]['name'],
'srcIp': '147.126.111.32',
'dstIp': '255.255.255.255',
'srcMac': 'b2:ac:8f:b3:fb:2c',
'dstMac': 'ff:ff:ff:ff:ff:ff',
'frameSize': randrange(100, 1500),
'frame_rate_type': 'line_rate',
'rate': 30,
'protocol': '0x0800',
'type': 'raw'
},
'stream_2': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[2]][0]['name'],
'srcIp': '109.51.220.173',
'dstIp': '224.33.57.130',
'srcMac': '76:07:44:b7:38:07',
'dstMac': '01:00:5E:21:39:82',
'frameSize': randrange(100, 1500),
'frame_rate_type': 'line_rate',
'rate': 30,
'protocol': '0x0800',
'type': 'raw'
},
'stream_3': {
'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[1]][0]['name'],
'srcMac': '98:ba:45:33:c7:ee',
'dstMac': 'd2:15:8d:45:e1:1e',
'frameSize': randrange(100, 1500),
'frame_rate_type': 'line_rate',
'rate': 30,
'protocol': '0x0800',
'type': 'raw'
}
}

await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams)
await tgen_utils_start_traffic(tgen_dev)
await asyncio.sleep(traffic_duration)

# check the traffic stats
stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Traffic Item Statistics')
collected = {row['Traffic Item']:
{'tx_rate': row['Tx Rate (Bps)'], 'rx_rate': row['Rx Rate (Bps)']} for row in stats.Rows}
> assert math.isclose(kbyte_value_bc*1000,
float(collected['stream_1']['rx_rate']), rel_tol=deviation), \
f"The rate is not limited by storm control, \
actual rate {kbyte_value_bc*1000} instead of {float(collected['stream_1']['rx_rate'])}."
E AssertionError: The rate is not limited by storm control, actual rate 21689000 instead of 147465023.421.
E assert False
E + where False = <built-in function isclose>((21689 * 1000), 147465023.421, rel_tol=0.1)
E + where <built-in function isclose> = math.isclose
E + and 147465023.421 = float('147465023.421')

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py:154: AssertionError
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_rule_set_for_br_and_unk_uc_traffic">Starting testcase:test_storm_control_rule_set_for_br_and_unk_uc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-16323' coro=<test_storm_control_rule_set_for_br_and_unk_uc_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=227, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=228] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=228] Local address: 172.17.0.3, port 56276 INFO asyncssh:logging.py:92 [conn=228] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=228] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=228] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=228, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:30:02 AM UTC INFO asyncssh:logging.py:92 [conn=228, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=228, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=228, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=228, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=228, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=228, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=228, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=7] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 21689 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=8] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 21689 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=9] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=10] Command: devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=10] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":21689}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e1d73a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 2966804 Rx 176477 Frames Delta 2790327 Loss 94.052 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 2537707 Rx 2537705 Frames Delta 2 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 2879321 Rx 2879319 Frames Delta 2 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=228, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=11] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=228, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=12] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=228, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=12] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":21689}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=228, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=13] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=14] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=15] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=16] Command: devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=17] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=18] Command: devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=19] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=20] Command: devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=21] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=22] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=23] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=24] Command: devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=25] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=26] Command: devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=27] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=28] Command: devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=28] Channel closed DEBUG agg1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_rule_set_for_br_and_unk_uc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=228, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=228, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:33:19 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=228, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=228, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=32] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:33:24 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=228, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=228, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=228, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":270,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=228, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=228, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=36] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=228, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=36] Channel closed DEBUG agg1:Logger.py:156
Failed functional/stp/test_stp_config.py::test_stp_bpdu_filter[stp] 77.77
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f1b805adc30>
version = 'stp'

@pytest.mark.parametrize('version', ['stp', 'rstp'])
async def test_stp_bpdu_filter(testbed, version):
"""
Test Name: test_stp_bpdu_filter
Test Suite: suite_functional_stp
Test Overview: Verify BDPU filter basic functionality works as expected
Test Procedure:
1. Add bridge
2. Enslave ports
3. Enable STP/RSTP
4. Setup streams:
- BPDU stream with higher prio than bridge from port#0
- BPDU stream with higher prio than bridge from port#1
- data traffic from port#2 to ports #0 and #1
5. Send traffic
6. Disable/Enable BPDU filter
7. Verify port#1 is ALTERNATE/DESIGNATED
8. Verify traffic is discarded/forwarded through port#1
"""
num_ports = 3
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], num_ports)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
dent_device = dent_devices[0]
dent = dent_device.host_name
tg_ports = tgen_dev.links_dict[dent][0][:num_ports]
ports = tgen_dev.links_dict[dent][1][:num_ports]
bridge = 'br0'
bridge_mac = get_rand_mac('02:55:XX:XX:XX:XX')
root_mac = get_rand_mac('02:10:XX:XX:XX:XX')
rand_mac = get_rand_mac('02:AA:XX:XX:XX:XX')
convergence_time_s = 40 if version == 'stp' else 20
rate_bps = 300_000_000 # 300Mbps
traffic = 'data traffic'
tolerance = 0.05

# 1. Add bridge
out = await IpLink.add(input_data=[{dent: [
{'device': bridge, 'type': 'bridge', 'stp_state': 1}
]}])
assert out[0][dent]['rc'] == 0, 'Failed to add bridge'

# 2. Enslave ports
out = await IpLink.set(input_data=[{dent: [
{'device': port, 'operstate': 'up', 'master': bridge}
for port in ports
] + [
{'device': bridge, 'operstate': 'up', 'address': bridge_mac}
]}])
assert out[0][dent]['rc'] == 0, 'Failed to set port state UP'

# 3. Enable STP/RSTP
out = await Mstpctl.add(input_data=[{dent: [{'bridge': bridge}]}])
assert out[0][dent]['rc'] == 0, 'Failed to add bridge'

out = await Mstpctl.set(input_data=[{dent: [
{'parameter': 'forcevers', 'bridge': bridge, 'version': version}
]}])
assert out[0][dent]['rc'] == 0, 'Failed to enable stp/rstp'

dev_groups = tgen_utils_dev_groups_from_config(
{'ixp': port, 'ip': f'1.1.1.{idx}', 'gw': '1.1.1.5', 'plen': 24}
for idx, port in enumerate(tg_ports, start=1)
)
await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups)

# 4. Setup streams
stp = {
'rootIdentifier': f'8000{root_mac.replace(":", "")}',
'bridgeIdentifier': f'8000{root_mac.replace(":", "")}',
'portIdentifier': '8002',
'messageAge': 1 << 8,
'frameSize': 100,
}
rstp = {
'agreement': 1,
'forwarding': 1,
'learning': 1,
'portRole': PortRole.DESIGNATED.value,
'proposal': 1,
'protocol': '0027',
} if version == 'rstp' else {}
streams = {
# BPDU stream with higher prio than bridge from port#0
f'{ports[0]} {version}': {
'type': 'bpdu',
'version': version,
'ep_source': ports[0],
'ep_destination': ports[0],
'rate': 1, # pps
'allowSelfDestined': True,
'srcMac': root_mac,
**stp,
**rstp,
},
# BPDU stream with higher prio than bridge from port#1
f'{ports[1]} {version}': {
'type': 'bpdu',
'version': version,
'ep_source': ports[1],
'ep_destination': ports[1],
'rate': 1, # pps
'allowSelfDestined': True,
'srcMac': rand_mac,
**stp,
**rstp,
'bridgeIdentifier': f'8000{rand_mac.replace(":", "")}',
},
# data traffic from port#2 to ports #0 and #1
traffic: {
'type': 'ethernet',
'ep_source': ports[2],
'frame_rate_type': 'bps_rate',
'rate': rate_bps,
},
}
> await tgen_utils_setup_streams(tgen_dev, None, streams)

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py:152:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

device = [Ixia Traffic Generator: 10.36.118.213], config_file_name = None
streams = {'data traffic': {'ep_source': 'swp3', 'frame_rate_type': 'bps_rate', 'rate': 300000000, 'type': 'ethernet'}, 'swp1 st...'allowSelfDestined': True, 'bridgeIdentifier': '800002aa316fd6bd', 'ep_destination': 'swp2', 'ep_source': 'swp2', ...}}
force_update = True

async def tgen_utils_setup_streams(device, config_file_name, streams, force_update=True):
"""
- if there is a tgen config file then try to load it
- else creates the streams and saves it and download a copy for future use.
- start the protocols and resolve arp.
"""
res = -1
if not force_update and os.path.exists(config_file_name):
device.applog.info(f'Loading Tgen config file {config_file_name}')
out = await TrafficGen.load_config(
input_data=[{device.host_name: [{'config_file_name': config_file_name}]}]
)
res = out[0][device.host_name]['rc']
if res != 0:
for s in streams.keys():
device.applog.info(f'Setting up Tgen traffic for {s}')
out = await TrafficGen.set_traffic(
input_data=[{device.host_name: [{'name': s, 'pkt_data': streams[s]}]}]
)
device.applog.info(out)
> assert out[0][device.host_name]['rc'] == 0, f'Setting tgen traffic failed.\n{out}'
E AssertionError: Setting tgen traffic failed.
E [{'ixia': {'command': 'set_traffic', 'rc': -1, 'result': "'llc'"}}]

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:418: AssertionError
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-16582' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_bpdu_filter[stp]">Starting testcase:test_stp_bpdu_filter[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=232, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=233] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=233] Local address: 172.17.0.3, port 59720 INFO asyncssh:logging.py:92 [conn=233] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=233] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=233] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=233, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:45:16 AM UTC INFO asyncssh:logging.py:92 [conn=233, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=1] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=233, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=233, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=3] Channel closed DEBUG agg1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=233, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=233, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=4] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=233, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=233, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:45:16 AM UTC INFO asyncssh:logging.py:92 [conn=233, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=233, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=233, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev br0 up address 02:55:f3:2e:08:65 INFO asyncssh:logging.py:92 [conn=233, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=10] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev br0 up address 02:55:f3:2e:08:65 INFO asyncssh:logging.py:92 [conn=233, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=11] Channel closed DEBUG agg1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=233, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=12] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=233, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=13] Channel closed DEBUG agg1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=233, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=14] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=233, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': -1, 'result': "'llc'"}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_bpdu_filter[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py INFO asyncssh:logging.py:92 [conn=233, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=15] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=233, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=16] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=233, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=233, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=233, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:46:33 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=233, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=233, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:46:34 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=233, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=233, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=233, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":277,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"02:55:f3:2e:08:65","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=233, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=233, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=233, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=24] Channel closed DEBUG agg1:Logger.py:156
Failed functional/stp/test_stp_config.py::test_stp_bpdu_filter[rstp] 53.33
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f1b805adc30>
version = 'rstp'

@pytest.mark.parametrize('version', ['stp', 'rstp'])
async def test_stp_bpdu_filter(testbed, version):
"""
Test Name: test_stp_bpdu_filter
Test Suite: suite_functional_stp
Test Overview: Verify BDPU filter basic functionality works as expected
Test Procedure:
1. Add bridge
2. Enslave ports
3. Enable STP/RSTP
4. Setup streams:
- BPDU stream with higher prio than bridge from port#0
- BPDU stream with higher prio than bridge from port#1
- data traffic from port#2 to ports #0 and #1
5. Send traffic
6. Disable/Enable BPDU filter
7. Verify port#1 is ALTERNATE/DESIGNATED
8. Verify traffic is discarded/forwarded through port#1
"""
num_ports = 3
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], num_ports)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
dent_device = dent_devices[0]
dent = dent_device.host_name
tg_ports = tgen_dev.links_dict[dent][0][:num_ports]
ports = tgen_dev.links_dict[dent][1][:num_ports]
bridge = 'br0'
bridge_mac = get_rand_mac('02:55:XX:XX:XX:XX')
root_mac = get_rand_mac('02:10:XX:XX:XX:XX')
rand_mac = get_rand_mac('02:AA:XX:XX:XX:XX')
convergence_time_s = 40 if version == 'stp' else 20
rate_bps = 300_000_000 # 300Mbps
traffic = 'data traffic'
tolerance = 0.05

# 1. Add bridge
out = await IpLink.add(input_data=[{dent: [
{'device': bridge, 'type': 'bridge', 'stp_state': 1}
]}])
assert out[0][dent]['rc'] == 0, 'Failed to add bridge'

# 2. Enslave ports
out = await IpLink.set(input_data=[{dent: [
{'device': port, 'operstate': 'up', 'master': bridge}
for port in ports
] + [
{'device': bridge, 'operstate': 'up', 'address': bridge_mac}
]}])
assert out[0][dent]['rc'] == 0, 'Failed to set port state UP'

# 3. Enable STP/RSTP
out = await Mstpctl.add(input_data=[{dent: [{'bridge': bridge}]}])
assert out[0][dent]['rc'] == 0, 'Failed to add bridge'

out = await Mstpctl.set(input_data=[{dent: [
{'parameter': 'forcevers', 'bridge': bridge, 'version': version}
]}])
assert out[0][dent]['rc'] == 0, 'Failed to enable stp/rstp'

dev_groups = tgen_utils_dev_groups_from_config(
{'ixp': port, 'ip': f'1.1.1.{idx}', 'gw': '1.1.1.5', 'plen': 24}
for idx, port in enumerate(tg_ports, start=1)
)
await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups)

# 4. Setup streams
stp = {
'rootIdentifier': f'8000{root_mac.replace(":", "")}',
'bridgeIdentifier': f'8000{root_mac.replace(":", "")}',
'portIdentifier': '8002',
'messageAge': 1 << 8,
'frameSize': 100,
}
rstp = {
'agreement': 1,
'forwarding': 1,
'learning': 1,
'portRole': PortRole.DESIGNATED.value,
'proposal': 1,
'protocol': '0027',
} if version == 'rstp' else {}
streams = {
# BPDU stream with higher prio than bridge from port#0
f'{ports[0]} {version}': {
'type': 'bpdu',
'version': version,
'ep_source': ports[0],
'ep_destination': ports[0],
'rate': 1, # pps
'allowSelfDestined': True,
'srcMac': root_mac,
**stp,
**rstp,
},
# BPDU stream with higher prio than bridge from port#1
f'{ports[1]} {version}': {
'type': 'bpdu',
'version': version,
'ep_source': ports[1],
'ep_destination': ports[1],
'rate': 1, # pps
'allowSelfDestined': True,
'srcMac': rand_mac,
**stp,
**rstp,
'bridgeIdentifier': f'8000{rand_mac.replace(":", "")}',
},
# data traffic from port#2 to ports #0 and #1
traffic: {
'type': 'ethernet',
'ep_source': ports[2],
'frame_rate_type': 'bps_rate',
'rate': rate_bps,
},
}
> await tgen_utils_setup_streams(tgen_dev, None, streams)

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py:152:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

device = [Ixia Traffic Generator: 10.36.118.213], config_file_name = None
streams = {'data traffic': {'ep_source': 'swp3', 'frame_rate_type': 'bps_rate', 'rate': 300000000, 'type': 'ethernet'}, 'swp1 rs...p': {'agreement': 1, 'allowSelfDestined': True, 'bridgeIdentifier': '800002aa90f78065', 'ep_destination': 'swp2', ...}}
force_update = True

async def tgen_utils_setup_streams(device, config_file_name, streams, force_update=True):
"""
- if there is a tgen config file then try to load it
- else creates the streams and saves it and download a copy for future use.
- start the protocols and resolve arp.
"""
res = -1
if not force_update and os.path.exists(config_file_name):
device.applog.info(f'Loading Tgen config file {config_file_name}')
out = await TrafficGen.load_config(
input_data=[{device.host_name: [{'config_file_name': config_file_name}]}]
)
res = out[0][device.host_name]['rc']
if res != 0:
for s in streams.keys():
device.applog.info(f'Setting up Tgen traffic for {s}')
out = await TrafficGen.set_traffic(
input_data=[{device.host_name: [{'name': s, 'pkt_data': streams[s]}]}]
)
device.applog.info(out)
> assert out[0][device.host_name]['rc'] == 0, f'Setting tgen traffic failed.\n{out}'
E AssertionError: Setting tgen traffic failed.
E [{'ixia': {'command': 'set_traffic', 'rc': -1, 'result': "'llc'"}}]

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:418: AssertionError
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-16621' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_bpdu_filter[rstp]">Starting testcase:test_stp_bpdu_filter[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=233, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=234] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=234] Local address: 172.17.0.3, port 60930 INFO asyncssh:logging.py:92 [conn=234] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=234] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=234] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=234, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:46:34 AM UTC INFO asyncssh:logging.py:92 [conn=234, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=1] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=234, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=234, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=3] Channel closed DEBUG agg1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=234, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=234, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=4] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=234, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=234, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:46:34 AM UTC INFO asyncssh:logging.py:92 [conn=234, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=234, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=234, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev br0 up address 02:55:72:8c:bf:fb INFO asyncssh:logging.py:92 [conn=234, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=10] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev br0 up address 02:55:72:8c:bf:fb INFO asyncssh:logging.py:92 [conn=234, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=11] Channel closed DEBUG agg1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=234, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=12] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=234, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=13] Channel closed DEBUG agg1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=234, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=14] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=234, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': -1, 'result': "'llc'"}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_bpdu_filter[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py INFO asyncssh:logging.py:92 [conn=234, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=15] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=234, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=16] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=234, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=234, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=234, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:47:27 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=234, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=234, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:47:27 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=234, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=234, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=234, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":278,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"02:55:72:8c:bf:fb","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=234, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=234, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=234, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=24] Channel closed DEBUG agg1:Logger.py:156
XFailed functional/ipv4/test_ipv4_icmp.py::test_ipv4_ping_size 132.28
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f1b805adc30>

@pytest.mark.xfail(reason='Device does not support fragmentation')
async def test_ipv4_ping_size(testbed):
"""
Test Name: test_ipv4_ping_size
Test Suite: suite_functional_ipv4
Test Overview: Test IPv4 ping size
Test Procedure:
1. Init interfaces
2. Configure ports up
3. Configure IP addrs
4. Add dynamic arp entries
5. Generate ping with size smaller than mru and larger than mru
and verify fragmentation on the larger ping
"""
# 1. Init interfaces
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
dent_dev = dent_devices[0]
dent = dent_dev.host_name
tg_ports = tgen_dev.links_dict[dent][0]
ports = tgen_dev.links_dict[dent][1]
address_map = (
# swp port, tg port, swp ip, tg ip, plen
(ports[0], tg_ports[0], '1.1.1.1', '1.1.1.2', 24),
(ports[1], tg_ports[1], '2.2.2.1', '2.2.2.2', 24),
(ports[2], tg_ports[2], '3.3.3.1', '3.3.3.2', 24),
(ports[3], tg_ports[3], '4.4.4.1', '4.4.4.2', 24),
)

# 2. Configure ports up
out = await IpLink.set(input_data=[{dent: [
{'device': port, 'operstate': 'up'}
for port, *_ in address_map
]}])
assert out[0][dent]['rc'] == 0, 'Failed to set port state UP'

# 3. Configure IP addrs
out = await IpAddress.add(input_data=[{dent: [
{'dev': port, 'prefix': f'{ip}/{plen}'}
for port, _, ip, _, plen in address_map
]}])
assert out[0][dent]['rc'] == 0, 'Failed to add IP addr to port'

dev_groups = tgen_utils_dev_groups_from_config(
{'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen}
for _, port, gw, ip, plen in address_map
)
await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups)

# 4. Add dynamic arp entries
streams = {
'ipv4': {'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[1]][0]['name']}
}
await tgen_utils_setup_streams(tgen_dev, None, streams) # will send arps to all ports

# 5. Generate ping with size smaller than mru
await asyncio.gather(*(do_ping(dent_dev, port, dst, size=100, timeout=15)
for port, *_, dst, _ in address_map))

# Generate ping with size larger than mru and verify fragmentation
> await asyncio.gather(*(do_ping(dent_dev, port, dst, size=1473, timeout=15)
for port, *_, dst, _ in address_map))

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py:278:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

dev = [DENT aggregation 1: 10.36.118.44], port = 'swp1', dst = '1.1.1.2'
count = 1, interval = 0.1, size = 1473, timeout = 15

async def do_ping(dev, port, dst, count=1, interval=0.1, size=0, timeout=120):
cmd = f'ping -I {port} -c {count} -i {interval} -s {size} -w {timeout} {dst}'
cmd += ' | grep "ping statistics" -A 2' # filter ouptut
rc, out = await dev.run_cmd(cmd)
assert rc == 0, f'Failed to send ping from {port} to {dst}'
> assert ' 0% ' in out, f'Some pings did not reach their destination\n{out}'
E AssertionError: Some pings did not reach their destination
E --- 1.1.1.2 ping statistics ---
E 145 packets transmitted, 0 received, 100% packet loss, time 1008ms
E
E
E assert ' 0% ' in '--- 1.1.1.2 ping statistics ---\n145 packets transmitted, 0 received, 100% packet loss, time 1008ms\n\n'

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py:35: AssertionError
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7068' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_ping_size">Starting testcase:test_ipv4_ping_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=128, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=129] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=129] Local address: 172.17.0.3, port 59976 INFO asyncssh:logging.py:92 [conn=129] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=129] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=129] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=129, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:12:05 AM UTC INFO asyncssh:logging.py:92 [conn=129, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=129, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=129, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=129, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=129, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=129, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=129, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=129, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:12:05 AM UTC INFO asyncssh:logging.py:92 [conn=129, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=129, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=129, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=129, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=129, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=129, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=129, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=14] Received channel close DEBUG agg1:Logger.py:156 ping -I swp1 -c 1 -i 0.1 -s 100 -w 15 1.1.1.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=15] Requesting new SSH session DEBUG agg1:Logger.py:156 ping -I swp2 -c 1 -i 0.1 -s 100 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=14] Channel closed DEBUG agg1:Logger.py:156 ping -I swp3 -c 1 -i 0.1 -s 100 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=17] Requesting new SSH session DEBUG agg1:Logger.py:156 ping -I swp4 -c 1 -i 0.1 -s 100 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=15] Command: ping -I swp1 -c 1 -i 0.1 -s 100 -w 15 1.1.1.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=16] Command: ping -I swp2 -c 1 -i 0.1 -s 100 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=17] Command: ping -I swp3 -c 1 -i 0.1 -s 100 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=18] Command: ping -I swp4 -c 1 -i 0.1 -s 100 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=16] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=17] Received channel close DEBUG agg1:Logger.py:156 --- 2.2.2.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.150/0.150/0.150/0.000 ms INFO asyncssh:logging.py:92 [conn=129, chan=15] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=18] Received channel close DEBUG agg1:Logger.py:156 --- 1.1.1.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.183/0.183/0.183/0.000 ms DEBUG agg1:Logger.py:156 --- 3.3.3.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.210/0.210/0.210/0.000 ms INFO asyncssh:logging.py:92 [conn=129, chan=18] Channel closed DEBUG agg1:Logger.py:156 --- 4.4.4.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.187/0.187/0.187/0.000 ms INFO asyncssh:logging.py:92 [conn=129, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=21] Received channel close DEBUG agg1:Logger.py:156 ping -I swp1 -c 1 -i 0.1 -s 1473 -w 15 1.1.1.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=20] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=21] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=22] Received channel close DEBUG agg1:Logger.py:156 ping -I swp2 -c 1 -i 0.1 -s 1473 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=24] Requesting new SSH session DEBUG agg1:Logger.py:156 ping -I swp3 -c 1 -i 0.1 -s 1473 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=22] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=23] Command: ping -I swp1 -c 1 -i 0.1 -s 1473 -w 15 1.1.1.2 | grep "ping statistics" -A 2 DEBUG agg1:Logger.py:156 ping -I swp4 -c 1 -i 0.1 -s 1473 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=24] Command: ping -I swp2 -c 1 -i 0.1 -s 1473 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=25] Command: ping -I swp3 -c 1 -i 0.1 -s 1473 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=26] Command: ping -I swp4 -c 1 -i 0.1 -s 1473 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=23] Channel closed DEBUG agg1:Logger.py:156 --- 1.1.1.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 1008ms INFO asyncssh:logging.py:92 [conn=129, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=24] Received channel close
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_ping_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py DEBUG agg1:Logger.py:156 --- 3.3.3.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 995ms INFO asyncssh:logging.py:92 [conn=129, chan=24] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=26] Received channel close DEBUG agg1:Logger.py:156 --- 2.2.2.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 1013ms INFO asyncssh:logging.py:92 [conn=129, chan=26] Channel closed DEBUG agg1:Logger.py:156 --- 4.4.4.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 1002ms INFO asyncssh:logging.py:92 [conn=129, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=27] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=129, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=129, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=28] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=129, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=129, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:14:15 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=129, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=129, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=32] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:14:15 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=129, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=129, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=34] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=129, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=129, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=129, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=129, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=129, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=129, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=38] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=129, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=38] Channel closed DEBUG agg1:Logger.py:156
XFailed functional/ipv4/test_ipv4_mtu.py::test_ipv4_fragmentation 140.30
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f1b805adc30>

@pytest.mark.xfail(reason='Device does not support fragmentation')
async def test_ipv4_fragmentation(testbed):
"""
Test Name: test_ipv4_fragmentation
Test Suite: suite_functional_ipv4
Test Overview: Test IPv4 fragmentation
Test Procedure:
1. Init interfaces
2. Configure ports up
3. Configure IP addrs
4. Generate Non-fragment/fragment traffic and verify reception
"""
# 1. Init interfaces
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
dent = dent_devices[0].host_name
tg_ports = tgen_dev.links_dict[dent][0]
ports = tgen_dev.links_dict[dent][1]
traffic_duration = 10
fragmented = 1522
non_fragmented = 1420
address_map = (
# swp port, tg port, swp ip, tg ip, plen
(ports[0], tg_ports[0], '1.1.1.1', '1.1.1.2', 24),
(ports[1], tg_ports[1], '2.2.2.1', '2.2.2.2', 24),
(ports[2], tg_ports[2], '3.3.3.1', '3.3.3.2', 24),
(ports[3], tg_ports[3], '4.4.4.1', '4.4.4.2', 24),
)

# 2. Configure ports up
out = await IpLink.set(input_data=[{dent: [
{'device': port, 'operstate': 'up'}
for port, *_ in address_map
]}])
assert out[0][dent]['rc'] == 0, 'Failed to set port state UP'

# 3. Configure IP addrs
out = await IpAddress.add(input_data=[{dent: [
{'dev': port, 'prefix': f'{ip}/{plen}'}
for port, _, ip, _, plen in address_map
]}])
assert out[0][dent]['rc'] == 0, 'Failed to add IP addr to port'

dev_groups = tgen_utils_dev_groups_from_config(
{'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen}
for _, port, gw, ip, plen in address_map
)
await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups)

streams = {
f'{tg1} <-> {tg2} | frame size {size}': {
'type': 'ipv4',
'ip_source': dev_groups[tg1][0]['name'],
'ip_destination': dev_groups[tg2][0]['name'],
'protocol': 'ip',
'rate': '1000', # pps
'frameSize': size,
'bi_directional': True,
} for tg1, tg2, size in ((tg_ports[0], tg_ports[1], non_fragmented),
(tg_ports[2], tg_ports[3], fragmented))
}

# 4. Generate Non-fragment/fragment traffic and verify reception
await tgen_utils_setup_streams(tgen_dev, None, streams)

await tgen_utils_start_traffic(tgen_dev)
await asyncio.sleep(traffic_duration)
await tgen_utils_stop_traffic(tgen_dev)

# Verify packet discarded/fwd
stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Flow Statistics')
for row in stats.Rows:
loss = tgen_utils_get_loss(row)

if str(non_fragmented) in row['Traffic Item']:
assert loss == 0, f'Expected loss: 0%, actual: {loss}%'
assert row['Tx Frames'] == row['Rx Frames'], \
f"Expected Tx Frames {row['Tx Frames']} to equal Rx Frames {row['Rx Frames']}"
else: # fragmented traffic
> assert int(row['Rx Frames']) == int(row['Tx Frames']) * 2, \
f"Expected Rx Frames {row['Rx Frames']} to equal 2 * Tx Frames {2 * int(row['Tx Frames'])}"
E AssertionError: Expected Rx Frames 0 to equal 2 * Tx Frames 8904
E assert 0 == (4452 * 2)
E + where 0 = int('0')
E + and 4452 = int('4452')

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py:214: AssertionError
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7274' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_fragmentation">Starting testcase:test_ipv4_fragmentation from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=132, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=133] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=133] Local address: 172.17.0.3, port 37604 INFO asyncssh:logging.py:92 [conn=133] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=133] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=133] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=133, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:20:58 AM UTC INFO asyncssh:logging.py:92 [conn=133, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=133, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=133, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=133, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=133, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=133, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=133, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=133, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:20:58 AM UTC INFO asyncssh:logging.py:92 [conn=133, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=133, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=133, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=133, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=133, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=133, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:6 | frame size 1420 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 <-> 10.36.118.199:1:8 | frame size 1522 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_3.3.3.2/24 to 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e3bbdc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 | frame size 1420 SIP-DIP 1.1.1.2-2.2.2.2 Tx 4452 Rx 4452 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 | frame size 1420 SIP-DIP 2.2.2.2-1.1.1.2 Tx 4452 Rx 4452 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:7 <-> 10.36.118.199:1:8 | frame size 1522 SIP-DIP 3.3.3.2-4.4.4.2 Tx 4452 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:7 <-> 10.36.118.199:1:8 | frame size 1522 SIP-DIP 4.4.4.2-3.3.3.2 Tx 4452 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_fragmentation from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py INFO asyncssh:logging.py:92 [conn=133, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=133, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=133, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=133, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=133, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:23:16 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=133, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=133, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:23:16 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=133, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=133, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=18] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=133, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=133, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=133, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=133, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=133, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=133, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=22] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=133, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=22] Channel closed DEBUG agg1:Logger.py:156
Skipped functional/L1/test_l1_autodetect.py::test_l1_autodetect[10-full] 0.44
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py', 68, 'Skipped: Need 2 ports with the same speed of 10 and duplex full')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-16' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[10-full]">Starting testcase:test_l1_autodetect[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=0, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=1] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=1] Local address: 172.17.0.3, port 58308 INFO asyncssh:logging.py:92 [conn=1] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=1] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=1] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:19 PM UTC INFO asyncssh:logging.py:92 [conn=1, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=1, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=1, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=1, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=1, chan=7] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=1, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=6] Channel closed DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=1, chan=9] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=1, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=7] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=1, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=1, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=1, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=1, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=9] Received channel close DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=1, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=1, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=1, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:19 PM UTC INFO asyncssh:logging.py:92 [conn=1, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=1, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=1, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=1, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=1, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=1, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=1, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=1, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=1, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=1, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:19 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=1, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:19 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=1, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=1, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=1, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=24] Channel closed DEBUG agg1:Logger.py:156 []
Skipped functional/L1/test_l1_autodetect.py::test_l1_autodetect[10-half] 0.44
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py', 68, 'Skipped: Need 2 ports with the same speed of 10 and duplex half')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-56' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[10-half]">Starting testcase:test_l1_autodetect[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=1, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=2] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=2] Local address: 172.17.0.3, port 58322 INFO asyncssh:logging.py:92 [conn=2] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=2] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=2] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:20 PM UTC INFO asyncssh:logging.py:92 [conn=2, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=2, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=2, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=2, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=5] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=2, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=2, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=2, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=7] Command: ethtool swp1 DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=2, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=2, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=2, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=2, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=7] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=2, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=9] Received channel close DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=2, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=2, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=2, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:20 PM UTC INFO asyncssh:logging.py:92 [conn=2, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=2, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=2, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=2, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=2, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=2, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=2, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=2, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=2, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=2, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:20 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=2, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:20 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=2, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=2, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=2, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=24] Channel closed DEBUG agg1:Logger.py:156 []
Skipped functional/L1/test_l1_autodetect.py::test_l1_autodetect[100-full] 0.47
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py', 68, 'Skipped: Need 2 ports with the same speed of 100 and duplex full')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-96' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[100-full]">Starting testcase:test_l1_autodetect[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=2, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=3] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=3] Local address: 172.17.0.3, port 58332 INFO asyncssh:logging.py:92 [conn=3] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=3] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=3] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:20 PM UTC INFO asyncssh:logging.py:92 [conn=3, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=3, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=3, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=3, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=3, chan=7] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=3, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=3, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=6] Channel closed DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=3, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=7] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=3, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=3, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=3, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=3, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=9] Received channel close DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=3, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:20 PM UTC INFO asyncssh:logging.py:92 [conn=3, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=3, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=3, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=3, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=3, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=3, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=3, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=3, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=3, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:20 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=3, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:20 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=3, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=3, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=3, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=24] Channel closed DEBUG agg1:Logger.py:156 []
Skipped functional/L1/test_l1_autodetect.py::test_l1_autodetect[100-half] 0.43
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py', 68, 'Skipped: Need 2 ports with the same speed of 100 and duplex half')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-136' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[100-half]">Starting testcase:test_l1_autodetect[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=3, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=4] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=4] Local address: 172.17.0.3, port 58340 INFO asyncssh:logging.py:92 [conn=4] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=4] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=4] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:21 PM UTC INFO asyncssh:logging.py:92 [conn=4, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=4, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=4, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=4, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=5] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=4, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=4, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=4, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=7] Command: ethtool swp1 DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=4, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=4, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=4, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=4, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=7] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=4, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=4, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=4, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:21 PM UTC INFO asyncssh:logging.py:92 [conn=4, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=4, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=4, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=4, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=4, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=4, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=4, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=4, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=4, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=4, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:21 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=4, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:21 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=4, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=4, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=4, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=24] Channel closed DEBUG agg1:Logger.py:156 []
Skipped functional/L1/test_l1_autodetect.py::test_l1_autodetect[1000-full] 0.43
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py', 68, 'Skipped: Need 2 ports with the same speed of 1000 and duplex full')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-176' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[1000-full]">Starting testcase:test_l1_autodetect[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=4, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=5] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=5] Local address: 172.17.0.3, port 58342 INFO asyncssh:logging.py:92 [conn=5] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=5] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=5] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:21 PM UTC INFO asyncssh:logging.py:92 [conn=5, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=5, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=5, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=5, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=5] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=5, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=5, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=5, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=7] Command: ethtool swp1 DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=5, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=5, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=5, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=5, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=7] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=5, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:21 PM UTC INFO asyncssh:logging.py:92 [conn=5, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=5, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=5, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=5, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=5, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=5, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=5, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=5, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=5, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:21 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=5, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:21 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=5, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=5, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=5, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=24] Channel closed DEBUG agg1:Logger.py:156 []
Skipped functional/L1/test_l1_autoneg.py::test_l1_autoneg[10-full] 0.43
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py', 75, 'Skipped: Need 2 ports with the same speed of 10 and duplex full')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-216' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[10-full]">Starting testcase:test_l1_autoneg[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=5, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=6] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=6] Local address: 172.17.0.3, port 42142 INFO asyncssh:logging.py:92 [conn=6] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=6] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=6] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:21 PM UTC INFO asyncssh:logging.py:92 [conn=6, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=6, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=6, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=6, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=6, chan=7] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=6, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=6] Channel closed DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=6, chan=9] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=6, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=7] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=6, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=6, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=6, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=6, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=6, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=6, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:22 PM UTC INFO asyncssh:logging.py:92 [conn=6, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=6, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=6, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=6, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=6, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=6, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=6, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=6, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=6, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=6, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:22 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=6, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:22 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=6, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=6, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=6, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=24] Channel closed DEBUG agg1:Logger.py:156 []
Skipped functional/L1/test_l1_autoneg.py::test_l1_autoneg[10-half] 0.42
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py', 75, 'Skipped: Need 2 ports with the same speed of 10 and duplex half')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-256' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[10-half]">Starting testcase:test_l1_autoneg[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=6, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=7] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=7] Local address: 172.17.0.3, port 42154 INFO asyncssh:logging.py:92 [conn=7] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=7] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=7] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:22 PM UTC INFO asyncssh:logging.py:92 [conn=7, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=7, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=7, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=7, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=5] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=7, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=7, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=7, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=7] Command: ethtool swp1 DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=7, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=7, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=7, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=7, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=8] Received channel close DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=7, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:22 PM UTC INFO asyncssh:logging.py:92 [conn=7, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=7, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=7, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=7, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=7, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=7, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=7, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=7, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=7, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:22 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=7, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:22 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=7, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=7, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=7, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=24] Channel closed DEBUG agg1:Logger.py:156 []
Skipped functional/L1/test_l1_autoneg.py::test_l1_autoneg[100-full] 0.43
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py', 75, 'Skipped: Need 2 ports with the same speed of 100 and duplex full')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-296' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[100-full]">Starting testcase:test_l1_autoneg[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=7, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=8] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=8] Local address: 172.17.0.3, port 42158 INFO asyncssh:logging.py:92 [conn=8] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=8] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=8] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:22 PM UTC INFO asyncssh:logging.py:92 [conn=8, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=8, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=8, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=8, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=5] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=8, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=8, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=8, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=7] Command: ethtool swp1 DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=8, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=8, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=8, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=8, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=7] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=9] Received channel close DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=8, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:22 PM UTC INFO asyncssh:logging.py:92 [conn=8, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=8, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=8, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=8, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=8, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=8, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=8, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=8, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=8, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:23 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=8, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:23 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=8, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=8, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=8, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=24] Channel closed DEBUG agg1:Logger.py:156 []
Skipped functional/L1/test_l1_autoneg.py::test_l1_autoneg[100-half] 0.44
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py', 75, 'Skipped: Need 2 ports with the same speed of 100 and duplex half')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-336' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[100-half]">Starting testcase:test_l1_autoneg[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=8, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=9] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=9] Local address: 172.17.0.3, port 42174 INFO asyncssh:logging.py:92 [conn=9] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=9] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=9] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:23 PM UTC INFO asyncssh:logging.py:92 [conn=9, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=9, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=9, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=9, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=5] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=9, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=9, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=9, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=7] Command: ethtool swp1 DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=9, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=9, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=9, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=9, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=7] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=9] Received channel close DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=9, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:23 PM UTC INFO asyncssh:logging.py:92 [conn=9, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=9, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=9, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=9, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=9, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=9, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=9, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=9, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=9, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:23 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=9, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:23 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=9, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=9, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=9, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=24] Channel closed DEBUG agg1:Logger.py:156 []
Skipped functional/L1/test_l1_autoneg.py::test_l1_autoneg[1000-full] 0.43
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py', 75, 'Skipped: Need 2 ports with the same speed of 1000 and duplex full')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-376' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[1000-full]">Starting testcase:test_l1_autoneg[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=9, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=10] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=10] Local address: 172.17.0.3, port 42188 INFO asyncssh:logging.py:92 [conn=10] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=10] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=10] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:23 PM UTC INFO asyncssh:logging.py:92 [conn=10, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=10, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=10, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=10, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=5] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=10, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=10, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=10, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=7] Command: ethtool swp1 DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=10, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=10, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=10, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=10, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=8] Received channel close DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=10, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:23 PM UTC INFO asyncssh:logging.py:92 [conn=10, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=10, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=10, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=10, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=10, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=10, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=10, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=10, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=10, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:23 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=10, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:23 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=10, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=10, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=10, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=24] Channel closed DEBUG agg1:Logger.py:156 []
Skipped functional/L1/test_l1_config.py::test_l1_settings_[autodetect] 0.48
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py', 49, 'Skipped: Need 1 ports with the same speed of 1000 and duplex full')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-416' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_settings_[autodetect]">Starting testcase:test_l1_settings_[autodetect] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=10, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=11] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=11] Local address: 172.17.0.3, port 42204 INFO asyncssh:logging.py:92 [conn=11] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=11] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=11] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:24 PM UTC INFO asyncssh:logging.py:92 [conn=11, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=11, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=11, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=11, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=5] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=11, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=11, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=11, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=7] Command: ethtool swp1 DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=11, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=11, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=11, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=11, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=7] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=9] Received channel close DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=11, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:24 PM UTC INFO asyncssh:logging.py:92 [conn=11, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=11, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=11, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=11, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=11, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=11, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=18] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=11, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=18] Channel closed DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=19] Channel closed DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=11, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=20] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=11, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=20] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_settings_[autodetect] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py INFO asyncssh:logging.py:92 [conn=11, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=21] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=11, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=22] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=11, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=11, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=24] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:24 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=11, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=26] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:24 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=11, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=11, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=11, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=28] Channel closed DEBUG agg1:Logger.py:156 []
Skipped functional/L1/test_l1_config.py::test_l1_settings_[autoneg] 0.49
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py', 49, 'Skipped: Need 1 ports with the same speed of 1000 and duplex full')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-460' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_settings_[autoneg]">Starting testcase:test_l1_settings_[autoneg] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=11, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=12] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=12] Local address: 172.17.0.3, port 42216 INFO asyncssh:logging.py:92 [conn=12] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=12] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=12] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:24 PM UTC INFO asyncssh:logging.py:92 [conn=12, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=12, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=12, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=12, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=5] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=12, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=12, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=12, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=7] Command: ethtool swp1 DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=12, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=12, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=12, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=12, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=7] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=9] Received channel close DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=12, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:24 PM UTC INFO asyncssh:logging.py:92 [conn=12, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=12, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=12, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=12, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=12, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=12, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=18] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=12, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=18] Channel closed DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=19] Channel closed DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=12, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=20] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=12, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=20] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_settings_[autoneg] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py INFO asyncssh:logging.py:92 [conn=12, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=21] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=12, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=22] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=12, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=12, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=24] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:24 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=12, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=26] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:24 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=12, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=12, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=12, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=28] Channel closed DEBUG agg1:Logger.py:156 []
Skipped functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[10-full] 0.45
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py', 69, 'Skipped: Need 2 ports with the same speed of 10 and duplex full')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-504' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[10-full]">Starting testcase:test_l1_forced_speed_[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=12, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=13] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=13] Local address: 172.17.0.3, port 42226 INFO asyncssh:logging.py:92 [conn=13] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=13] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=13] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:25 PM UTC INFO asyncssh:logging.py:92 [conn=13, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=13, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=13, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=13, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=13, chan=7] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=13, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=6] Channel closed DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=13, chan=9] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=13, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=7] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=13, chan=8] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=13, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=13, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=13, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=9] Received channel close DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=13, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:25 PM UTC INFO asyncssh:logging.py:92 [conn=13, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=13, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=13, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=13, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=13, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=13, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=13, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=13, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=13, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:25 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=13, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:25 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=13, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=13, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=13, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=24] Channel closed DEBUG agg1:Logger.py:156 []
Skipped functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[10-half] 0.46
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py', 69, 'Skipped: Need 2 ports with the same speed of 10 and duplex half')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-544' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[10-half]">Starting testcase:test_l1_forced_speed_[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=13, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=14] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=14] Local address: 172.17.0.3, port 42230 INFO asyncssh:logging.py:92 [conn=14] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=14] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=14] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:25 PM UTC INFO asyncssh:logging.py:92 [conn=14, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=14, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=14, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=14, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=14, chan=7] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=14, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=6] Channel closed DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=14, chan=9] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=14, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=7] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=14, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=14, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=14, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=14, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=14, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=14, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:25 PM UTC INFO asyncssh:logging.py:92 [conn=14, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=14, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=14, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=14, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=14, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=14, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=14, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=14, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=14, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=14, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:25 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=14, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:25 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=14, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=14, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=14, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=24] Channel closed DEBUG agg1:Logger.py:156 []
Skipped functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[100-full] 0.47
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py', 69, 'Skipped: Need 2 ports with the same speed of 100 and duplex full')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-584' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[100-full]">Starting testcase:test_l1_forced_speed_[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=14, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=15] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=15] Local address: 172.17.0.3, port 42232 INFO asyncssh:logging.py:92 [conn=15] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=15] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=15] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:25 PM UTC INFO asyncssh:logging.py:92 [conn=15, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=15, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=15, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=15, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=15, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=5] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=15, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=15, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=6] Channel closed DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=15, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=7] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=15, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=15, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=15, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=15, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=15, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:26 PM UTC INFO asyncssh:logging.py:92 [conn=15, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=15, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=15, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=15, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=15, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=15, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=15, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=15, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=15, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:26 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=15, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:26 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=15, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=15, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=15, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=24] Channel closed DEBUG agg1:Logger.py:156 []
Skipped functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[100-half] 0.44
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py', 69, 'Skipped: Need 2 ports with the same speed of 100 and duplex half')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-624' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[100-half]">Starting testcase:test_l1_forced_speed_[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=15, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=16] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=16] Local address: 172.17.0.3, port 42248 INFO asyncssh:logging.py:92 [conn=16] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=16] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=16] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:26 PM UTC INFO asyncssh:logging.py:92 [conn=16, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=16, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=16, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=16, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=5] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=16, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=16, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=16, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=7] Command: ethtool swp1 DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=16, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=16, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=16, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=16, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=7] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=16, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=9] Received channel close DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=16, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=16, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=16, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:26 PM UTC INFO asyncssh:logging.py:92 [conn=16, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=16, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=16, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=16, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=16, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=16, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=16, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=16, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=16, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=16, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:26 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=16, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:26 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=16, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=16, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=16, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=24] Channel closed DEBUG agg1:Logger.py:156 []
Skipped functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[1000-full] 0.45
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py', 69, 'Skipped: Need 2 ports with the same speed of 1000 and duplex full')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-664' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[1000-full]">Starting testcase:test_l1_forced_speed_[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=16, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=17] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=17] Local address: 172.17.0.3, port 42250 INFO asyncssh:logging.py:92 [conn=17] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=17] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=17] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:26 PM UTC INFO asyncssh:logging.py:92 [conn=17, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=17, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=17, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=17, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=17, chan=7] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=17, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=17, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=6] Channel closed DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=17, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=7] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=17, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=17, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=17, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=17, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=17, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=17, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:27 PM UTC INFO asyncssh:logging.py:92 [conn=17, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=17, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=17, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=17, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=17, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=17, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=17, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=17, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=17, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=17, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:27 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=17, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:27 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=17, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=17, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=17, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=24] Channel closed DEBUG agg1:Logger.py:156 []
Skipped functional/L1/test_l1_mixed_speed.py::test_l1_mixed_speed 0.71
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_mixed_speed.py', 66, 'Skipped: Need 1 ports with the same speed of 10 and duplex full')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-758' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_mixed_speed">Starting testcase:test_l1_mixed_speed from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_mixed_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=18, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=19] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=19] Local address: 172.17.0.3, port 39828 INFO asyncssh:logging.py:92 [conn=19] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=19] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=19] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:21:32 PM UTC INFO asyncssh:logging.py:92 [conn=19, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=19, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=19, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=19, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=5] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=19, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=19, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=19, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=7] Command: ethtool swp1 DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=19, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=19, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=19, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=19, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=8] Received channel close DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=9] Received channel close DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=19, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:21:32 PM UTC INFO asyncssh:logging.py:92 [conn=19, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=19, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=19, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=19, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=19, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=19, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=18] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=19, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=18] Channel closed DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=19] Channel closed DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=19, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=20] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=19, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=20] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_mixed_speed from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_mixed_speed.py INFO asyncssh:logging.py:92 [conn=19, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=21] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=19, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=22] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=19, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=19, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=24] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:21:32 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=19, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=26] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:21:33 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=19, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=19, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=19, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=28] Channel closed DEBUG agg1:Logger.py:156 []
Skipped functional/L1/test_l1_port_state.py::test_l1_link_up_state_software_power_cycle 0.00
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py', 95, 'Skipped: https://github.com/dentproject/dentOS/issues/152')
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_link_up_state_software_power_cycle from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py
Skipped functional/vrrp/test_vrrp_basic.py::test_vrrp_basic_on[port] 1.88
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 41, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-17517' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_basic_on[port]">Starting testcase:test_vrrp_basic_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=258, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=259] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=259] Local address: 172.17.0.3, port 45946 INFO asyncssh:logging.py:92 [conn=259] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=259] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=259] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=259, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:16:17 AM UTC INFO asyncssh:logging.py:92 [conn=259, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=259, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=259, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=259, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=259, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=259, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=259, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=259, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:16:17 AM UTC
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_basic_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py INFO asyncssh:logging.py:92 [conn=259, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=259, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:16:17 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=259, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=259, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=259, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=10] Channel closed DEBUG agg1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=259, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=259, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=259, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=259, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=259, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:16:18 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=259, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=259, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=16] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=259, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=259, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=259, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=259, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=259, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=20] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=259, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=20] Channel closed DEBUG agg1:Logger.py:156
Skipped functional/vrrp/test_vrrp_basic.py::test_vrrp_basic_on[bridge] 1.51
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 41, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-17552' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_basic_on[bridge]">Starting testcase:test_vrrp_basic_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=259, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=260] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=260] Local address: 172.17.0.3, port 45956 INFO asyncssh:logging.py:92 [conn=260] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=260] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=260] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=260, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:16:19 AM UTC INFO asyncssh:logging.py:92 [conn=260, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=260, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=260, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=260, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=260, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=260, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=260, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=260, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:16:19 AM UTC
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_basic_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py INFO asyncssh:logging.py:92 [conn=260, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=260, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:16:19 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=260, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=260, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=260, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=10] Channel closed DEBUG agg1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=260, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=260, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=260, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=260, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=260, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:16:19 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=260, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=260, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=16] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=260, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=260, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=260, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=260, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 down && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=260, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=20] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 down && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=260, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=20] Channel closed DEBUG agg1:Logger.py:156
Skipped functional/vrrp/test_vrrp_basic.py::test_vrrp_basic_down_on[port] 0.84
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 41, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-17587' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_basic_down_on[port]">Starting testcase:test_vrrp_basic_down_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=260, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=261] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=261] Local address: 172.17.0.3, port 45960 INFO asyncssh:logging.py:92 [conn=261] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=261] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=261] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=261, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:16:21 AM UTC INFO asyncssh:logging.py:92 [conn=261, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=261, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=261, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=261, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=261, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=261, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=261, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=261, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:16:21 AM UTC
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_basic_down_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py INFO asyncssh:logging.py:92 [conn=261, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=261, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:16:21 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=261, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=261, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=261, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=10] Channel closed DEBUG agg1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=261, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=261, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=261, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=261, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=261, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:16:21 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=261, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=261, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=16] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=261, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=261, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=261, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=261, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=261, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=261, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=20] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=261, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=20] Channel closed DEBUG agg1:Logger.py:156
Skipped functional/vrrp/test_vrrp_basic.py::test_vrrp_basic_down_on[bridge] 0.49
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 41, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-17622' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_basic_down_on[bridge]">Starting testcase:test_vrrp_basic_down_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=261, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=262] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=262] Local address: 172.17.0.3, port 55210 INFO asyncssh:logging.py:92 [conn=262] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=262] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=262] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=262, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:16:22 AM UTC INFO asyncssh:logging.py:92 [conn=262, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=262, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=262, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=262, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=262, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=262, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=262, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=262, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:16:22 AM UTC
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_basic_down_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py INFO asyncssh:logging.py:92 [conn=262, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=262, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:16:22 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=262, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=262, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=262, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=10] Channel closed DEBUG agg1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=262, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=262, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=262, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=262, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=262, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:16:22 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=262, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=262, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=16] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=262, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=262, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=262, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=262, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=262, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=20] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=262, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=20] Channel closed DEBUG agg1:Logger.py:156
Skipped functional/vrrp/test_vrrp_priority.py::test_vrrp_priority_on[port] 0.49
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 41, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-17657' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_priority_on[port]">Starting testcase:test_vrrp_priority_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=262, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=263] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=263] Local address: 172.17.0.3, port 55224 INFO asyncssh:logging.py:92 [conn=263] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=263] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=263] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=263, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:16:22 AM UTC INFO asyncssh:logging.py:92 [conn=263, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=263, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=263, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=263, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=263, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=263, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=263, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=263, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:16:22 AM UTC
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_priority_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_priority.py INFO asyncssh:logging.py:92 [conn=263, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=263, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:16:22 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=263, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=263, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=263, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=10] Channel closed DEBUG agg1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=263, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=263, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=263, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=263, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=263, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:16:22 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=263, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=263, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=16] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=263, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=263, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=263, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=263, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=263, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=20] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=263, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=20] Channel closed DEBUG agg1:Logger.py:156
Skipped functional/vrrp/test_vrrp_priority.py::test_vrrp_priority_on[bridge] 0.53
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 41, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-17692' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_priority_on[bridge]">Starting testcase:test_vrrp_priority_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=263, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=264] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=264] Local address: 172.17.0.3, port 55228 INFO asyncssh:logging.py:92 [conn=264] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=264] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=264] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=264, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:16:23 AM UTC INFO asyncssh:logging.py:92 [conn=264, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=264, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=264, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=264, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=264, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=264, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=264, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=264, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:16:23 AM UTC
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_priority_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_priority.py INFO asyncssh:logging.py:92 [conn=264, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=264, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:16:23 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=264, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=264, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=264, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=10] Channel closed DEBUG agg1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=264, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=264, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=264, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=264, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=264, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:16:23 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=264, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=264, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=16] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=264, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=264, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=264, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=264, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=264, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=20] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=264, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=20] Channel closed DEBUG agg1:Logger.py:156
Passed functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[10000-full] 185.23
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-704' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[10000-full]">Starting testcase:test_l1_forced_speed_[10000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=17, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=18] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=18] Local address: 172.17.0.3, port 42262 INFO asyncssh:logging.py:92 [conn=18] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=18] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=18] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:27 PM UTC INFO asyncssh:logging.py:92 [conn=18, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=18, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=18, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=18, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=5] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=18, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=18, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=18, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=7] Command: ethtool swp1 DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=18, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=18, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=18, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=18, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=7] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=18, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=9] Received channel close DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=18, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=18, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=18, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:18:27 PM UTC INFO asyncssh:logging.py:92 [conn=18, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=18, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=18, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=18, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=18, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=18, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=18, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=18, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=18] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=18, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=18, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=18, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=20] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=18, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=18, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 INFO asyncssh:logging.py:92 [conn=18, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=22] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 INFO asyncssh:logging.py:92 [conn=18, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=18, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=23] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=18, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=24] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=18, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10000 to 10000 on tgen_port 10.36.118.199:1:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:1:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10000 to 10000 on tgen_port 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=18, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=25] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=18, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=26] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=18, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=26] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=18, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=27] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=18, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=28] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=18, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=28] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 --> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:6 --> 10.36.118.199:1:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e96aec0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 --> 10.36.118.199:1:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 4529083 Rx 4529083 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:6 --> 10.36.118.199:1:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 4529083 Rx 4529083 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[10000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=18, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=29] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=18, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=30] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=18, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=18, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=32] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:21:31 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=18, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=33] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=34] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:21:32 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=18, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=18, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=36] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=18, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":54,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=18, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=18, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=38] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=18, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=38] Channel closed DEBUG agg1:Logger.py:156
Passed functional/L1/test_l1_port_state.py::test_l1_port_state_status 0.50
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_port_state_status">Starting testcase:test_l1_port_state_status from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-801' coro=<test_l1_port_state_status() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py:92> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete It took 0:00:00.033348 to grep count of entities. It took 0:00:00.030503 to set entities to 'UP' state.
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=19, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=20] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=20] Local address: 172.17.0.3, port 39840 INFO asyncssh:logging.py:92 [conn=20] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=20] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=20] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=20, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:21:33 PM UTC INFO asyncssh:logging.py:92 [conn=20, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=1] Channel closed DEBUG agg1:Logger.py:156 ifconfig -a INFO asyncssh:logging.py:92 [conn=20, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=2] Command: ifconfig -a INFO asyncssh:logging.py:92 [conn=20, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=2] Channel closed DEBUG agg1:Logger.py:156 bond0: flags=5122<BROADCAST,MASTER,MULTICAST> mtu 1500 ether 32:26:5f:f0:50:60 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 dummy0: flags=130<BROADCAST,NOARP> mtu 1500 ether 56:e2:8b:f7:07:bc txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10<host> loop txqueuelen 1000 (Local Loopback) RX packets 32 bytes 2873 (2.8 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 32 bytes 2873 (2.8 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 ma1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 10.36.118.44 netmask 255.255.255.0 broadcast 10.36.118.255 inet6 fe80::36ef:b6ff:feec:3804 prefixlen 64 scopeid 0x20<link> ether 34:ef:b6:ec:38:04 txqueuelen 2048 (Ethernet) RX packets 6259 bytes 608477 (594.2 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 5143 bytes 619758 (605.2 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 sit0: flags=128<NOARP> mtu 1480 sit txqueuelen 1000 (IPv6-in-IPv4) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::36ef:b6ff:feec:3807 prefixlen 64 scopeid 0x20<link> ether 34:ef:b6:ec:38:07 txqueuelen 1000 (Ethernet) RX packets 4529097 bytes 2318891392 (2.1 GiB) RX errors 0 dropped 0 overruns 0 frame 4486 TX packets 4529148 bytes 2318897907 (2.1 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp2: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::36ef:b6ff:feec:3808 prefixlen 64 scopeid 0x20<link> ether 34:ef:b6:ec:38:08 txqueuelen 1000 (Ethernet) RX packets 4529097 bytes 2318891392 (2.1 GiB) RX errors 0 dropped 0 overruns 0 frame 4486 TX packets 4529146 bytes 2318897635 (2.1 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp3: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::36ef:b6ff:feec:3809 prefixlen 64 scopeid 0x20<link> ether 34:ef:b6:ec:38:09 txqueuelen 1000 (Ethernet) RX packets 4493 bytes 2297280 (2.1 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 4527 bytes 2302211 (2.1 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp4: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::36ef:b6ff:feec:380a prefixlen 64 scopeid 0x20<link> ether 34:ef:b6:ec:38:0a txqueuelen 1000 (Ethernet) RX packets 4493 bytes 2297280 (2.1 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 4529 bytes 2302419 (2.1 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp5: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:0b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp6: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:0c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp7: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:0d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp8: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:0e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp9: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:0f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp10: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:10 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp11: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:11 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp12: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:12 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp13: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:13 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp14: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:14 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp15: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:15 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp16: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:16 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp17: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:17 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp18: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:18 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp19: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:19 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp20: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:1a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp21: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:1b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp22: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:1c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp23: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:1d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp24: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:1e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp25: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:1f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp26: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:20 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp27: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:21 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp28: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:22 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp29: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:23 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp30: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:24 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp31: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:25 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp32: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:26 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp33: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:27 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp34: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:28 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp35: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:29 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp36: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:2a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp37: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:2b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp38: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:2c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp39: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:2d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp40: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:2e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp41: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:2f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp42: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:30 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp43: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:31 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp44: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:32 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp45: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:33 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp46: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:34 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp47: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:35 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp48: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:36 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 INFO asyncssh:logging.py:92 [conn=20, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=20, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=4] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=20, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=20, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=20, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=6] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=20, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=6] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_port_state_status from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=20, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=20, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:21:33 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Passed functional/acl/test_acl.py::test_acl_skip_sw_hw_selector[pass] 178.57
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_skip_sw_hw_selector[pass]">Starting testcase:test_acl_skip_sw_hw_selector[pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-818' coro=<test_acl_skip_sw_hw_selector() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=20, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=21] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=21] Local address: 172.17.0.3, port 39850 INFO asyncssh:logging.py:92 [conn=21] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=21] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=21] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:21:33 PM UTC INFO asyncssh:logging.py:92 [conn=21, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=21, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=21, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=21, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=21, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=21, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=5] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=6] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress pref 49000 flower skip_sw action pass INFO asyncssh:logging.py:92 [conn=21, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=8] Command: tc filter add dev swp1 ingress pref 49000 flower skip_sw action pass INFO asyncssh:logging.py:92 [conn=21, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7ee76b60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream SIP-DIP N/A Tx 462 Rx 462 Loss 0.000 INFO asyncssh:logging.py:92 [conn=21, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=10] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"stats":{"bytes":236544,"packets":462,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":236544,"hw_packets":462,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 462, Rx Frames: 462, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 462, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 462, packets = 462, expected = 462, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 462, hw_packets = 462, expected = 462, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=21, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=12] Command: tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress pref 49000 flower skip_hw action pass INFO asyncssh:logging.py:92 [conn=21, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=14] Command: tc filter add dev swp1 ingress pref 49000 flower skip_hw action pass INFO asyncssh:logging.py:92 [conn=21, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7ef7cca0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream SIP-DIP N/A Tx 808 Rx 808 Loss 0.000 INFO asyncssh:logging.py:92 [conn=21, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=16] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_hw":true,"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"last_used":6,"first_used":14,"stats":{"bytes":402384,"packets":808,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 808, Rx Frames: 808, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 808, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 808, packets = 808, expected = 808, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=21, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=18] Command: tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress pref 49000 flower action pass INFO asyncssh:logging.py:92 [conn=21, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=20] Command: tc filter add dev swp1 ingress pref 49000 flower action pass INFO asyncssh:logging.py:92 [conn=21, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e7d7fd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream SIP-DIP N/A Tx 807 Rx 807 Loss 0.000 INFO asyncssh:logging.py:92 [conn=21, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=22] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"first_used":14,"stats":{"bytes":814572,"packets":1613,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":401388,"sw_packets":806,"hw_bytes":413184,"hw_packets":807,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 807, Rx Frames: 807, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 807, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 807, packets = 1613, expected = 1614, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 807, hw_packets = 807, expected = 807, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 807, sw_packets = 806, expected = 807, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_skip_sw_hw_selector[pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=21, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=24] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:24:31 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=21, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=21, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=21, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":55,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=21, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=21, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=21, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=21, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=30] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:24:31 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=21, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=32] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:24:31 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=21, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=21, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=34] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=21, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=21, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=21, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=36] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=21, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=21, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=38] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=21, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=21, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=56] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=21, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=58] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=21, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=60] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=21, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=21, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=62] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=21, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=21, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=64] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=21, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl.py::test_acl_skip_sw_hw_selector[drop] 179.53
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_skip_sw_hw_selector[drop]">Starting testcase:test_acl_skip_sw_hw_selector[drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-895' coro=<test_acl_skip_sw_hw_selector() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=21, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=22] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=22] Local address: 172.17.0.3, port 44958 INFO asyncssh:logging.py:92 [conn=22] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=22] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=22] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:24:32 PM UTC INFO asyncssh:logging.py:92 [conn=22, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=22, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=22, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=22, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=22, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=22, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=5] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=6] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress pref 49000 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=22, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=8] Command: tc filter add dev swp1 ingress pref 49000 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=22, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e8406a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream SIP-DIP N/A Tx 452 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=22, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=10] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"stats":{"bytes":231424,"packets":452,"drops":452,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":231424,"hw_packets":452,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 452, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 452, drops = 452, expected = 452, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 452, packets = 452, expected = 452, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 452, hw_packets = 452, expected = 452, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=22, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=12] Command: tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress pref 49000 flower skip_hw action drop INFO asyncssh:logging.py:92 [conn=22, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=14] Command: tc filter add dev swp1 ingress pref 49000 flower skip_hw action drop INFO asyncssh:logging.py:92 [conn=22, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7ef2c490>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream SIP-DIP N/A Tx 809 Rx 809 Loss 0.000 INFO asyncssh:logging.py:92 [conn=22, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=16] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_hw":true,"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"last_used":6,"first_used":14,"stats":{"bytes":402882,"packets":809,"drops":809,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 809, Rx Frames: 809, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 809, drops = 809, expected = 809, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 809, packets = 809, expected = 809, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=22, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=18] Command: tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress pref 49000 flower action drop INFO asyncssh:logging.py:92 [conn=22, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=20] Command: tc filter add dev swp1 ingress pref 49000 flower action drop INFO asyncssh:logging.py:92 [conn=22, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7ef2d0c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream SIP-DIP N/A Tx 809 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=22, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=22] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"stats":{"bytes":414208,"packets":809,"drops":809,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":414208,"hw_packets":809,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 809, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 809, drops = 809, expected = 809, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 809, packets = 809, expected = 809, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 809, hw_packets = 809, expected = 809, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 809, sw_packets = 0, expected = 0, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_skip_sw_hw_selector[drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=22, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=24] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:27:30 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=22, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=22, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=22, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":56,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=22, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=22, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=22, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=22, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=30] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:27:31 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=22, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=32] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:27:31 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=22, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=22, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=34] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=22, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=22, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=22, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=36] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=22, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=22, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=38] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=22, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=22, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=56] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=22, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=58] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=22, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=60] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=22, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=22, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=62] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=22, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=22, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=64] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=22, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl.py::test_acl_skip_sw_hw_selector[trap] 178.59
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_skip_sw_hw_selector[trap]">Starting testcase:test_acl_skip_sw_hw_selector[trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-972' coro=<test_acl_skip_sw_hw_selector() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=22, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=23] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=23] Local address: 172.17.0.3, port 60592 INFO asyncssh:logging.py:92 [conn=23] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=23] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=23] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:27:31 PM UTC INFO asyncssh:logging.py:92 [conn=23, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=23, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=23, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=23, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=23, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=23, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=5] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=6] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress pref 49000 flower skip_sw action trap INFO asyncssh:logging.py:92 [conn=23, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=8] Command: tc filter add dev swp1 ingress pref 49000 flower skip_sw action trap INFO asyncssh:logging.py:92 [conn=23, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e8405e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream SIP-DIP N/A Tx 455 Rx 455 Loss 0.000 INFO asyncssh:logging.py:92 [conn=23, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=10] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"stats":{"bytes":232960,"packets":455,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":232960,"hw_packets":455,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 455, Rx Frames: 455, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 455, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 455, packets = 455, expected = 455, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 455, hw_packets = 455, expected = 455, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=23, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=12] Command: tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress pref 49000 flower skip_hw action trap INFO asyncssh:logging.py:92 [conn=23, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=14] Command: tc filter add dev swp1 ingress pref 49000 flower skip_hw action trap INFO asyncssh:logging.py:92 [conn=23, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e840b20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream SIP-DIP N/A Tx 808 Rx 808 Loss 0.000 INFO asyncssh:logging.py:92 [conn=23, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=16] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_hw":true,"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"last_used":6,"first_used":14,"stats":{"bytes":401886,"packets":807,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 808, Rx Frames: 808, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 808, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 808, packets = 807, expected = 808, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=23, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=18] Command: tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress pref 49000 flower action trap INFO asyncssh:logging.py:92 [conn=23, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=20] Command: tc filter add dev swp1 ingress pref 49000 flower action trap INFO asyncssh:logging.py:92 [conn=23, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e843cd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream SIP-DIP N/A Tx 811 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=23, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=22] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"first_used":14,"stats":{"bytes":819110,"packets":1622,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":403878,"sw_packets":811,"hw_bytes":415232,"hw_packets":811,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 811, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 811, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 811, packets = 1622, expected = 1622, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 811, hw_packets = 811, expected = 811, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 811, sw_packets = 811, expected = 811, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_skip_sw_hw_selector[trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=23, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=24] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:30:29 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=23, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=23, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=23, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":57,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=23, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=23, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=23, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=23, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=30] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:30:29 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=23, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=32] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:30:29 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=23, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=23, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=34] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=23, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=23, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=23, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=36] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=23, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=23, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=38] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=23, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=23, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=56] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=23, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=58] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=23, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=60] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=23, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=23, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=62] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=23, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=23, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=64] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=23, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl.py::test_acl_rule_deletion 16.54
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_rule_deletion">Starting testcase:test_acl_rule_deletion from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1049' coro=<test_acl_rule_deletion() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:198> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=23, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=24] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=24] Local address: 172.17.0.3, port 42490 INFO asyncssh:logging.py:92 [conn=24] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=24] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=24] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:30:30 PM UTC INFO asyncssh:logging.py:92 [conn=24, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=1] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=24, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=2] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=24, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=3] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x9100 pref 10000 flower src_mac 02:a5:13:ae:7f:40 dst_mac 02:27:e2:af:eb:de action trap && tc filter add dev swp1 ingress protocol ip pref 10001 flower src_mac 02:7b:2c:af:ee:25 dst_mac 02:e7:be:34:59:b9 src_ip 122.181.189.70 dst_ip 90.213.120.245 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10002 flower src_mac 02:11:11:39:50:3d dst_mac 02:17:29:a9:db:b6 vlan_id 920 vlan_ethtype ip src_ip 17.200.74.187 dst_ip 31.16.169.47 ip_proto udp src_port 10028 dst_port 40156 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10003 flower src_mac 02:61:f2:86:42:ce dst_mac 02:0d:13:49:38:d1 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10004 flower src_mac 02:d4:ff:eb:b0:6a dst_mac 02:01:04:f4:e3:f8 vlan_id 270 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10005 flower src_mac 02:c4:24:88:16:3f dst_mac 02:32:5b:be:5b:f8 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10006 flower src_mac 02:00:0f:a6:ac:8a dst_mac 02:44:23:26:7d:f3 src_ip 52.236.18.196 dst_ip 48.5.105.22 ip_proto icmp code 84 type 4 action trap && tc filter add dev swp1 ingress protocol ip pref 10007 flower src_mac 02:77:27:d7:1b:5c dst_mac 02:32:e3:fb:6b:82 src_ip 76.90.117.29 dst_ip 20.127.115.178 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10008 flower src_mac 02:a5:5c:c7:09:4c dst_mac 02:6b:3c:66:66:6c action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10009 flower src_mac 02:e1:86:11:d8:94 dst_mac 02:79:a2:ea:88:20 vlan_id 3346 vlan_ethtype ip src_ip 114.135.116.75 dst_ip 102.164.23.144 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10010 flower src_mac 02:2b:aa:5f:b3:87 dst_mac 02:c9:db:05:5b:35 src_ip 125.201.116.58 dst_ip 80.177.112.186 ip_proto icmp code 14 type 18 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10011 flower src_mac 02:ca:4f:53:1a:63 dst_mac 02:9f:52:4b:11:ad action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10012 flower src_mac 02:47:ad:1f:24:3a dst_mac 02:2f:f0:2b:c1:ab action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10013 flower src_mac 02:43:55:f4:d7:32 dst_mac 02:ce:39:f8:ee:b0 vlan_id 955 vlan_ethtype ip src_ip 108.222.151.202 dst_ip 55.133.27.20 ip_proto tcp src_port 55081 dst_port 54830 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10014 flower src_mac 02:61:e5:5a:4d:32 dst_mac 02:b0:45:78:c9:3f src_ip 96.138.205.19 dst_ip 64.53.127.185 ip_proto tcp src_port 25309 dst_port 60426 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10015 flower src_mac 02:f3:6c:d3:9f:96 dst_mac 02:2e:48:e6:e9:4a action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10016 flower src_mac 02:59:57:5a:52:e7 dst_mac 02:c9:42:cf:e9:f0 vlan_id 2788 vlan_ethtype ipv4 src_ip 115.185.157.195 dst_ip 33.117.46.153 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10017 flower src_mac 02:e0:94:82:3e:92 dst_mac 02:5c:99:6e:73:db vlan_id 402 vlan_ethtype ipv4 src_ip 58.80.228.142 dst_ip 92.248.12.188 ip_proto tcp src_port 8548 dst_port 59083 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10018 flower src_mac 02:c8:67:57:a5:48 dst_mac 02:32:8e:bb:63:8f vlan_id 600 vlan_ethtype 0x0800 src_ip 108.226.213.125 dst_ip 91.76.207.130 ip_proto udp src_port 39543 dst_port 65340 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10019 flower src_mac 02:99:2b:78:61:3f dst_mac 02:3c:5b:fd:54:9a vlan_id 2475 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10020 flower src_mac 02:42:5c:3c:08:5f dst_mac 02:ab:a2:d0:72:42 action trap && tc filter add dev swp1 ingress protocol ip pref 10021 flower src_mac 02:4e:33:e8:0b:23 dst_mac 02:6e:59:50:92:11 src_ip 35.252.158.27 dst_ip 65.55.99.106 ip_proto icmp code 51 type 12 action drop && tc filter add dev swp1 ingress protocol ip pref 10022 flower src_mac 02:3f:06:65:00:7d dst_mac 02:b3:5b:fc:88:cf src_ip 106.85.183.99 dst_ip 54.87.118.30 ip_proto tcp src_port 26948 dst_port 51908 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10023 flower src_mac 02:9f:df:90:0e:4d dst_mac 02:ac:9f:39:79:73 vlan_id 4076 vlan_ethtype 0x0800 src_ip 103.147.209.103 dst_ip 39.189.56.239 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10024 flower src_mac 02:6a:d1:80:b3:f5 dst_mac 02:36:c8:39:55:21 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10025 flower src_mac 02:85:b9:f0:2c:4b dst_mac 02:63:7b:16:0a:4c vlan_id 2141 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ip pref 10026 flower src_mac 02:67:8d:81:1d:cc dst_mac 02:8b:90:e3:c4:3c src_ip 116.50.104.180 dst_ip 86.211.169.30 ip_proto udp src_port 37596 dst_port 46099 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10027 flower src_mac 02:e8:50:3c:7b:8a dst_mac 02:0f:69:8f:48:23 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10028 flower src_mac 02:ea:5d:80:2a:94 dst_mac 02:cb:56:bd:7f:86 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10029 flower src_mac 02:9d:2f:0a:8b:1b dst_mac 02:20:7e:a0:26:32 vlan_id 3278 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10030 flower src_mac 02:fd:7d:1b:2a:a9 dst_mac 02:fc:3c:81:dd:b3 vlan_id 1652 vlan_ethtype 0x0800 src_ip 87.248.204.161 dst_ip 37.62.24.160 ip_proto udp src_port 58082 dst_port 63701 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10031 flower src_mac 02:52:7a:8f:cd:95 dst_mac 02:9d:64:4e:3e:83 vlan_id 2406 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10032 flower src_mac 02:81:d9:57:4a:89 dst_mac 02:f7:63:19:84:18 vlan_id 1499 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10033 flower src_mac 02:a4:30:49:14:a7 dst_mac 02:50:d3:39:ff:71 action pass && tc filter add dev swp1 ingress protocol ip pref 10034 flower src_mac 02:ee:69:d8:67:cc dst_mac 02:9c:68:c8:ea:e1 src_ip 42.221.176.23 dst_ip 81.131.82.228 ip_proto tcp src_port 65529 dst_port 13826 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10035 flower src_mac 02:4c:f5:09:2e:82 dst_mac 02:76:c2:06:c0:08 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10036 flower src_mac 02:c0:1d:18:c8:7c dst_mac 02:73:16:0e:f2:57 vlan_id 3186 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10037 flower src_mac 02:8c:c0:b9:52:3e dst_mac 02:cd:a3:cb:75:04 vlan_id 1559 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10038 flower src_mac 02:8c:ab:d6:74:83 dst_mac 02:81:62:d2:55:e6 vlan_id 414 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10039 flower src_mac 02:47:cc:5c:b7:6f dst_mac 02:88:32:e8:b1:57 vlan_id 17 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10040 flower src_mac 02:fa:8c:33:b8:34 dst_mac 02:92:47:f0:e5:33 vlan_id 1821 vlan_ethtype ip src_ip 92.50.119.83 dst_ip 121.185.226.41 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10041 flower src_mac 02:93:e6:1f:7c:0f dst_mac 02:b6:12:f8:48:37 vlan_id 377 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10042 flower src_mac 02:f8:da:31:6a:ee dst_mac 02:4c:66:5d:ef:d9 vlan_id 2245 vlan_ethtype 0x0800 src_ip 59.253.144.96 dst_ip 41.183.34.235 ip_proto udp src_port 60051 dst_port 3945 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10043 flower src_mac 02:fc:09:c3:19:d3 dst_mac 02:19:61:bd:6b:29 vlan_id 709 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10044 flower src_mac 02:86:97:78:d1:fc dst_mac 02:8d:ea:1b:1c:2d src_ip 84.102.15.63 dst_ip 101.213.152.194 ip_proto icmp code 141 type 0 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10045 flower src_mac 02:30:82:73:07:b1 dst_mac 02:95:94:f9:07:67 vlan_id 602 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10046 flower src_mac 02:f0:1c:c5:99:c8 dst_mac 02:98:f7:19:6f:c5 vlan_id 2820 vlan_ethtype ipv4 src_ip 30.36.249.17 dst_ip 14.25.145.126 ip_proto udp src_port 22229 dst_port 32956 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10047 flower src_mac 02:88:f5:26:91:d7 dst_mac 02:4a:19:ad:91:13 vlan_id 679 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10048 flower src_mac 02:a7:78:2e:73:fd dst_mac 02:82:a6:08:ca:89 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10049 flower src_mac 02:0f:74:f0:a3:83 dst_mac 02:ec:31:8a:93:a7 src_ip 126.188.162.202 dst_ip 107.226.162.30 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10050 flower src_mac 02:ce:55:ee:4f:39 dst_mac 02:0f:5e:7a:c6:97 src_ip 27.203.151.137 dst_ip 100.3.35.197 ip_proto icmp code 226 type 5 action pass && tc filter add dev swp1 ingress protocol ip pref 10051 flower src_mac 02:32:cf:6f:31:d4 dst_mac 02:11:4b:74:b8:12 src_ip 77.108.32.196 dst_ip 43.19.174.6 ip_proto udp src_port 52580 dst_port 9710 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10052 flower src_mac 02:51:5b:47:c2:86 dst_mac 02:9f:a4:33:e8:ae vlan_id 1671 vlan_ethtype 0x0800 src_ip 65.18.68.166 dst_ip 43.28.65.202 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10053 flower src_mac 02:4a:09:68:e8:55 dst_mac 02:61:8c:d0:b5:e8 vlan_id 4012 vlan_ethtype 0x0800 src_ip 28.54.155.225 dst_ip 48.105.71.149 action trap && tc filter add dev swp1 ingress protocol ip pref 10054 flower src_mac 02:d3:03:7a:bc:9c dst_mac 02:4b:29:f3:1f:f7 src_ip 109.211.86.225 dst_ip 82.83.229.4 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10055 flower src_mac 02:e6:a9:67:0b:e2 dst_mac 02:78:51:00:79:a2 vlan_id 511 vlan_ethtype 0x0800 src_ip 81.22.174.10 dst_ip 79.212.6.105 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10056 flower src_mac 02:46:5f:42:90:1c dst_mac 02:81:59:61:27:2d vlan_id 650 vlan_ethtype ipv4 src_ip 86.6.111.230 dst_ip 15.140.172.150 ip_proto udp src_port 34451 dst_port 63915 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10057 flower src_mac 02:0e:59:64:0a:ca dst_mac 02:a5:58:3d:37:09 vlan_id 1994 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10058 flower src_mac 02:d0:95:29:1e:8a dst_mac 02:64:4c:dc:d8:7d vlan_id 1478 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10059 flower src_mac 02:f1:f5:0a:3a:0d dst_mac 02:8e:c7:69:f4:f5 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10060 flower src_mac 02:17:bb:c7:d4:b7 dst_mac 02:a6:ec:c0:7e:47 vlan_id 3719 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10061 flower src_mac 02:da:01:c3:48:fa dst_mac 02:81:07:df:dc:08 vlan_id 3590 vlan_ethtype ip src_ip 100.43.215.249 dst_ip 29.209.205.192 ip_proto tcp src_port 28113 dst_port 54294 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10062 flower src_mac 02:59:72:42:60:a2 dst_mac 02:8f:92:70:aa:3a vlan_id 3702 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10063 flower src_mac 02:17:5d:25:af:fb dst_mac 02:c6:b9:d2:77:ab action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10064 flower src_mac 02:87:53:c2:af:63 dst_mac 02:19:40:3b:ff:23 vlan_id 144 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10065 flower src_mac 02:0b:a9:51:58:6f dst_mac 02:d6:8e:eb:e6:56 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10066 flower src_mac 02:16:f1:21:7d:be dst_mac 02:65:bb:27:51:bb vlan_id 3204 vlan_ethtype 0x0800 src_ip 38.211.182.168 dst_ip 21.14.91.34 ip_proto udp src_port 47230 dst_port 24853 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10067 flower src_mac 02:11:07:53:c7:28 dst_mac 02:e8:ce:10:54:d3 src_ip 34.177.29.235 dst_ip 53.236.62.158 ip_proto icmp code 231 type 15 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10068 flower src_mac 02:f0:1b:29:d7:dc dst_mac 02:ce:57:f8:4c:d7 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10069 flower src_mac 02:6a:5d:70:4f:0b dst_mac 02:f9:1a:bd:bd:32 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10070 flower src_mac 02:b6:91:5e:d3:cb dst_mac 02:05:72:ab:0b:0a action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10071 flower src_mac 02:d8:5b:e4:6a:bf dst_mac 02:0e:1f:ac:45:87 vlan_id 3358 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10072 flower src_mac 02:92:b4:4c:fd:7c dst_mac 02:d0:f0:8c:2e:28 vlan_id 325 vlan_ethtype 0x0800 src_ip 27.3.39.62 dst_ip 45.188.174.196 ip_proto tcp src_port 17712 dst_port 50832 action drop && tc filter add dev swp1 ingress protocol ip pref 10073 flower src_mac 02:c8:a0:e6:09:3b dst_mac 02:a4:d5:83:82:0a src_ip 79.26.108.238 dst_ip 111.211.180.27 ip_proto tcp src_port 46928 dst_port 36959 action trap && tc filter add dev swp1 ingress protocol ip pref 10074 flower src_mac 02:1f:59:91:1b:a0 dst_mac 02:6c:f9:13:6e:03 src_ip 103.218.151.30 dst_ip 46.242.104.60 ip_proto icmp code 153 type 12 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10075 flower src_mac 02:28:ac:e5:41:51 dst_mac 02:e5:b4:ad:04:47 src_ip 38.73.8.26 dst_ip 100.115.20.125 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10076 flower src_mac 02:7b:00:62:b1:f7 dst_mac 02:fd:7b:9c:e8:a1 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10077 flower src_mac 02:c1:b8:f8:8c:e5 dst_mac 02:5b:8d:de:34:2d src_ip 72.3.249.39 dst_ip 77.162.107.2 ip_proto tcp src_port 60198 dst_port 33506 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10078 flower src_mac 02:06:b4:32:b0:dd dst_mac 02:7a:5f:9f:aa:4c vlan_id 1323 vlan_ethtype ip src_ip 91.130.243.175 dst_ip 71.141.105.6 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10079 flower src_mac 02:17:bc:15:3a:1c dst_mac 02:55:cd:6d:d3:f0 vlan_id 1014 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10080 flower src_mac 02:6b:40:06:d2:d9 dst_mac 02:c4:52:8d:8f:aa vlan_id 581 vlan_ethtype 0x0800 src_ip 35.124.17.45 dst_ip 86.216.242.95 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10081 flower src_mac 02:a7:49:2c:ae:31 dst_mac 02:b8:8f:de:ba:c5 src_ip 50.143.112.249 dst_ip 70.190.115.60 ip_proto udp src_port 64388 dst_port 3939 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10082 flower src_mac 02:67:63:41:46:16 dst_mac 02:bd:fa:4a:0d:7c vlan_id 249 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ip pref 10083 flower src_mac 02:0e:97:9f:ed:4f dst_mac 02:7c:fa:3f:eb:6d src_ip 61.49.17.236 dst_ip 27.56.176.87 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10084 flower src_mac 02:df:41:21:b2:e0 dst_mac 02:c8:84:ad:13:f8 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10085 flower src_mac 02:00:a8:3c:d3:08 dst_mac 02:c3:9a:ca:b9:a5 vlan_id 388 vlan_ethtype 0x0800 src_ip 24.15.203.199 dst_ip 47.224.253.41 ip_proto udp src_port 37852 dst_port 43573 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10086 flower src_mac 02:4c:73:ab:e6:dd dst_mac 02:e5:48:42:d0:d1 vlan_id 3125 vlan_ethtype ip src_ip 76.153.80.19 dst_ip 39.34.127.174 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10087 flower src_mac 02:aa:3f:23:6e:c8 dst_mac 02:72:23:83:75:6a action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10088 flower src_mac 02:a2:49:60:18:93 dst_mac 02:cc:b9:08:6e:65 vlan_id 3938 vlan_ethtype ip src_ip 91.150.135.98 dst_ip 47.98.51.151 ip_proto tcp src_port 17628 dst_port 53502 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10089 flower src_mac 02:80:40:45:89:b8 dst_mac 02:24:5c:23:88:32 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10090 flower src_mac 02:c6:f8:de:7d:fd dst_mac 02:0a:78:86:63:58 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10091 flower src_mac 02:23:15:41:08:07 dst_mac 02:68:a9:9c:ca:50 vlan_id 3384 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10092 flower src_mac 02:a9:7a:7c:cf:75 dst_mac 02:98:de:c9:67:04 vlan_id 714 vlan_ethtype 0x0800 src_ip 29.13.145.140 dst_ip 73.200.193.16 ip_proto tcp src_port 33142 dst_port 60472 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10093 flower src_mac 02:8c:f1:ad:bb:30 dst_mac 02:06:d3:1a:c1:8c src_ip 68.225.93.122 dst_ip 30.83.207.216 ip_proto tcp src_port 8440 dst_port 15083 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10094 flower src_mac 02:2a:61:06:08:c5 dst_mac 02:2a:47:fd:1f:25 action drop && tc filter add dev swp1 ingress protocol ip pref 10095 flower src_mac 02:bd:5e:36:6a:8c dst_mac 02:7c:52:bf:88:da src_ip 22.84.63.190 dst_ip 77.131.44.214 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10096 flower src_mac 02:22:75:8b:5d:3e dst_mac 02:8c:e9:f4:18:77 src_ip 110.102.220.236 dst_ip 61.222.163.116 ip_proto udp src_port 11939 dst_port 13843 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10097 flower src_mac 02:17:fa:d4:d2:73 dst_mac 02:1d:08:77:9a:1d action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10098 flower src_mac 02:f6:97:6b:23:b6 dst_mac 02:f9:0f:99:23:c8 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10099 flower src_mac 02:76:1e:d7:e2:96 dst_mac 02:21:e8:cd:8d:11 vlan_id 2860 vlan_ethtype ip src_ip 102.188.98.108 dst_ip 81.78.144.156 ip_proto tcp src_port 10812 dst_port 20166 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10100 flower src_mac 02:6e:b8:89:26:ee dst_mac 02:c2:85:2c:42:d2 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10101 flower src_mac 02:3e:75:4f:50:21 dst_mac 02:50:75:81:f2:65 vlan_id 3600 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10102 flower src_mac 02:d1:ee:3c:89:52 dst_mac 02:d1:09:3f:38:c0 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10103 flower src_mac 02:cc:27:7c:a8:e6 dst_mac 02:a9:16:ae:c9:bc src_ip 77.36.144.75 dst_ip 85.7.189.246 ip_proto udp src_port 36344 dst_port 31165 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10104 flower src_mac 02:da:c2:c9:d5:2e dst_mac 02:bd:57:7c:23:3f vlan_id 3769 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10105 flower src_mac 02:2b:aa:35:b1:fb dst_mac 02:cb:2f:70:20:da vlan_id 2564 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10106 flower src_mac 02:0a:c0:58:f7:05 dst_mac 02:cc:e6:56:8e:75 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10107 flower src_mac 02:d2:35:92:c4:e3 dst_mac 02:60:00:62:a8:af vlan_id 1928 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10108 flower src_mac 02:2d:a0:af:7a:27 dst_mac 02:d8:73:7c:4e:85 vlan_id 1588 vlan_ethtype 0x0800 src_ip 58.181.75.116 dst_ip 78.227.152.239 ip_proto udp src_port 63810 dst_port 57705 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10109 flower src_mac 02:4e:81:e4:b1:8c dst_mac 02:36:76:86:d0:1a action pass && tc filter add dev swp1 ingress protocol ip pref 10110 flower src_mac 02:3c:59:90:67:3c dst_mac 02:c4:c3:77:5b:1e src_ip 62.134.205.150 dst_ip 97.135.98.35 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10111 flower src_mac 02:f5:b4:87:d6:91 dst_mac 02:e1:fd:a7:c7:a6 action drop && tc filter add dev swp1 ingress protocol ip pref 10112 flower src_mac 02:76:c1:53:ee:cc dst_mac 02:cd:1a:4a:e9:b6 src_ip 13.69.26.32 dst_ip 43.73.6.195 action pass && tc filter add dev swp1 ingress protocol ip pref 10113 flower src_mac 02:16:1d:8a:8e:b5 dst_mac 02:21:39:ab:e7:e9 src_ip 86.71.188.12 dst_ip 41.189.231.228 ip_proto tcp src_port 51338 dst_port 2951 action pass && tc filter add dev swp1 ingress protocol ip pref 10114 flower src_mac 02:6a:ab:fb:1e:f7 dst_mac 02:4c:2e:cd:4a:78 src_ip 14.61.161.77 dst_ip 87.238.139.27 ip_proto udp src_port 51968 dst_port 55081 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10115 flower src_mac 02:14:97:e0:52:27 dst_mac 02:d2:32:26:77:0e action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10116 flower src_mac 02:53:40:a3:69:17 dst_mac 02:c4:36:60:4c:4b src_ip 20.205.155.29 dst_ip 41.149.235.120 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10117 flower src_mac 02:13:77:94:d8:f4 dst_mac 02:54:26:55:32:ed action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10118 flower src_mac 02:92:9c:47:71:6e dst_mac 02:f5:b4:12:8a:e9 src_ip 75.247.247.55 dst_ip 82.51.105.191 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10119 flower src_mac 02:c1:05:0f:93:ae dst_mac 02:26:59:0d:a1:27 src_ip 59.42.231.199 dst_ip 72.19.10.101 ip_proto tcp src_port 6848 dst_port 43859 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10120 flower src_mac 02:be:46:4e:e6:d9 dst_mac 02:9a:ab:4e:c7:67 vlan_id 3067 vlan_ethtype ipv4 src_ip 14.217.58.235 dst_ip 13.249.21.116 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10121 flower src_mac 02:a7:c8:dc:5f:ed dst_mac 02:32:a8:34:51:06 vlan_id 1238 vlan_ethtype ipv4 src_ip 112.241.171.44 dst_ip 25.209.113.199 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10122 flower src_mac 02:a6:31:f2:6b:f7 dst_mac 02:4a:eb:82:8e:02 vlan_id 1468 vlan_ethtype ipv4 src_ip 58.110.94.103 dst_ip 109.252.246.142 ip_proto tcp src_port 9154 dst_port 24418 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10123 flower src_mac 02:71:0b:c8:c3:79 dst_mac 02:a0:b5:56:bf:79 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10124 flower src_mac 02:3c:bf:16:65:23 dst_mac 02:72:cb:ec:0d:96 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10125 flower src_mac 02:20:b5:cf:d8:da dst_mac 02:b3:f0:50:c3:91 action pass && tc filter add dev swp1 ingress protocol ip pref 10126 flower src_mac 02:d3:30:f1:bf:b5 dst_mac 02:8a:85:df:47:af src_ip 126.8.65.234 dst_ip 51.146.62.96 ip_proto icmp code 19 type 3 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10127 flower src_mac 02:c3:ac:52:ba:e0 dst_mac 02:66:41:69:17:94 vlan_id 355 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ip pref 10128 flower src_mac 02:83:33:aa:1a:43 dst_mac 02:c6:ec:97:8d:21 src_ip 41.157.115.154 dst_ip 96.201.118.104 ip_proto icmp code 244 type 12 action pass && tc filter add dev swp1 ingress protocol ip pref 10129 flower src_mac 02:a2:59:52:04:33 dst_mac 02:9b:a4:89:c9:82 src_ip 42.36.94.109 dst_ip 76.212.157.55 ip_proto tcp src_port 35581 dst_port 37946 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10130 flower src_mac 02:f8:68:ea:43:28 dst_mac 02:0c:21:b5:d9:a0 src_ip 56.148.168.10 dst_ip 71.39.32.15 ip_proto tcp src_port 6245 dst_port 42405 action pass && tc filter add dev swp1 ingress protocol ip pref 10131 flower src_mac 02:b9:7f:bb:ed:89 dst_mac 02:8b:f2:f8:ca:ac src_ip 68.70.9.220 dst_ip 122.202.128.117 ip_proto icmp code 157 type 8 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10132 flower src_mac 02:f3:49:ec:4a:72 dst_mac 02:ac:12:e7:b4:80 vlan_id 3357 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ip pref 10133 flower src_mac 02:c2:e2:71:94:6e dst_mac 02:90:69:53:39:3f src_ip 21.224.72.16 dst_ip 102.132.219.98 ip_proto tcp src_port 61107 dst_port 19930 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10134 flower src_mac 02:50:5b:86:46:9d dst_mac 02:d6:da:25:d0:2c vlan_id 890 vlan_ethtype 0x0800 src_ip 60.235.240.174 dst_ip 69.170.52.146 ip_proto tcp src_port 65455 dst_port 3028 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10135 flower src_mac 02:1d:a9:be:93:cd dst_mac 02:ea:f7:8a:4c:ff src_ip 23.215.74.187 dst_ip 64.41.136.128 ip_proto tcp src_port 42987 dst_port 51690 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10136 flower src_mac 02:eb:04:4e:75:77 dst_mac 02:7b:e9:90:fc:af action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10137 flower src_mac 02:3d:f3:80:09:1d dst_mac 02:e7:09:c5:e5:a1 vlan_id 3920 vlan_ethtype ipv4 src_ip 55.114.193.158 dst_ip 106.192.205.161 ip_proto udp src_port 45567 dst_port 44574 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10138 flower src_mac 02:5a:df:07:41:a9 dst_mac 02:fd:b9:ae:a5:c5 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10139 flower src_mac 02:37:d6:41:65:a7 dst_mac 02:fc:5b:8f:e8:60 src_ip 80.11.220.59 dst_ip 64.77.84.145 ip_proto icmp code 252 type 16 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10140 flower src_mac 02:f5:ae:75:5b:50 dst_mac 02:56:63:a4:d9:60 vlan_id 3829 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10141 flower src_mac 02:06:5d:dc:0e:66 dst_mac 02:ae:03:4e:99:a4 vlan_id 1854 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10142 flower src_mac 02:b7:40:3d:66:ed dst_mac 02:94:4c:12:66:71 vlan_id 3428 vlan_ethtype 0x0800 src_ip 40.163.159.8 dst_ip 84.178.89.66 action trap && tc filter add dev swp1 ingress protocol ip pref 10143 flower src_mac 02:14:8c:b4:7a:c4 dst_mac 02:e3:9b:2f:77:2f src_ip 117.36.214.153 dst_ip 27.89.246.204 action pass && tc filter add dev swp1 ingress protocol ip pref 10144 flower src_mac 02:c1:49:41:d2:bc dst_mac 02:98:22:41:77:2c src_ip 102.218.16.90 dst_ip 12.171.122.154 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10145 flower src_mac 02:c5:7f:76:3f:33 dst_mac 02:89:a3:f4:5a:e7 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10146 flower src_mac 02:08:18:3c:18:51 dst_mac 02:5b:68:fb:ea:16 vlan_id 1089 vlan_ethtype ipv4 src_ip 115.228.105.165 dst_ip 60.91.76.140 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10147 flower src_mac 02:d9:a8:09:c4:24 dst_mac 02:10:51:cb:11:bc action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10148 flower src_mac 02:ee:e0:6a:e2:b4 dst_mac 02:bf:ee:fb:82:05 vlan_id 1948 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10149 flower src_mac 02:5a:5d:aa:b5:4d dst_mac 02:6e:f2:13:14:2e vlan_id 2155 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10150 flower src_mac 02:7a:d7:ed:02:93 dst_mac 02:80:48:67:e0:76 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10151 flower src_mac 02:aa:dd:c8:b1:ba dst_mac 02:a5:0e:0f:af:5f action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10152 flower src_mac 02:69:ce:8d:22:fc dst_mac 02:ca:49:83:0e:a8 vlan_id 41 vlan_ethtype 0x0800 src_ip 118.33.202.56 dst_ip 27.89.196.23 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10153 flower src_mac 02:50:fe:23:8b:f0 dst_mac 02:2a:a5:b1:52:fd vlan_id 2495 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10154 flower src_mac 02:8a:81:39:74:ef dst_mac 02:c6:6b:8a:58:ec vlan_id 2180 vlan_ethtype ip src_ip 121.51.107.154 dst_ip 57.89.61.82 ip_proto udp src_port 6313 dst_port 43306 action trap && tc filter add dev swp1 ingress protocol ip pref 10155 flower src_mac 02:6f:f4:22:19:62 dst_mac 02:e7:97:1b:0c:5f src_ip 21.233.152.171 dst_ip 87.115.66.242 ip_proto icmp code 73 type 17 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10156 flower src_mac 02:99:fb:70:36:87 dst_mac 02:49:8b:06:ca:64 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10157 flower src_mac 02:42:65:d9:5b:1b dst_mac 02:ac:2c:8c:65:12 vlan_id 3939 vlan_ethtype ipv4 src_ip 68.149.247.190 dst_ip 84.126.28.51 ip_proto udp src_port 61715 dst_port 21432 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10158 flower src_mac 02:5a:4c:fa:98:3f dst_mac 02:23:be:8d:8e:c6 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10159 flower src_mac 02:81:5e:e6:55:55 dst_mac 02:ac:12:3b:69:db vlan_id 3304 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10160 flower src_mac 02:1c:1d:93:c7:b3 dst_mac 02:f1:a3:25:9f:36 vlan_id 3266 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10161 flower src_mac 02:b7:3b:62:d2:72 dst_mac 02:99:51:a3:7c:cd vlan_id 3795 vlan_ethtype ipv4 src_ip 116.17.23.86 dst_ip 85.4.125.186 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10162 flower src_mac 02:c1:e8:da:17:48 dst_mac 02:a1:17:b5:a9:40 vlan_id 2123 vlan_ethtype 0x0800 src_ip 29.233.243.246 dst_ip 122.249.64.184 ip_proto tcp src_port 64197 dst_port 24513 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10163 flower src_mac 02:e2:c4:5f:d8:ea dst_mac 02:9f:da:ab:3c:df vlan_id 957 vlan_ethtype ipv4 src_ip 87.219.164.90 dst_ip 26.95.141.228 ip_proto udp src_port 57546 dst_port 37327 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10164 flower src_mac 02:67:26:3e:9e:76 dst_mac 02:c7:22:48:be:be vlan_id 160 vlan_ethtype 0x0800 src_ip 110.183.108.207 dst_ip 120.156.3.13 ip_proto tcp src_port 49018 dst_port 6297 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10165 flower src_mac 02:f4:59:8c:0c:12 dst_mac 02:09:7e:91:8d:b7 vlan_id 3820 vlan_ethtype ipv4 src_ip 40.220.161.157 dst_ip 36.82.51.32 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10166 flower src_mac 02:54:ab:34:f0:97 dst_mac 02:5e:46:5e:a2:2a vlan_id 3126 vlan_ethtype ipv4 src_ip 54.113.5.62 dst_ip 105.243.42.239 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10167 flower src_mac 02:c9:5d:bd:ac:b6 dst_mac 02:0a:31:02:b7:7e src_ip 46.104.190.81 dst_ip 30.219.20.198 ip_proto tcp src_port 20149 dst_port 59974 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10168 flower src_mac 02:3f:84:b4:e4:45 dst_mac 02:93:4e:09:dc:41 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10169 flower src_mac 02:59:e0:c2:b7:90 dst_mac 02:26:d3:d3:3d:f5 src_ip 55.238.172.46 dst_ip 63.229.93.85 ip_proto tcp src_port 64134 dst_port 38742 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10170 flower src_mac 02:67:81:1f:2f:df dst_mac 02:40:96:f9:20:92 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10171 flower src_mac 02:0c:57:99:bf:c0 dst_mac 02:06:0a:40:75:a8 vlan_id 3653 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10172 flower src_mac 02:92:23:e8:86:b6 dst_mac 02:6e:34:fa:9b:5b vlan_id 3031 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10173 flower src_mac 02:34:ec:21:fc:2d dst_mac 02:d8:0a:51:51:ad vlan_id 3011 vlan_ethtype ip src_ip 42.216.28.125 dst_ip 81.61.86.28 action drop && tc filter add dev swp1 ingress protocol ip pref 10174 flower src_mac 02:6d:5c:77:32:3d dst_mac 02:61:27:19:a4:a5 src_ip 46.130.229.109 dst_ip 41.88.191.167 ip_proto udp src_port 22721 dst_port 50065 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10175 flower src_mac 02:9b:c0:51:d8:58 dst_mac 02:8e:eb:40:9d:e6 vlan_id 270 vlan_ethtype ipv4 src_ip 75.52.222.173 dst_ip 80.92.205.61 ip_proto tcp src_port 4553 dst_port 20942 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10176 flower src_mac 02:b2:18:9b:cc:a6 dst_mac 02:67:57:97:b7:ac src_ip 15.59.213.151 dst_ip 92.24.204.3 ip_proto icmp code 252 type 12 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10177 flower src_mac 02:bf:d1:a8:2d:5f dst_mac 02:b1:88:0e:91:35 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10178 flower src_mac 02:fb:c5:9f:09:c0 dst_mac 02:12:07:a9:96:7b vlan_id 2397 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10179 flower src_mac 02:bd:37:56:fe:08 dst_mac 02:37:50:c1:83:3d vlan_id 3758 vlan_ethtype ip src_ip 79.53.92.28 dst_ip 25.240.216.22 ip_proto udp src_port 10587 dst_port 26757 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10180 flower src_mac 02:74:1a:31:11:e0 dst_mac 02:5a:5c:bc:ac:82 vlan_id 2099 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10181 flower src_mac 02:99:ca:07:4c:ed dst_mac 02:ae:3e:d1:2e:0b vlan_id 3238 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10182 flower src_mac 02:3d:e9:be:27:1c dst_mac 02:8e:74:04:67:6c vlan_id 1465 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ip pref 10183 flower src_mac 02:ab:01:e3:22:35 dst_mac 02:79:5f:2a:f4:88 src_ip 17.109.224.205 dst_ip 118.67.172.236 ip_proto udp src_port 17757 dst_port 8345 action drop && tc filter add dev swp1 ingress protocol ip pref 10184 flower src_mac 02:e4:83:61:52:61 dst_mac 02:0e:e4:15:9a:96 src_ip 11.240.21.42 dst_ip 93.7.69.162 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10185 flower src_mac 02:a4:1a:94:f2:fd dst_mac 02:f1:05:ef:4d:cc src_ip 35.140.99.152 dst_ip 101.42.236.213 ip_proto udp src_port 59565 dst_port 9120 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10186 flower src_mac 02:9f:c7:fa:23:3e dst_mac 02:e8:05:da:6b:00 vlan_id 476 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10187 flower src_mac 02:81:fc:09:3b:c0 dst_mac 02:10:c1:4e:c6:4f vlan_id 3824 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10188 flower src_mac 02:bd:e7:f8:21:3d dst_mac 02:ce:56:1f:7d:0c vlan_id 2368 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10189 flower src_mac 02:ec:44:14:42:d8 dst_mac 02:cd:81:52:32:d3 src_ip 29.12.49.142 dst_ip 92.80.192.41 ip_proto tcp src_port 25258 dst_port 54700 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10190 flower src_mac 02:de:21:62:4f:f8 dst_mac 02:2b:0c:1c:31:3c action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10191 flower src_mac 02:42:2e:a7:3d:39 dst_mac 02:07:1d:83:50:18 vlan_id 2887 vlan_ethtype 0x0800 src_ip 117.7.88.156 dst_ip 44.250.101.68 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10192 flower src_mac 02:e6:d1:16:47:2c dst_mac 02:79:6c:5b:23:4c vlan_id 1404 vlan_ethtype 0x0800 src_ip 24.115.248.212 dst_ip 65.104.10.45 ip_proto tcp src_port 37538 dst_port 32173 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10193 flower src_mac 02:ab:67:5b:65:2c dst_mac 02:c1:03:7d:54:33 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10194 flower src_mac 02:07:ca:98:32:43 dst_mac 02:25:be:bb:33:d7 vlan_id 3943 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10195 flower src_mac 02:c4:15:67:f7:76 dst_mac 02:33:46:d9:64:79 src_ip 54.126.188.134 dst_ip 45.153.152.9 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10196 flower src_mac 02:4f:3f:cd:28:6b dst_mac 02:e8:72:ec:4e:95 vlan_id 3592 vlan_ethtype ipv4 src_ip 15.96.18.200 dst_ip 36.13.148.136 ip_proto tcp src_port 28721 dst_port 54740 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10197 flower src_mac 02:91:54:0d:72:58 dst_mac 02:e3:02:22:5a:e4 src_ip 105.188.255.47 dst_ip 13.97.99.217 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10198 flower src_mac 02:04:66:82:fb:76 dst_mac 02:b6:b6:85:e3:f9 src_ip 15.12.201.202 dst_ip 116.136.174.35 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10199 flower src_mac 02:c7:b3:13:66:7d dst_mac 02:70:74:ac:bb:0b src_ip 72.175.14.172 dst_ip 68.101.48.43 ip_proto udp src_port 49657 dst_port 29489 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10200 flower src_mac 02:26:48:8e:e5:68 dst_mac 02:4b:fe:09:22:cf src_ip 58.176.47.225 dst_ip 125.219.184.221 ip_proto icmp code 107 type 18 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10201 flower src_mac 02:12:ba:2d:07:70 dst_mac 02:4a:ad:af:9e:5c action pass && tc filter add dev swp1 ingress protocol ip pref 10202 flower src_mac 02:11:f7:ae:a9:ad dst_mac 02:67:b3:19:1b:1b src_ip 106.62.173.247 dst_ip 106.108.195.134 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10203 flower src_mac 02:0b:77:e1:c0:9f dst_mac 02:b3:d0:f4:2f:a8 vlan_id 1433 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10204 flower src_mac 02:e2:55:1a:3d:65 dst_mac 02:ee:17:de:c9:b4 src_ip 13.35.197.246 dst_ip 73.192.92.42 ip_proto icmp code 175 type 3 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10205 flower src_mac 02:ae:b7:f1:b0:89 dst_mac 02:35:2f:4c:d6:01 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10206 flower src_mac 02:a0:0f:0a:21:8f dst_mac 02:0a:7a:b7:90:fc vlan_id 3399 vlan_ethtype ipv4 src_ip 48.0.182.18 dst_ip 33.239.217.227 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10207 flower src_mac 02:1d:69:37:83:87 dst_mac 02:7c:2e:1a:f8:65 vlan_id 3554 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10208 flower src_mac 02:e1:e9:95:bb:ee dst_mac 02:21:1c:73:ee:e8 vlan_id 2059 vlan_ethtype ip src_ip 14.139.156.121 dst_ip 46.4.52.168 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10209 flower src_mac 02:f2:a5:83:d6:c9 dst_mac 02:a7:c0:a7:a5:1d action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10210 flower src_mac 02:6f:a9:80:4a:7e dst_mac 02:66:9d:35:44:c0 vlan_id 365 vlan_ethtype ipv4 src_ip 53.124.148.20 dst_ip 75.192.228.140 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10211 flower src_mac 02:6c:d4:c8:50:e7 dst_mac 02:12:fb:aa:47:89 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10212 flower src_mac 02:5a:dc:c6:e1:48 dst_mac 02:b8:82:e7:7c:1a action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10213 flower src_mac 02:ef:c8:de:8f:e3 dst_mac 02:0e:d2:ec:28:e6 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10214 flower src_mac 02:0e:e7:c3:c4:18 dst_mac 02:9e:c2:ca:3d:7b action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10215 flower src_mac 02:09:7d:80:c4:0f dst_mac 02:70:a6:fd:98:dd vlan_id 3144 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10216 flower src_mac 02:4d:07:dc:ca:fd dst_mac 02:ec:60:cb:fd:b2 vlan_id 2806 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ip pref 10217 flower src_mac 02:1b:ee:8e:06:0a dst_mac 02:48:a2:74:44:be src_ip 103.149.213.173 dst_ip 114.221.238.63 ip_proto udp src_port 3035 dst_port 15306 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10218 flower src_mac 02:12:d4:16:3d:65 dst_mac 02:a3:c1:2b:90:3a action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10219 flower src_mac 02:f4:76:8b:4e:96 dst_mac 02:2f:ec:98:fe:a3 vlan_id 2356 vlan_ethtype 0x0800 src_ip 64.225.203.99 dst_ip 117.157.156.243 ip_proto udp src_port 21573 dst_port 26597 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10220 flower src_mac 02:e8:05:f6:c1:d6 dst_mac 02:77:39:83:76:bb action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10221 flower src_mac 02:ac:45:78:08:bb dst_mac 02:14:dd:7d:e0:8f vlan_id 2682 vlan_ethtype 0x0800 src_ip 50.145.0.96 dst_ip 58.8.7.119 ip_proto udp src_port 10493 dst_port 59543 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10222 flower src_mac 02:3a:8e:2b:fe:c2 dst_mac 02:56:6e:f0:45:3c action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10223 flower src_mac 02:32:44:5a:e7:f7 dst_mac 02:a0:2d:56:fa:7b vlan_id 222 vlan_ethtype ipv4 src_ip 63.254.60.123 dst_ip 106.196.67.217 ip_proto udp src_port 44187 dst_port 39040 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10224 flower src_mac 02:bc:6f:20:c8:d7 dst_mac 02:4e:93:5d:a2:01 vlan_id 2014 vlan_ethtype ipv4 src_ip 93.39.133.121 dst_ip 26.47.142.179 ip_proto udp src_port 47941 dst_port 31969 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10225 flower src_mac 02:ce:c9:30:5e:d1 dst_mac 02:3d:7e:81:53:43 vlan_id 2885 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10226 flower src_mac 02:7b:fd:31:76:ab dst_mac 02:70:cc:27:6c:31 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10227 flower src_mac 02:c4:99:07:5b:c5 dst_mac 02:ed:2a:04:40:d7 action pass && tc filter add dev swp1 ingress protocol ip pref 10228 flower src_mac 02:ec:2a:38:83:d7 dst_mac 02:31:3e:f1:67:08 src_ip 117.240.85.246 dst_ip 86.193.47.108 ip_proto udp src_port 58814 dst_port 45068 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10229 flower src_mac 02:da:aa:c5:b2:1d dst_mac 02:6a:75:7b:54:ea vlan_id 3903 vlan_ethtype 0x0800 src_ip 53.132.255.250 dst_ip 22.172.252.134 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10230 flower src_mac 02:fa:32:fe:46:e9 dst_mac 02:50:e6:82:53:9f vlan_id 2670 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10231 flower src_mac 02:be:f3:6e:41:23 dst_mac 02:b7:e4:b9:6f:c6 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10232 flower src_mac 02:f6:8d:48:39:f7 dst_mac 02:72:d3:cf:a8:37 vlan_id 2287 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10233 flower src_mac 02:2e:16:72:20:69 dst_mac 02:25:bc:69:ed:a7 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10234 flower src_mac 02:d1:f4:67:a4:c7 dst_mac 02:18:a2:be:f6:58 vlan_id 728 vlan_ethtype ip src_ip 45.216.170.117 dst_ip 72.183.7.162 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10235 flower src_mac 02:1b:b1:71:27:fa dst_mac 02:35:2f:3f:63:5f action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10236 flower src_mac 02:18:60:0e:41:bb dst_mac 02:cc:0e:cd:c2:f2 src_ip 94.89.238.77 dst_ip 11.139.146.135 ip_proto udp src_port 56827 dst_port 62200 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10237 flower src_mac 02:0e:23:06:5c:d3 dst_mac 02:14:99:ce:8a:ad action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10238 flower src_mac 02:15:dd:e3:ec:26 dst_mac 02:7c:73:81:30:c4 action trap && tc filter add dev swp1 ingress protocol ip pref 10239 flower src_mac 02:9c:ca:46:de:1a dst_mac 02:89:fb:e4:dc:9a src_ip 78.127.132.67 dst_ip 24.78.3.104 ip_proto icmp code 122 type 12 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10240 flower src_mac 02:bc:67:d1:b0:a0 dst_mac 02:cf:e8:ec:26:2d action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10241 flower src_mac 02:1f:81:91:f2:dd dst_mac 02:6c:09:aa:2f:bb src_ip 112.182.51.48 dst_ip 70.0.176.62 ip_proto tcp src_port 14433 dst_port 10069 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10242 flower src_mac 02:02:4f:46:95:1a dst_mac 02:b0:aa:d7:1c:65 src_ip 79.172.74.132 dst_ip 109.141.73.227 ip_proto udp src_port 13736 dst_port 56784 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10243 flower src_mac 02:de:70:41:d9:04 dst_mac 02:c6:ef:e0:a7:49 src_ip 117.214.113.210 dst_ip 84.69.66.160 ip_proto tcp src_port 46959 dst_port 21743 action drop && tc filter add dev swp1 ingress protocol ip pref 10244 flower src_mac 02:f5:36:04:3b:fc dst_mac 02:83:28:50:7c:36 src_ip 52.182.132.109 dst_ip 64.18.47.218 ip_proto tcp src_port 57383 dst_port 7340 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10245 flower src_mac 02:3c:0a:f8:49:e6 dst_mac 02:e4:d6:4e:87:b6 vlan_id 2118 vlan_ethtype ip src_ip 81.4.241.214 dst_ip 79.7.88.61 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10246 flower src_mac 02:d4:6c:7c:77:c5 dst_mac 02:ef:d5:01:85:c2 vlan_id 32 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10247 flower src_mac 02:89:ae:77:e4:63 dst_mac 02:fc:02:aa:9b:cb action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10248 flower src_mac 02:53:84:1b:99:4b dst_mac 02:c1:d2:07:b1:5b action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10249 flower src_mac 02:fa:2f:17:92:db dst_mac 02:e2:c6:a8:3a:14 vlan_id 874 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10250 flower src_mac 02:5c:4b:14:d6:71 dst_mac 02:e5:c7:34:eb:28 vlan_id 3564 vlan_ethtype 0x0800 src_ip 90.146.10.148 dst_ip 79.0.204.2 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10251 flower src_mac 02:ae:b7:9c:b4:a0 dst_mac 02:e4:68:80:5a:0c vlan_id 3102 vlan_ethtype ipv4 src_ip 55.42.111.234 dst_ip 33.27.60.226 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10252 flower src_mac 02:db:87:4b:83:a1 dst_mac 02:d7:9b:ac:77:c5 vlan_id 3031 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10253 flower src_mac 02:43:52:9b:a2:42 dst_mac 02:7d:72:6e:76:a0 src_ip 32.134.131.207 dst_ip 123.7.52.47 ip_proto icmp code 78 type 5 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10254 flower src_mac 02:2c:73:d2:91:8a dst_mac 02:de:aa:6e:86:72 vlan_id 3457 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10255 flower src_mac 02:64:a0:3c:a6:46 dst_mac 02:2e:a8:cc:08:a0 vlan_id 3641 vlan_ethtype ipv4 src_ip 27.180.30.44 dst_ip 90.137.120.70 ip_proto tcp src_port 58975 dst_port 19625 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10256 flower src_mac 02:e7:09:5c:57:0c dst_mac 02:8d:73:0b:01:0f action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10257 flower src_mac 02:43:44:8b:c4:20 dst_mac 02:b4:35:d5:45:82 src_ip 61.55.55.151 dst_ip 45.187.136.143 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10258 flower src_mac 02:66:02:97:5b:af dst_mac 02:33:ca:36:27:40 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10259 flower src_mac 02:af:e3:c3:d0:e1 dst_mac 02:b6:22:f1:47:3c vlan_id 3306 vlan_ethtype ip src_ip 71.95.8.4 dst_ip 78.32.27.165 ip_proto udp src_port 62506 dst_port 36673 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10260 flower src_mac 02:ab:f4:40:f5:0f dst_mac 02:1d:06:9d:ff:f4 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10261 flower src_mac 02:22:f9:b6:98:95 dst_mac 02:5b:b3:78:cf:3d vlan_id 1539 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10262 flower src_mac 02:5d:c6:5c:36:e4 dst_mac 02:72:6b:13:13:7b vlan_id 2003 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10263 flower src_mac 02:86:d1:02:6a:9c dst_mac 02:12:5b:9f:00:98 vlan_id 4025 vlan_ethtype ipv4 src_ip 59.148.180.2 dst_ip 51.139.193.50 ip_proto tcp src_port 15520 dst_port 34972 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10264 flower src_mac 02:d2:68:ed:c7:ee dst_mac 02:a7:29:be:67:bc src_ip 81.126.213.244 dst_ip 32.254.210.145 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10265 flower src_mac 02:3b:76:be:08:63 dst_mac 02:e3:6c:7d:09:6e vlan_id 2308 vlan_ethtype ipv4 src_ip 125.175.214.95 dst_ip 118.182.14.119 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10266 flower src_mac 02:8a:c3:d4:ca:f0 dst_mac 02:29:78:98:05:a2 vlan_id 3196 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10267 flower src_mac 02:51:03:7c:03:97 dst_mac 02:34:1b:a6:c8:e2 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10268 flower src_mac 02:74:ee:2b:a5:a9 dst_mac 02:90:68:03:cb:f4 vlan_id 580 vlan_ethtype ipv4 src_ip 104.202.144.186 dst_ip 82.0.68.41 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10269 flower src_mac 02:d7:b6:fb:46:1f dst_mac 02:6c:78:23:3c:f6 src_ip 57.42.214.113 dst_ip 101.99.23.56 ip_proto udp src_port 63038 dst_port 21667 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10270 flower src_mac 02:16:27:d3:01:08 dst_mac 02:70:60:3c:f0:bf vlan_id 2719 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10271 flower src_mac 02:3f:9e:4c:18:91 dst_mac 02:8b:33:03:a1:1b vlan_id 1240 vlan_ethtype 0x0800 src_ip 50.241.133.103 dst_ip 44.142.24.6 ip_proto udp src_port 58520 dst_port 15868 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10272 flower src_mac 02:37:fc:a8:bd:4a dst_mac 02:75:c2:19:89:5d src_ip 81.63.205.140 dst_ip 43.55.249.174 ip_proto udp src_port 46124 dst_port 9039 action trap && tc filter add dev swp1 ingress protocol ip pref 10273 flower src_mac 02:b6:70:45:d2:19 dst_mac 02:4c:72:98:98:13 src_ip 99.226.145.213 dst_ip 75.133.198.177 action trap && tc filter add dev swp1 ingress protocol ip pref 10274 flower src_mac 02:89:e6:69:89:2e dst_mac 02:5d:f8:31:53:d2 src_ip 20.100.247.123 dst_ip 16.27.139.153 ip_proto tcp src_port 47195 dst_port 34122 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10275 flower src_mac 02:d8:98:45:60:bc dst_mac 02:3a:cc:c6:b6:54 vlan_id 4084 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10276 flower src_mac 02:a1:00:04:34:2a dst_mac 02:c1:2e:6e:60:9d vlan_id 2644 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10277 flower src_mac 02:72:20:00:7c:cb dst_mac 02:a5:0d:62:a8:72 vlan_id 3925 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10278 flower src_mac 02:17:51:de:bb:af dst_mac 02:cf:fd:a1:de:c2 vlan_id 2612 vlan_ethtype ipv4 src_ip 114.150.88.58 dst_ip 81.33.190.237 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10279 flower src_mac 02:0f:6b:de:93:20 dst_mac 02:c0:5c:39:6f:6f vlan_id 11 vlan_ethtype ip src_ip 59.45.9.64 dst_ip 21.88.177.96 ip_proto tcp src_port 39153 dst_port 33 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10280 flower src_mac 02:12:44:d9:c6:0c dst_mac 02:e6:c4:fd:05:95 vlan_id 4057 vlan_ethtype ipv4 src_ip 114.54.41.81 dst_ip 95.37.3.28 ip_proto udp src_port 5960 dst_port 64000 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10281 flower src_mac 02:8e:69:d2:8b:43 dst_mac 02:ee:6e:dd:bd:2d vlan_id 2278 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10282 flower src_mac 02:68:d8:49:14:b5 dst_mac 02:5c:b7:67:08:5e vlan_id 2249 vlan_ethtype ip src_ip 120.133.116.188 dst_ip 70.173.251.19 ip_proto udp src_port 58405 dst_port 14863 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10283 flower src_mac 02:e8:2d:4e:5c:b0 dst_mac 02:8f:80:a8:c3:c8 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10284 flower src_mac 02:3f:99:9c:c3:46 dst_mac 02:7f:b2:b9:93:70 vlan_id 341 vlan_ethtype 0x0800 src_ip 97.61.50.187 dst_ip 55.250.149.95 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10285 flower src_mac 02:0c:a6:c8:01:4e dst_mac 02:7f:6c:00:e0:06 vlan_id 2717 vlan_ethtype 0x0800 src_ip 85.186.193.85 dst_ip 17.89.60.174 action drop && tc filter add dev swp1 ingress protocol ip pref 10286 flower src_mac 02:8e:19:50:53:92 dst_mac 02:e0:84:42:53:e3 src_ip 79.214.209.123 dst_ip 52.236.198.244 ip_proto icmp code 231 type 4 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10287 flower src_mac 02:d6:27:5b:11:7b dst_mac 02:17:25:e8:6c:c9 vlan_id 2960 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ip pref 10288 flower src_mac 02:35:ea:c5:92:30 dst_mac 02:75:00:6b:cf:a1 src_ip 61.182.164.147 dst_ip 56.143.210.7 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10289 flower src_mac 02:e3:f0:f3:ea:ab dst_mac 02:2b:94:03:86:a5 src_ip 98.74.189.113 dst_ip 92.254.124.141 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10290 flower src_mac 02:e7:7e:69:02:ec dst_mac 02:a3:3e:a1:da:53 vlan_id 107 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10291 flower src_mac 02:bf:31:e2:7f:8b dst_mac 02:c9:99:ba:f5:13 vlan_id 2715 vlan_ethtype 0x0800 src_ip 98.228.133.112 dst_ip 103.142.5.41 ip_proto udp src_port 39405 dst_port 35277 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10292 flower src_mac 02:14:cd:33:fd:ba dst_mac 02:8e:1d:fc:3d:15 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10293 flower src_mac 02:6e:d8:8b:f7:89 dst_mac 02:3b:cb:6b:0a:a4 vlan_id 1562 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10294 flower src_mac 02:88:37:75:f5:f5 dst_mac 02:6c:d8:7b:5d:14 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10295 flower src_mac 02:a9:58:8e:a1:a7 dst_mac 02:88:8d:a3:a5:ed vlan_id 2806 vlan_ethtype 0x0800 src_ip 98.37.249.64 dst_ip 78.154.232.191 ip_proto udp src_port 48043 dst_port 63552 action pass && tc filter add dev swp1 ingress protocol ip pref 10296 flower src_mac 02:5a:b1:05:fa:70 dst_mac 02:fe:2a:4f:61:13 src_ip 62.87.248.63 dst_ip 85.150.139.48 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10297 flower src_mac 02:af:49:3f:4b:52 dst_mac 02:18:71:32:fc:01 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10298 flower src_mac 02:d2:c9:45:6d:2c dst_mac 02:d8:d6:37:90:23 vlan_id 581 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10299 flower src_mac 02:87:28:b9:65:12 dst_mac 02:50:54:ce:cb:90 vlan_id 3658 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10300 flower src_mac 02:eb:fa:2b:3d:cf dst_mac 02:4c:f0:ac:00:a5 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10301 flower src_mac 02:cc:95:6b:47:b7 dst_mac 02:9f:dc:f1:0c:5a src_ip 78.24.73.147 dst_ip 74.63.83.186 ip_proto udp src_port 65374 dst_port 19164 action trap && tc filter add dev swp1 ingress protocol ip pref 10302 flower src_mac 02:71:c9:96:33:ff dst_mac 02:28:4f:b8:cf:a6 src_ip 65.109.244.167 dst_ip 36.30.67.15 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10303 flower src_mac 02:be:63:04:25:91 dst_mac 02:3b:ed:2d:88:4e vlan_id 136 vlan_ethtype ip src_ip 113.73.96.124 dst_ip 64.142.127.185 ip_proto tcp src_port 60772 dst_port 62940 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10304 flower src_mac 02:ac:ee:ed:c5:33 dst_mac 02:32:66:14:ce:5d src_ip 55.163.80.27 dst_ip 116.119.60.70 ip_proto icmp code 5 type 0 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10305 flower src_mac 02:00:f2:35:07:97 dst_mac 02:a8:68:ed:8f:00 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10306 flower src_mac 02:28:85:3a:ab:89 dst_mac 02:6c:12:10:a0:78 vlan_id 1728 vlan_ethtype ipv4 src_ip 50.238.29.2 dst_ip 49.224.199.57 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10307 flower src_mac 02:8f:b5:ba:f8:3b dst_mac 02:18:b6:ea:2e:5d action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10308 flower src_mac 02:87:87:67:e9:9b dst_mac 02:4c:85:e1:79:92 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10309 flower src_mac 02:3a:5b:05:cc:9d dst_mac 02:45:a0:96:d9:b5 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10310 flower src_mac 02:3c:78:87:70:ef dst_mac 02:4f:ea:29:b3:8c vlan_id 1749 vlan_ethtype ipv4 src_ip 77.31.245.92 dst_ip 26.79.211.42 ip_proto udp src_port 40181 dst_port 26122 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10311 flower src_mac 02:be:cb:78:36:b4 dst_mac 02:04:26:2b:2e:a9 vlan_id 3964 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ip pref 10312 flower src_mac 02:36:33:11:4d:3c dst_mac 02:66:ab:dc:fd:35 src_ip 106.191.251.245 dst_ip 43.122.6.30 ip_proto udp src_port 24378 dst_port 45086 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10313 flower src_mac 02:58:e1:bc:e5:da dst_mac 02:44:72:1c:62:5a vlan_id 645 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10314 flower src_mac 02:5a:ae:62:fd:28 dst_mac 02:cc:8a:5a:5a:34 vlan_id 3695 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10315 flower src_mac 02:9b:fc:4e:3e:ca dst_mac 02:17:33:93:1d:6d vlan_id 1133 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10316 flower src_mac 02:df:c1:de:74:06 dst_mac 02:f8:e8:5b:b8:74 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10317 flower src_mac 02:3b:5b:ee:bd:75 dst_mac 02:d1:37:e6:0c:47 vlan_id 3336 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10318 flower src_mac 02:17:a8:e5:00:d5 dst_mac 02:c7:18:a8:e3:62 vlan_id 1174 vlan_ethtype 0x0800 src_ip 36.5.17.230 dst_ip 19.122.54.43 ip_proto tcp src_port 64794 dst_port 37625 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10319 flower src_mac 02:8c:ee:e2:80:41 dst_mac 02:22:60:44:61:9e vlan_id 2689 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10320 flower src_mac 02:ed:0f:94:11:0b dst_mac 02:95:bd:7c:de:bc vlan_id 1203 vlan_ethtype ipv4 src_ip 24.134.187.83 dst_ip 86.236.238.37 ip_proto tcp src_port 15477 dst_port 56958 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10321 flower src_mac 02:cc:eb:0b:59:66 dst_mac 02:6b:1a:39:a9:33 src_ip 33.219.234.132 dst_ip 18.157.153.133 ip_proto udp src_port 25871 dst_port 39088 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10322 flower src_mac 02:71:df:2c:7a:da dst_mac 02:cc:bb:3e:74:ca src_ip 103.27.148.229 dst_ip 126.29.173.74 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10323 flower src_mac 02:54:01:a1:b0:aa dst_mac 02:87:8b:6b:22:3c src_ip 73.52.163.85 dst_ip 19.64.133.146 ip_proto udp src_port 33673 dst_port 19744 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10324 flower src_mac 02:51:7d:25:30:a7 dst_mac 02:6f:d4:87:4c:72 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10325 flower src_mac 02:49:7f:e9:f8:19 dst_mac 02:f8:8c:46:55:bd vlan_id 93 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10326 flower src_mac 02:10:47:dd:62:70 dst_mac 02:30:e7:ff:49:5f vlan_id 203 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10327 flower src_mac 02:c3:dc:61:63:9c dst_mac 02:9d:1d:0b:6f:be vlan_id 1505 vlan_ethtype ip src_ip 64.127.115.170 dst_ip 104.124.52.82 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10328 flower src_mac 02:42:43:26:ab:9c dst_mac 02:3f:29:94:43:05 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10329 flower src_mac 02:08:cd:d8:7c:7b dst_mac 02:2b:b4:56:78:6d vlan_id 21 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10330 flower src_mac 02:5a:dc:2d:f5:0d dst_mac 02:a5:88:98:bd:7a vlan_id 3329 vlan_ethtype ip src_ip 93.150.145.58 dst_ip 27.35.35.189 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10331 flower src_mac 02:9d:c7:17:64:bc dst_mac 02:2f:95:e7:ab:36 vlan_id 201 vlan_ethtype 0x0800 src_ip 15.76.209.77 dst_ip 83.167.135.155 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10332 flower src_mac 02:84:b6:6a:79:d7 dst_mac 02:2e:fb:d8:52:a7 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10333 flower src_mac 02:3e:5e:67:ef:1a dst_mac 02:91:b6:cd:52:36 src_ip 61.196.31.20 dst_ip 34.53.135.139 ip_proto icmp code 251 type 11 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10334 flower src_mac 02:83:a6:9e:64:43 dst_mac 02:7c:2e:7e:67:87 vlan_id 3943 vlan_ethtype ipv4 src_ip 45.52.145.224 dst_ip 98.241.235.14 action trap && tc filter add dev swp1 ingress protocol ip pref 10335 flower src_mac 02:fe:27:24:d0:3e dst_mac 02:c0:34:95:07:9a src_ip 40.160.107.55 dst_ip 49.247.205.240 ip_proto tcp src_port 42628 dst_port 14448 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10336 flower src_mac 02:ca:f1:88:31:88 dst_mac 02:4a:a3:65:a8:dc action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10337 flower src_mac 02:ed:e3:00:6b:45 dst_mac 02:59:c6:de:c6:53 vlan_id 3326 vlan_ethtype ipv4 src_ip 118.211.108.183 dst_ip 65.62.179.129 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10338 flower src_mac 02:4a:39:f5:1d:2f dst_mac 02:0a:e5:da:d9:c7 vlan_id 1697 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10339 flower src_mac 02:65:68:f2:36:57 dst_mac 02:ee:77:df:97:bb vlan_id 2396 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10340 flower src_mac 02:9b:58:14:ba:63 dst_mac 02:a8:8e:5b:c2:30 vlan_id 2365 vlan_ethtype 0x0800 src_ip 51.210.95.10 dst_ip 40.3.32.20 ip_proto udp src_port 14228 dst_port 55835 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10341 flower src_mac 02:a1:3b:8a:4c:fc dst_mac 02:01:72:08:db:4c vlan_id 3253 vlan_ethtype 0x0800 src_ip 90.70.45.90 dst_ip 42.70.243.38 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10342 flower src_mac 02:a2:c9:d9:62:dd dst_mac 02:81:9a:27:0f:3e vlan_id 1682 vlan_ethtype 0x0800 src_ip 67.199.52.146 dst_ip 109.166.4.231 ip_proto udp src_port 6130 dst_port 61132 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10343 flower src_mac 02:9a:5e:56:26:e0 dst_mac 02:01:3d:6d:5a:b7 vlan_id 212 vlan_ethtype ipv4 src_ip 26.185.75.198 dst_ip 88.10.29.179 action pass && tc filter add dev swp1 ingress protocol ip pref 10344 flower src_mac 02:17:88:0a:f9:e4 dst_mac 02:ba:ca:a2:34:cb src_ip 107.6.58.68 dst_ip 70.12.140.205 ip_proto udp src_port 56654 dst_port 32507 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10345 flower src_mac 02:78:8f:9c:22:48 dst_mac 02:a8:eb:95:8e:29 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10346 flower src_mac 02:00:0a:8e:27:e4 dst_mac 02:09:21:da:9e:20 vlan_id 3860 vlan_ethtype ip src_ip 82.4.110.104 dst_ip 119.159.94.90 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10347 flower src_mac 02:18:b8:0a:ac:08 dst_mac 02:be:89:be:6e:c7 vlan_id 1313 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10348 flower src_mac 02:03:74:33:fb:79 dst_mac 02:42:e0:21:43:6a src_ip 65.161.198.247 dst_ip 80.171.247.197 ip_proto icmp code 198 type 15 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10349 flower src_mac 02:54:fc:2a:e9:d7 dst_mac 02:e5:38:39:c9:77 src_ip 14.47.172.119 dst_ip 67.108.100.250 ip_proto udp src_port 10607 dst_port 1108 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10350 flower src_mac 02:03:8c:3f:67:54 dst_mac 02:cd:fa:38:06:a1 vlan_id 14 vlan_ethtype 0x0800 src_ip 42.249.97.107 dst_ip 36.167.80.207 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10351 flower src_mac 02:4d:40:8e:39:d3 dst_mac 02:7d:d1:c1:c0:50 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10352 flower src_mac 02:f1:06:56:e4:e4 dst_mac 02:db:81:31:7a:54 vlan_id 1893 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10353 flower src_mac 02:22:3d:2e:d5:fb dst_mac 02:dd:b5:c6:01:40 src_ip 57.59.109.226 dst_ip 34.210.220.163 ip_proto tcp src_port 50313 dst_port 47239 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10354 flower src_mac 02:a4:15:56:ab:91 dst_mac 02:cb:14:dc:ad:f8 vlan_id 3199 vlan_ethtype 0x0800 src_ip 39.54.64.192 dst_ip 51.154.56.115 ip_proto tcp src_port 17187 dst_port 31361 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10355 flower src_mac 02:30:ab:67:6b:26 dst_mac 02:4c:ba:b9:23:21 src_ip 110.177.32.131 dst_ip 66.101.65.114 ip_proto icmp code 134 type 11 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10356 flower src_mac 02:8e:03:ee:19:b3 dst_mac 02:c4:29:db:24:5d vlan_id 3074 vlan_ethtype ipv4 src_ip 68.132.46.33 dst_ip 14.11.67.181 ip_proto tcp src_port 39376 dst_port 38696 action trap && tc filter add dev swp1 ingress protocol ip pref 10357 flower src_mac 02:16:52:42:08:89 dst_mac 02:4d:2c:20:73:15 src_ip 124.75.143.215 dst_ip 70.98.6.134 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10358 flower src_mac 02:30:68:40:72:9a dst_mac 02:bc:95:b6:60:f7 vlan_id 3 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10359 flower src_mac 02:b4:d3:70:28:15 dst_mac 02:97:17:b6:18:13 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10360 flower src_mac 02:44:e1:a0:a6:da dst_mac 02:ed:ac:ba:ec:7a action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10361 flower src_mac 02:b0:b6:20:29:6c dst_mac 02:55:61:e9:fe:f1 vlan_id 718 vlan_ethtype ip src_ip 60.10.2.177 dst_ip 73.109.175.212 action pass && tc filter add dev swp1 ingress protocol ip pref 10362 flower src_mac 02:17:7c:dd:c2:2c dst_mac 02:92:b8:55:17:27 src_ip 104.58.166.137 dst_ip 13.179.253.11 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10363 flower src_mac 02:8c:fb:24:9c:6a dst_mac 02:ea:6d:6a:74:1d vlan_id 3234 vlan_ethtype ipv4 src_ip 117.115.185.250 dst_ip 91.9.76.156 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10364 flower src_mac 02:24:fb:77:ce:06 dst_mac 02:b6:66:f9:b9:34 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10365 flower src_mac 02:d9:0a:96:9c:a8 dst_mac 02:ff:9b:dc:57:54 src_ip 44.220.207.95 dst_ip 69.129.159.123 ip_proto udp src_port 63770 dst_port 35565 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10366 flower src_mac 02:5c:25:f0:06:a0 dst_mac 02:26:df:b2:3b:61 src_ip 75.84.89.92 dst_ip 115.48.31.209 ip_proto icmp code 234 type 11 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10367 flower src_mac 02:2c:77:8c:f7:80 dst_mac 02:5a:99:d3:c5:d9 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10368 flower src_mac 02:02:55:01:e8:b9 dst_mac 02:81:47:a0:34:92 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10369 flower src_mac 02:0c:94:cc:f3:4b dst_mac 02:f6:d3:8c:23:1d src_ip 67.220.160.16 dst_ip 65.220.7.220 ip_proto icmp code 94 type 14 action pass && tc filter add dev swp1 ingress protocol ip pref 10370 flower src_mac 02:f9:a4:2c:92:8f dst_mac 02:8e:a5:e4:e4:3b src_ip 119.55.73.83 dst_ip 20.159.66.46 ip_proto icmp code 116 type 8 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10371 flower src_mac 02:43:30:60:fc:3d dst_mac 02:07:70:77:7c:8c vlan_id 2473 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10372 flower src_mac 02:65:e9:f5:a9:25 dst_mac 02:93:9c:01:29:56 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10373 flower src_mac 02:51:98:8b:1a:30 dst_mac 02:c6:54:bb:39:25 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10374 flower src_mac 02:a7:83:d3:73:f1 dst_mac 02:57:ff:b3:6f:cf action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10375 flower src_mac 02:0e:62:c2:de:a2 dst_mac 02:fe:ff:e4:e1:c9 src_ip 55.48.14.117 dst_ip 87.188.242.140 ip_proto icmp code 5 type 13 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10376 flower src_mac 02:78:01:cd:49:d4 dst_mac 02:66:86:f6:12:4f vlan_id 1392 vlan_ethtype ipv4 src_ip 96.63.172.38 dst_ip 86.242.159.53 ip_proto tcp src_port 53410 dst_port 38712 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10377 flower src_mac 02:a3:da:6e:ff:c7 dst_mac 02:bf:31:07:be:b2 src_ip 122.41.181.100 dst_ip 76.116.57.215 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10378 flower src_mac 02:f7:21:7b:56:02 dst_mac 02:33:12:12:d5:10 src_ip 103.157.52.230 dst_ip 71.218.32.14 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10379 flower src_mac 02:1e:4f:f0:1a:b2 dst_mac 02:e2:61:19:e2:ca vlan_id 1129 vlan_ethtype ip src_ip 66.67.82.34 dst_ip 17.82.179.157 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10380 flower src_mac 02:31:b8:34:c5:ec dst_mac 02:96:aa:29:7b:47 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10381 flower src_mac 02:30:68:74:f5:ad dst_mac 02:c3:13:e6:e1:72 vlan_id 1405 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10382 flower src_mac 02:3f:43:0d:8e:d8 dst_mac 02:91:37:e1:b1:38 vlan_id 2360 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10383 flower src_mac 02:37:84:30:01:99 dst_mac 02:65:1b:13:7e:1b vlan_id 839 vlan_ethtype ip src_ip 108.16.82.158 dst_ip 55.110.141.98 ip_proto tcp src_port 53702 dst_port 40146 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10384 flower src_mac 02:e1:83:92:1c:88 dst_mac 02:0a:6b:4c:bf:c8 vlan_id 387 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10385 flower src_mac 02:68:e8:a8:09:7b dst_mac 02:a2:4b:3a:93:13 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10386 flower src_mac 02:e7:79:53:ae:09 dst_mac 02:78:20:ea:90:7b vlan_id 171 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10387 flower src_mac 02:c2:de:49:78:63 dst_mac 02:c6:67:f3:30:63 vlan_id 216 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10388 flower src_mac 02:4f:f8:dc:dc:d1 dst_mac 02:f6:5e:c0:e7:44 vlan_id 2985 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10389 flower src_mac 02:b5:0d:d8:89:9a dst_mac 02:0f:c4:3c:73:da src_ip 38.162.75.172 dst_ip 41.60.109.170 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10390 flower src_mac 02:4e:3b:cf:fb:78 dst_mac 02:54:ba:a1:b0:e3 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10391 flower src_mac 02:c6:67:aa:75:f9 dst_mac 02:21:c9:48:95:e0 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10392 flower src_mac 02:ed:96:3f:25:67 dst_mac 02:76:2e:3f:fc:eb vlan_id 2999 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10393 flower src_mac 02:f1:ab:76:fb:54 dst_mac 02:12:ee:bc:5a:36 vlan_id 2940 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10394 flower src_mac 02:a5:82:38:f4:cf dst_mac 02:66:96:27:7f:de vlan_id 1385 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10395 flower src_mac 02:f0:b3:51:31:68 dst_mac 02:d6:66:d7:6b:79 vlan_id 3099 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10396 flower src_mac 02:f7:a7:9e:bc:11 dst_mac 02:a5:a0:50:2c:eb vlan_id 402 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10397 flower src_mac 02:05:5b:c1:f2:7e dst_mac 02:77:83:f2:a6:a6 vlan_id 2932 vlan_ethtype ip src_ip 42.226.101.199 dst_ip 78.80.196.88 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10398 flower src_mac 02:4f:9b:07:cb:ec dst_mac 02:ad:20:2c:09:91 vlan_id 304 vlan_ethtype ip src_ip 55.47.143.151 dst_ip 38.25.175.142 ip_proto tcp src_port 24646 dst_port 1758 action pass && tc filter add dev swp1 ingress protocol ip pref 10399 flower src_mac 02:f1:fe:87:4a:c7 dst_mac 02:eb:8d:f2:71:d6 src_ip 124.97.77.204 dst_ip 83.171.183.27 ip_proto icmp code 144 type 15 action trap INFO asyncssh:logging.py:92 [conn=24, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=4] Command: tc filter add dev swp1 ingress protocol 0x9100 pref 10000 flower src_mac 02:a5:13:ae:7f:40 dst_mac 02:27:e2:af:eb:de action trap && tc filter add dev swp1 ingress protocol ip pref 10001 flower src_mac 02:7b:2c:af:ee:25 dst_mac 02:e7:be:34:59:b9 src_ip 122.181.189.70 dst_ip 90.213.120.245 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10002 flower src_mac 02:11:11:39:50:3d dst_mac 02:17:29:a9:db:b6 vlan_id 920 vlan_ethtype ip src_ip 17.200.74.187 dst_ip 31.16.169.47 ip_proto udp src_port 10028 dst_port 40156 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10003 flower src_mac 02:61:f2:86:42:ce dst_mac 02:0d:13:49:38:d1 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10004 flower src_mac 02:d4:ff:eb:b0:6a dst_mac 02:01:04:f4:e3:f8 vlan_id 270 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10005 flower src_mac 02:c4:24:88:16:3f dst_mac 02:32:5b:be:5b:f8 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10006 flower src_mac 02:00:0f:a6:ac:8a dst_mac 02:44:23:26:7d:f3 src_ip 52.236.18.196 dst_ip 48.5.105.22 ip_proto icmp code 84 type 4 action trap && tc filter add dev swp1 ingress protocol ip pref 10007 flower src_mac 02:77:27:d7:1b:5c dst_mac 02:32:e3:fb:6b:82 src_ip 76.90.117.29 dst_ip 20.127.115.178 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10008 flower src_mac 02:a5:5c:c7:09:4c dst_mac 02:6b:3c:66:66:6c action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10009 flower src_mac 02:e1:86:11:d8:94 dst_mac 02:79:a2:ea:88:20 vlan_id 3346 vlan_ethtype ip src_ip 114.135.116.75 dst_ip 102.164.23.144 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10010 flower src_mac 02:2b:aa:5f:b3:87 dst_mac 02:c9:db:05:5b:35 src_ip 125.201.116.58 dst_ip 80.177.112.186 ip_proto icmp code 14 type 18 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10011 flower src_mac 02:ca:4f:53:1a:63 dst_mac 02:9f:52:4b:11:ad action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10012 flower src_mac 02:47:ad:1f:24:3a dst_mac 02:2f:f0:2b:c1:ab action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10013 flower src_mac 02:43:55:f4:d7:32 dst_mac 02:ce:39:f8:ee:b0 vlan_id 955 vlan_ethtype ip src_ip 108.222.151.202 dst_ip 55.133.27.20 ip_proto tcp src_port 55081 dst_port 54830 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10014 flower src_mac 02:61:e5:5a:4d:32 dst_mac 02:b0:45:78:c9:3f src_ip 96.138.205.19 dst_ip 64.53.127.185 ip_proto tcp src_port 25309 dst_port 60426 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10015 flower src_mac 02:f3:6c:d3:9f:96 dst_mac 02:2e:48:e6:e9:4a action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10016 flower src_mac 02:59:57:5a:52:e7 dst_mac 02:c9:42:cf:e9:f0 vlan_id 2788 vlan_ethtype ipv4 src_ip 115.185.157.195 dst_ip 33.117.46.153 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10017 flower src_mac 02:e0:94:82:3e:92 dst_mac 02:5c:99:6e:73:db vlan_id 402 vlan_ethtype ipv4 src_ip 58.80.228.142 dst_ip 92.248.12.188 ip_proto tcp src_port 8548 dst_port 59083 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10018 flower src_mac 02:c8:67:57:a5:48 dst_mac 02:32:8e:bb:63:8f vlan_id 600 vlan_ethtype 0x0800 src_ip 108.226.213.125 dst_ip 91.76.207.130 ip_proto udp src_port 39543 dst_port 65340 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10019 flower src_mac 02:99:2b:78:61:3f dst_mac 02:3c:5b:fd:54:9a vlan_id 2475 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10020 flower src_mac 02:42:5c:3c:08:5f dst_mac 02:ab:a2:d0:72:42 action trap && tc filter add dev swp1 ingress protocol ip pref 10021 flower src_mac 02:4e:33:e8:0b:23 dst_mac 02:6e:59:50:92:11 src_ip 35.252.158.27 dst_ip 65.55.99.106 ip_proto icmp code 51 type 12 action drop && tc filter add dev swp1 ingress protocol ip pref 10022 flower src_mac 02:3f:06:65:00:7d dst_mac 02:b3:5b:fc:88:cf src_ip 106.85.183.99 dst_ip 54.87.118.30 ip_proto tcp src_port 26948 dst_port 51908 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10023 flower src_mac 02:9f:df:90:0e:4d dst_mac 02:ac:9f:39:79:73 vlan_id 4076 vlan_ethtype 0x0800 src_ip 103.147.209.103 dst_ip 39.189.56.239 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10024 flower src_mac 02:6a:d1:80:b3:f5 dst_mac 02:36:c8:39:55:21 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10025 flower src_mac 02:85:b9:f0:2c:4b dst_mac 02:63:7b:16:0a:4c vlan_id 2141 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ip pref 10026 flower src_mac 02:67:8d:81:1d:cc dst_mac 02:8b:90:e3:c4:3c src_ip 116.50.104.180 dst_ip 86.211.169.30 ip_proto udp src_port 37596 dst_port 46099 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10027 flower src_mac 02:e8:50:3c:7b:8a dst_mac 02:0f:69:8f:48:23 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10028 flower src_mac 02:ea:5d:80:2a:94 dst_mac 02:cb:56:bd:7f:86 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10029 flower src_mac 02:9d:2f:0a:8b:1b dst_mac 02:20:7e:a0:26:32 vlan_id 3278 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10030 flower src_mac 02:fd:7d:1b:2a:a9 dst_mac 02:fc:3c:81:dd:b3 vlan_id 1652 vlan_ethtype 0x0800 src_ip 87.248.204.161 dst_ip 37.62.24.160 ip_proto udp src_port 58082 dst_port 63701 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10031 flower src_mac 02:52:7a:8f:cd:95 dst_mac 02:9d:64:4e:3e:83 vlan_id 2406 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10032 flower src_mac 02:81:d9:57:4a:89 dst_mac 02:f7:63:19:84:18 vlan_id 1499 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10033 flower src_mac 02:a4:30:49:14:a7 dst_mac 02:50:d3:39:ff:71 action pass && tc filter add dev swp1 ingress protocol ip pref 10034 flower src_mac 02:ee:69:d8:67:cc dst_mac 02:9c:68:c8:ea:e1 src_ip 42.221.176.23 dst_ip 81.131.82.228 ip_proto tcp src_port 65529 dst_port 13826 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10035 flower src_mac 02:4c:f5:09:2e:82 dst_mac 02:76:c2:06:c0:08 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10036 flower src_mac 02:c0:1d:18:c8:7c dst_mac 02:73:16:0e:f2:57 vlan_id 3186 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10037 flower src_mac 02:8c:c0:b9:52:3e dst_mac 02:cd:a3:cb:75:04 vlan_id 1559 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10038 flower src_mac 02:8c:ab:d6:74:83 dst_mac 02:81:62:d2:55:e6 vlan_id 414 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10039 flower src_mac 02:47:cc:5c:b7:6f dst_mac 02:88:32:e8:b1:57 vlan_id 17 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10040 flower src_mac 02:fa:8c:33:b8:34 dst_mac 02:92:47:f0:e5:33 vlan_id 1821 vlan_ethtype ip src_ip 92.50.119.83 dst_ip 121.185.226.41 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10041 flower src_mac 02:93:e6:1f:7c:0f dst_mac 02:b6:12:f8:48:37 vlan_id 377 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10042 flower src_mac 02:f8:da:31:6a:ee dst_mac 02:4c:66:5d:ef:d9 vlan_id 2245 vlan_ethtype 0x0800 src_ip 59.253.144.96 dst_ip 41.183.34.235 ip_proto udp src_port 60051 dst_port 3945 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10043 flower src_mac 02:fc:09:c3:19:d3 dst_mac 02:19:61:bd:6b:29 vlan_id 709 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10044 flower src_mac 02:86:97:78:d1:fc dst_mac 02:8d:ea:1b:1c:2d src_ip 84.102.15.63 dst_ip 101.213.152.194 ip_proto icmp code 141 type 0 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10045 flower src_mac 02:30:82:73:07:b1 dst_mac 02:95:94:f9:07:67 vlan_id 602 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10046 flower src_mac 02:f0:1c:c5:99:c8 dst_mac 02:98:f7:19:6f:c5 vlan_id 2820 vlan_ethtype ipv4 src_ip 30.36.249.17 dst_ip 14.25.145.126 ip_proto udp src_port 22229 dst_port 32956 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10047 flower src_mac 02:88:f5:26:91:d7 dst_mac 02:4a:19:ad:91:13 vlan_id 679 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10048 flower src_mac 02:a7:78:2e:73:fd dst_mac 02:82:a6:08:ca:89 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10049 flower src_mac 02:0f:74:f0:a3:83 dst_mac 02:ec:31:8a:93:a7 src_ip 126.188.162.202 dst_ip 107.226.162.30 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10050 flower src_mac 02:ce:55:ee:4f:39 dst_mac 02:0f:5e:7a:c6:97 src_ip 27.203.151.137 dst_ip 100.3.35.197 ip_proto icmp code 226 type 5 action pass && tc filter add dev swp1 ingress protocol ip pref 10051 flower src_mac 02:32:cf:6f:31:d4 dst_mac 02:11:4b:74:b8:12 src_ip 77.108.32.196 dst_ip 43.19.174.6 ip_proto udp src_port 52580 dst_port 9710 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10052 flower src_mac 02:51:5b:47:c2:86 dst_mac 02:9f:a4:33:e8:ae vlan_id 1671 vlan_ethtype 0x0800 src_ip 65.18.68.166 dst_ip 43.28.65.202 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10053 flower src_mac 02:4a:09:68:e8:55 dst_mac 02:61:8c:d0:b5:e8 vlan_id 4012 vlan_ethtype 0x0800 src_ip 28.54.155.225 dst_ip 48.105.71.149 action trap && tc filter add dev swp1 ingress protocol ip pref 10054 flower src_mac 02:d3:03:7a:bc:9c dst_mac 02:4b:29:f3:1f:f7 src_ip 109.211.86.225 dst_ip 82.83.229.4 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10055 flower src_mac 02:e6:a9:67:0b:e2 dst_mac 02:78:51:00:79:a2 vlan_id 511 vlan_ethtype 0x0800 src_ip 81.22.174.10 dst_ip 79.212.6.105 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10056 flower src_mac 02:46:5f:42:90:1c dst_mac 02:81:59:61:27:2d vlan_id 650 vlan_ethtype ipv4 src_ip 86.6.111.230 dst_ip 15.140.172.150 ip_proto udp src_port 34451 dst_port 63915 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10057 flower src_mac 02:0e:59:64:0a:ca dst_mac 02:a5:58:3d:37:09 vlan_id 1994 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10058 flower src_mac 02:d0:95:29:1e:8a dst_mac 02:64:4c:dc:d8:7d vlan_id 1478 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10059 flower src_mac 02:f1:f5:0a:3a:0d dst_mac 02:8e:c7:69:f4:f5 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10060 flower src_mac 02:17:bb:c7:d4:b7 dst_mac 02:a6:ec:c0:7e:47 vlan_id 3719 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10061 flower src_mac 02:da:01:c3:48:fa dst_mac 02:81:07:df:dc:08 vlan_id 3590 vlan_ethtype ip src_ip 100.43.215.249 dst_ip 29.209.205.192 ip_proto tcp src_port 28113 dst_port 54294 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10062 flower src_mac 02:59:72:42:60:a2 dst_mac 02:8f:92:70:aa:3a vlan_id 3702 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10063 flower src_mac 02:17:5d:25:af:fb dst_mac 02:c6:b9:d2:77:ab action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10064 flower src_mac 02:87:53:c2:af:63 dst_mac 02:19:40:3b:ff:23 vlan_id 144 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10065 flower src_mac 02:0b:a9:51:58:6f dst_mac 02:d6:8e:eb:e6:56 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10066 flower src_mac 02:16:f1:21:7d:be dst_mac 02:65:bb:27:51:bb vlan_id 3204 vlan_ethtype 0x0800 src_ip 38.211.182.168 dst_ip 21.14.91.34 ip_proto udp src_port 47230 dst_port 24853 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10067 flower src_mac 02:11:07:53:c7:28 dst_mac 02:e8:ce:10:54:d3 src_ip 34.177.29.235 dst_ip 53.236.62.158 ip_proto icmp code 231 type 15 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10068 flower src_mac 02:f0:1b:29:d7:dc dst_mac 02:ce:57:f8:4c:d7 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10069 flower src_mac 02:6a:5d:70:4f:0b dst_mac 02:f9:1a:bd:bd:32 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10070 flower src_mac 02:b6:91:5e:d3:cb dst_mac 02:05:72:ab:0b:0a action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10071 flower src_mac 02:d8:5b:e4:6a:bf dst_mac 02:0e:1f:ac:45:87 vlan_id 3358 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10072 flower src_mac 02:92:b4:4c:fd:7c dst_mac 02:d0:f0:8c:2e:28 vlan_id 325 vlan_ethtype 0x0800 src_ip 27.3.39.62 dst_ip 45.188.174.196 ip_proto tcp src_port 17712 dst_port 50832 action drop && tc filter add dev swp1 ingress protocol ip pref 10073 flower src_mac 02:c8:a0:e6:09:3b dst_mac 02:a4:d5:83:82:0a src_ip 79.26.108.238 dst_ip 111.211.180.27 ip_proto tcp src_port 46928 dst_port 36959 action trap && tc filter add dev swp1 ingress protocol ip pref 10074 flower src_mac 02:1f:59:91:1b:a0 dst_mac 02:6c:f9:13:6e:03 src_ip 103.218.151.30 dst_ip 46.242.104.60 ip_proto icmp code 153 type 12 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10075 flower src_mac 02:28:ac:e5:41:51 dst_mac 02:e5:b4:ad:04:47 src_ip 38.73.8.26 dst_ip 100.115.20.125 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10076 flower src_mac 02:7b:00:62:b1:f7 dst_mac 02:fd:7b:9c:e8:a1 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10077 flower src_mac 02:c1:b8:f8:8c:e5 dst_mac 02:5b:8d:de:34:2d src_ip 72.3.249.39 dst_ip 77.162.107.2 ip_proto tcp src_port 60198 dst_port 33506 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10078 flower src_mac 02:06:b4:32:b0:dd dst_mac 02:7a:5f:9f:aa:4c vlan_id 1323 vlan_ethtype ip src_ip 91.130.243.175 dst_ip 71.141.105.6 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10079 flower src_mac 02:17:bc:15:3a:1c dst_mac 02:55:cd:6d:d3:f0 vlan_id 1014 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10080 flower src_mac 02:6b:40:06:d2:d9 dst_mac 02:c4:52:8d:8f:aa vlan_id 581 vlan_ethtype 0x0800 src_ip 35.124.17.45 dst_ip 86.216.242.95 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10081 flower src_mac 02:a7:49:2c:ae:31 dst_mac 02:b8:8f:de:ba:c5 src_ip 50.143.112.249 dst_ip 70.190.115.60 ip_proto udp src_port 64388 dst_port 3939 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10082 flower src_mac 02:67:63:41:46:16 dst_mac 02:bd:fa:4a:0d:7c vlan_id 249 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ip pref 10083 flower src_mac 02:0e:97:9f:ed:4f dst_mac 02:7c:fa:3f:eb:6d src_ip 61.49.17.236 dst_ip 27.56.176.87 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10084 flower src_mac 02:df:41:21:b2:e0 dst_mac 02:c8:84:ad:13:f8 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10085 flower src_mac 02:00:a8:3c:d3:08 dst_mac 02:c3:9a:ca:b9:a5 vlan_id 388 vlan_ethtype 0x0800 src_ip 24.15.203.199 dst_ip 47.224.253.41 ip_proto udp src_port 37852 dst_port 43573 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10086 flower src_mac 02:4c:73:ab:e6:dd dst_mac 02:e5:48:42:d0:d1 vlan_id 3125 vlan_ethtype ip src_ip 76.153.80.19 dst_ip 39.34.127.174 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10087 flower src_mac 02:aa:3f:23:6e:c8 dst_mac 02:72:23:83:75:6a action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10088 flower src_mac 02:a2:49:60:18:93 dst_mac 02:cc:b9:08:6e:65 vlan_id 3938 vlan_ethtype ip src_ip 91.150.135.98 dst_ip 47.98.51.151 ip_proto tcp src_port 17628 dst_port 53502 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10089 flower src_mac 02:80:40:45:89:b8 dst_mac 02:24:5c:23:88:32 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10090 flower src_mac 02:c6:f8:de:7d:fd dst_mac 02:0a:78:86:63:58 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10091 flower src_mac 02:23:15:41:08:07 dst_mac 02:68:a9:9c:ca:50 vlan_id 3384 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10092 flower src_mac 02:a9:7a:7c:cf:75 dst_mac 02:98:de:c9:67:04 vlan_id 714 vlan_ethtype 0x0800 src_ip 29.13.145.140 dst_ip 73.200.193.16 ip_proto tcp src_port 33142 dst_port 60472 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10093 flower src_mac 02:8c:f1:ad:bb:30 dst_mac 02:06:d3:1a:c1:8c src_ip 68.225.93.122 dst_ip 30.83.207.216 ip_proto tcp src_port 8440 dst_port 15083 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10094 flower src_mac 02:2a:61:06:08:c5 dst_mac 02:2a:47:fd:1f:25 action drop && tc filter add dev swp1 ingress protocol ip pref 10095 flower src_mac 02:bd:5e:36:6a:8c dst_mac 02:7c:52:bf:88:da src_ip 22.84.63.190 dst_ip 77.131.44.214 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10096 flower src_mac 02:22:75:8b:5d:3e dst_mac 02:8c:e9:f4:18:77 src_ip 110.102.220.236 dst_ip 61.222.163.116 ip_proto udp src_port 11939 dst_port 13843 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10097 flower src_mac 02:17:fa:d4:d2:73 dst_mac 02:1d:08:77:9a:1d action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10098 flower src_mac 02:f6:97:6b:23:b6 dst_mac 02:f9:0f:99:23:c8 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10099 flower src_mac 02:76:1e:d7:e2:96 dst_mac 02:21:e8:cd:8d:11 vlan_id 2860 vlan_ethtype ip src_ip 102.188.98.108 dst_ip 81.78.144.156 ip_proto tcp src_port 10812 dst_port 20166 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10100 flower src_mac 02:6e:b8:89:26:ee dst_mac 02:c2:85:2c:42:d2 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10101 flower src_mac 02:3e:75:4f:50:21 dst_mac 02:50:75:81:f2:65 vlan_id 3600 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10102 flower src_mac 02:d1:ee:3c:89:52 dst_mac 02:d1:09:3f:38:c0 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10103 flower src_mac 02:cc:27:7c:a8:e6 dst_mac 02:a9:16:ae:c9:bc src_ip 77.36.144.75 dst_ip 85.7.189.246 ip_proto udp src_port 36344 dst_port 31165 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10104 flower src_mac 02:da:c2:c9:d5:2e dst_mac 02:bd:57:7c:23:3f vlan_id 3769 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10105 flower src_mac 02:2b:aa:35:b1:fb dst_mac 02:cb:2f:70:20:da vlan_id 2564 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10106 flower src_mac 02:0a:c0:58:f7:05 dst_mac 02:cc:e6:56:8e:75 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10107 flower src_mac 02:d2:35:92:c4:e3 dst_mac 02:60:00:62:a8:af vlan_id 1928 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10108 flower src_mac 02:2d:a0:af:7a:27 dst_mac 02:d8:73:7c:4e:85 vlan_id 1588 vlan_ethtype 0x0800 src_ip 58.181.75.116 dst_ip 78.227.152.239 ip_proto udp src_port 63810 dst_port 57705 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10109 flower src_mac 02:4e:81:e4:b1:8c dst_mac 02:36:76:86:d0:1a action pass && tc filter add dev swp1 ingress protocol ip pref 10110 flower src_mac 02:3c:59:90:67:3c dst_mac 02:c4:c3:77:5b:1e src_ip 62.134.205.150 dst_ip 97.135.98.35 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10111 flower src_mac 02:f5:b4:87:d6:91 dst_mac 02:e1:fd:a7:c7:a6 action drop && tc filter add dev swp1 ingress protocol ip pref 10112 flower src_mac 02:76:c1:53:ee:cc dst_mac 02:cd:1a:4a:e9:b6 src_ip 13.69.26.32 dst_ip 43.73.6.195 action pass && tc filter add dev swp1 ingress protocol ip pref 10113 flower src_mac 02:16:1d:8a:8e:b5 dst_mac 02:21:39:ab:e7:e9 src_ip 86.71.188.12 dst_ip 41.189.231.228 ip_proto tcp src_port 51338 dst_port 2951 action pass && tc filter add dev swp1 ingress protocol ip pref 10114 flower src_mac 02:6a:ab:fb:1e:f7 dst_mac 02:4c:2e:cd:4a:78 src_ip 14.61.161.77 dst_ip 87.238.139.27 ip_proto udp src_port 51968 dst_port 55081 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10115 flower src_mac 02:14:97:e0:52:27 dst_mac 02:d2:32:26:77:0e action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10116 flower src_mac 02:53:40:a3:69:17 dst_mac 02:c4:36:60:4c:4b src_ip 20.205.155.29 dst_ip 41.149.235.120 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10117 flower src_mac 02:13:77:94:d8:f4 dst_mac 02:54:26:55:32:ed action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10118 flower src_mac 02:92:9c:47:71:6e dst_mac 02:f5:b4:12:8a:e9 src_ip 75.247.247.55 dst_ip 82.51.105.191 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10119 flower src_mac 02:c1:05:0f:93:ae dst_mac 02:26:59:0d:a1:27 src_ip 59.42.231.199 dst_ip 72.19.10.101 ip_proto tcp src_port 6848 dst_port 43859 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10120 flower src_mac 02:be:46:4e:e6:d9 dst_mac 02:9a:ab:4e:c7:67 vlan_id 3067 vlan_ethtype ipv4 src_ip 14.217.58.235 dst_ip 13.249.21.116 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10121 flower src_mac 02:a7:c8:dc:5f:ed dst_mac 02:32:a8:34:51:06 vlan_id 1238 vlan_ethtype ipv4 src_ip 112.241.171.44 dst_ip 25.209.113.199 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10122 flower src_mac 02:a6:31:f2:6b:f7 dst_mac 02:4a:eb:82:8e:02 vlan_id 1468 vlan_ethtype ipv4 src_ip 58.110.94.103 dst_ip 109.252.246.142 ip_proto tcp src_port 9154 dst_port 24418 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10123 flower src_mac 02:71:0b:c8:c3:79 dst_mac 02:a0:b5:56:bf:79 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10124 flower src_mac 02:3c:bf:16:65:23 dst_mac 02:72:cb:ec:0d:96 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10125 flower src_mac 02:20:b5:cf:d8:da dst_mac 02:b3:f0:50:c3:91 action pass && tc filter add dev swp1 ingress protocol ip pref 10126 flower src_mac 02:d3:30:f1:bf:b5 dst_mac 02:8a:85:df:47:af src_ip 126.8.65.234 dst_ip 51.146.62.96 ip_proto icmp code 19 type 3 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10127 flower src_mac 02:c3:ac:52:ba:e0 dst_mac 02:66:41:69:17:94 vlan_id 355 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ip pref 10128 flower src_mac 02:83:33:aa:1a:43 dst_mac 02:c6:ec:97:8d:21 src_ip 41.157.115.154 dst_ip 96.201.118.104 ip_proto icmp code 244 type 12 action pass && tc filter add dev swp1 ingress protocol ip pref 10129 flower src_mac 02:a2:59:52:04:33 dst_mac 02:9b:a4:89:c9:82 src_ip 42.36.94.109 dst_ip 76.212.157.55 ip_proto tcp src_port 35581 dst_port 37946 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10130 flower src_mac 02:f8:68:ea:43:28 dst_mac 02:0c:21:b5:d9:a0 src_ip 56.148.168.10 dst_ip 71.39.32.15 ip_proto tcp src_port 6245 dst_port 42405 action pass && tc filter add dev swp1 ingress protocol ip pref 10131 flower src_mac 02:b9:7f:bb:ed:89 dst_mac 02:8b:f2:f8:ca:ac src_ip 68.70.9.220 dst_ip 122.202.128.117 ip_proto icmp code 157 type 8 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10132 flower src_mac 02:f3:49:ec:4a:72 dst_mac 02:ac:12:e7:b4:80 vlan_id 3357 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ip pref 10133 flower src_mac 02:c2:e2:71:94:6e dst_mac 02:90:69:53:39:3f src_ip 21.224.72.16 dst_ip 102.132.219.98 ip_proto tcp src_port 61107 dst_port 19930 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10134 flower src_mac 02:50:5b:86:46:9d dst_mac 02:d6:da:25:d0:2c vlan_id 890 vlan_ethtype 0x0800 src_ip 60.235.240.174 dst_ip 69.170.52.146 ip_proto tcp src_port 65455 dst_port 3028 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10135 flower src_mac 02:1d:a9:be:93:cd dst_mac 02:ea:f7:8a:4c:ff src_ip 23.215.74.187 dst_ip 64.41.136.128 ip_proto tcp src_port 42987 dst_port 51690 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10136 flower src_mac 02:eb:04:4e:75:77 dst_mac 02:7b:e9:90:fc:af action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10137 flower src_mac 02:3d:f3:80:09:1d dst_mac 02:e7:09:c5:e5:a1 vlan_id 3920 vlan_ethtype ipv4 src_ip 55.114.193.158 dst_ip 106.192.205.161 ip_proto udp src_port 45567 dst_port 44574 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10138 flower src_mac 02:5a:df:07:41:a9 dst_mac 02:fd:b9:ae:a5:c5 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10139 flower src_mac 02:37:d6:41:65:a7 dst_mac 02:fc:5b:8f:e8:60 src_ip 80.11.220.59 dst_ip 64.77.84.145 ip_proto icmp code 252 type 16 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10140 flower src_mac 02:f5:ae:75:5b:50 dst_mac 02:56:63:a4:d9:60 vlan_id 3829 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10141 flower src_mac 02:06:5d:dc:0e:66 dst_mac 02:ae:03:4e:99:a4 vlan_id 1854 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10142 flower src_mac 02:b7:40:3d:66:ed dst_mac 02:94:4c:12:66:71 vlan_id 3428 vlan_ethtype 0x0800 src_ip 40.163.159.8 dst_ip 84.178.89.66 action trap && tc filter add dev swp1 ingress protocol ip pref 10143 flower src_mac 02:14:8c:b4:7a:c4 dst_mac 02:e3:9b:2f:77:2f src_ip 117.36.214.153 dst_ip 27.89.246.204 action pass && tc filter add dev swp1 ingress protocol ip pref 10144 flower src_mac 02:c1:49:41:d2:bc dst_mac 02:98:22:41:77:2c src_ip 102.218.16.90 dst_ip 12.171.122.154 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10145 flower src_mac 02:c5:7f:76:3f:33 dst_mac 02:89:a3:f4:5a:e7 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10146 flower src_mac 02:08:18:3c:18:51 dst_mac 02:5b:68:fb:ea:16 vlan_id 1089 vlan_ethtype ipv4 src_ip 115.228.105.165 dst_ip 60.91.76.140 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10147 flower src_mac 02:d9:a8:09:c4:24 dst_mac 02:10:51:cb:11:bc action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10148 flower src_mac 02:ee:e0:6a:e2:b4 dst_mac 02:bf:ee:fb:82:05 vlan_id 1948 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10149 flower src_mac 02:5a:5d:aa:b5:4d dst_mac 02:6e:f2:13:14:2e vlan_id 2155 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10150 flower src_mac 02:7a:d7:ed:02:93 dst_mac 02:80:48:67:e0:76 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10151 flower src_mac 02:aa:dd:c8:b1:ba dst_mac 02:a5:0e:0f:af:5f action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10152 flower src_mac 02:69:ce:8d:22:fc dst_mac 02:ca:49:83:0e:a8 vlan_id 41 vlan_ethtype 0x0800 src_ip 118.33.202.56 dst_ip 27.89.196.23 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10153 flower src_mac 02:50:fe:23:8b:f0 dst_mac 02:2a:a5:b1:52:fd vlan_id 2495 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10154 flower src_mac 02:8a:81:39:74:ef dst_mac 02:c6:6b:8a:58:ec vlan_id 2180 vlan_ethtype ip src_ip 121.51.107.154 dst_ip 57.89.61.82 ip_proto udp src_port 6313 dst_port 43306 action trap && tc filter add dev swp1 ingress protocol ip pref 10155 flower src_mac 02:6f:f4:22:19:62 dst_mac 02:e7:97:1b:0c:5f src_ip 21.233.152.171 dst_ip 87.115.66.242 ip_proto icmp code 73 type 17 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10156 flower src_mac 02:99:fb:70:36:87 dst_mac 02:49:8b:06:ca:64 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10157 flower src_mac 02:42:65:d9:5b:1b dst_mac 02:ac:2c:8c:65:12 vlan_id 3939 vlan_ethtype ipv4 src_ip 68.149.247.190 dst_ip 84.126.28.51 ip_proto udp src_port 61715 dst_port 21432 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10158 flower src_mac 02:5a:4c:fa:98:3f dst_mac 02:23:be:8d:8e:c6 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10159 flower src_mac 02:81:5e:e6:55:55 dst_mac 02:ac:12:3b:69:db vlan_id 3304 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10160 flower src_mac 02:1c:1d:93:c7:b3 dst_mac 02:f1:a3:25:9f:36 vlan_id 3266 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10161 flower src_mac 02:b7:3b:62:d2:72 dst_mac 02:99:51:a3:7c:cd vlan_id 3795 vlan_ethtype ipv4 src_ip 116.17.23.86 dst_ip 85.4.125.186 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10162 flower src_mac 02:c1:e8:da:17:48 dst_mac 02:a1:17:b5:a9:40 vlan_id 2123 vlan_ethtype 0x0800 src_ip 29.233.243.246 dst_ip 122.249.64.184 ip_proto tcp src_port 64197 dst_port 24513 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10163 flower src_mac 02:e2:c4:5f:d8:ea dst_mac 02:9f:da:ab:3c:df vlan_id 957 vlan_ethtype ipv4 src_ip 87.219.164.90 dst_ip 26.95.141.228 ip_proto udp src_port 57546 dst_port 37327 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10164 flower src_mac 02:67:26:3e:9e:76 dst_mac 02:c7:22:48:be:be vlan_id 160 vlan_ethtype 0x0800 src_ip 110.183.108.207 dst_ip 120.156.3.13 ip_proto tcp src_port 49018 dst_port 6297 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10165 flower src_mac 02:f4:59:8c:0c:12 dst_mac 02:09:7e:91:8d:b7 vlan_id 3820 vlan_ethtype ipv4 src_ip 40.220.161.157 dst_ip 36.82.51.32 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10166 flower src_mac 02:54:ab:34:f0:97 dst_mac 02:5e:46:5e:a2:2a vlan_id 3126 vlan_ethtype ipv4 src_ip 54.113.5.62 dst_ip 105.243.42.239 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10167 flower src_mac 02:c9:5d:bd:ac:b6 dst_mac 02:0a:31:02:b7:7e src_ip 46.104.190.81 dst_ip 30.219.20.198 ip_proto tcp src_port 20149 dst_port 59974 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10168 flower src_mac 02:3f:84:b4:e4:45 dst_mac 02:93:4e:09:dc:41 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10169 flower src_mac 02:59:e0:c2:b7:90 dst_mac 02:26:d3:d3:3d:f5 src_ip 55.238.172.46 dst_ip 63.229.93.85 ip_proto tcp src_port 64134 dst_port 38742 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10170 flower src_mac 02:67:81:1f:2f:df dst_mac 02:40:96:f9:20:92 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10171 flower src_mac 02:0c:57:99:bf:c0 dst_mac 02:06:0a:40:75:a8 vlan_id 3653 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10172 flower src_mac 02:92:23:e8:86:b6 dst_mac 02:6e:34:fa:9b:5b vlan_id 3031 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10173 flower src_mac 02:34:ec:21:fc:2d dst_mac 02:d8:0a:51:51:ad vlan_id 3011 vlan_ethtype ip src_ip 42.216.28.125 dst_ip 81.61.86.28 action drop && tc filter add dev swp1 ingress protocol ip pref 10174 flower src_mac 02:6d:5c:77:32:3d dst_mac 02:61:27:19:a4:a5 src_ip 46.130.229.109 dst_ip 41.88.191.167 ip_proto udp src_port 22721 dst_port 50065 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10175 flower src_mac 02:9b:c0:51:d8:58 dst_mac 02:8e:eb:40:9d:e6 vlan_id 270 vlan_ethtype ipv4 src_ip 75.52.222.173 dst_ip 80.92.205.61 ip_proto tcp src_port 4553 dst_port 20942 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10176 flower src_mac 02:b2:18:9b:cc:a6 dst_mac 02:67:57:97:b7:ac src_ip 15.59.213.151 dst_ip 92.24.204.3 ip_proto icmp code 252 type 12 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10177 flower src_mac 02:bf:d1:a8:2d:5f dst_mac 02:b1:88:0e:91:35 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10178 flower src_mac 02:fb:c5:9f:09:c0 dst_mac 02:12:07:a9:96:7b vlan_id 2397 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10179 flower src_mac 02:bd:37:56:fe:08 dst_mac 02:37:50:c1:83:3d vlan_id 3758 vlan_ethtype ip src_ip 79.53.92.28 dst_ip 25.240.216.22 ip_proto udp src_port 10587 dst_port 26757 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10180 flower src_mac 02:74:1a:31:11:e0 dst_mac 02:5a:5c:bc:ac:82 vlan_id 2099 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10181 flower src_mac 02:99:ca:07:4c:ed dst_mac 02:ae:3e:d1:2e:0b vlan_id 3238 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10182 flower src_mac 02:3d:e9:be:27:1c dst_mac 02:8e:74:04:67:6c vlan_id 1465 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ip pref 10183 flower src_mac 02:ab:01:e3:22:35 dst_mac 02:79:5f:2a:f4:88 src_ip 17.109.224.205 dst_ip 118.67.172.236 ip_proto udp src_port 17757 dst_port 8345 action drop && tc filter add dev swp1 ingress protocol ip pref 10184 flower src_mac 02:e4:83:61:52:61 dst_mac 02:0e:e4:15:9a:96 src_ip 11.240.21.42 dst_ip 93.7.69.162 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10185 flower src_mac 02:a4:1a:94:f2:fd dst_mac 02:f1:05:ef:4d:cc src_ip 35.140.99.152 dst_ip 101.42.236.213 ip_proto udp src_port 59565 dst_port 9120 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10186 flower src_mac 02:9f:c7:fa:23:3e dst_mac 02:e8:05:da:6b:00 vlan_id 476 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10187 flower src_mac 02:81:fc:09:3b:c0 dst_mac 02:10:c1:4e:c6:4f vlan_id 3824 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10188 flower src_mac 02:bd:e7:f8:21:3d dst_mac 02:ce:56:1f:7d:0c vlan_id 2368 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10189 flower src_mac 02:ec:44:14:42:d8 dst_mac 02:cd:81:52:32:d3 src_ip 29.12.49.142 dst_ip 92.80.192.41 ip_proto tcp src_port 25258 dst_port 54700 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10190 flower src_mac 02:de:21:62:4f:f8 dst_mac 02:2b:0c:1c:31:3c action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10191 flower src_mac 02:42:2e:a7:3d:39 dst_mac 02:07:1d:83:50:18 vlan_id 2887 vlan_ethtype 0x0800 src_ip 117.7.88.156 dst_ip 44.250.101.68 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10192 flower src_mac 02:e6:d1:16:47:2c dst_mac 02:79:6c:5b:23:4c vlan_id 1404 vlan_ethtype 0x0800 src_ip 24.115.248.212 dst_ip 65.104.10.45 ip_proto tcp src_port 37538 dst_port 32173 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10193 flower src_mac 02:ab:67:5b:65:2c dst_mac 02:c1:03:7d:54:33 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10194 flower src_mac 02:07:ca:98:32:43 dst_mac 02:25:be:bb:33:d7 vlan_id 3943 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10195 flower src_mac 02:c4:15:67:f7:76 dst_mac 02:33:46:d9:64:79 src_ip 54.126.188.134 dst_ip 45.153.152.9 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10196 flower src_mac 02:4f:3f:cd:28:6b dst_mac 02:e8:72:ec:4e:95 vlan_id 3592 vlan_ethtype ipv4 src_ip 15.96.18.200 dst_ip 36.13.148.136 ip_proto tcp src_port 28721 dst_port 54740 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10197 flower src_mac 02:91:54:0d:72:58 dst_mac 02:e3:02:22:5a:e4 src_ip 105.188.255.47 dst_ip 13.97.99.217 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10198 flower src_mac 02:04:66:82:fb:76 dst_mac 02:b6:b6:85:e3:f9 src_ip 15.12.201.202 dst_ip 116.136.174.35 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10199 flower src_mac 02:c7:b3:13:66:7d dst_mac 02:70:74:ac:bb:0b src_ip 72.175.14.172 dst_ip 68.101.48.43 ip_proto udp src_port 49657 dst_port 29489 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10200 flower src_mac 02:26:48:8e:e5:68 dst_mac 02:4b:fe:09:22:cf src_ip 58.176.47.225 dst_ip 125.219.184.221 ip_proto icmp code 107 type 18 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10201 flower src_mac 02:12:ba:2d:07:70 dst_mac 02:4a:ad:af:9e:5c action pass && tc filter add dev swp1 ingress protocol ip pref 10202 flower src_mac 02:11:f7:ae:a9:ad dst_mac 02:67:b3:19:1b:1b src_ip 106.62.173.247 dst_ip 106.108.195.134 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10203 flower src_mac 02:0b:77:e1:c0:9f dst_mac 02:b3:d0:f4:2f:a8 vlan_id 1433 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10204 flower src_mac 02:e2:55:1a:3d:65 dst_mac 02:ee:17:de:c9:b4 src_ip 13.35.197.246 dst_ip 73.192.92.42 ip_proto icmp code 175 type 3 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10205 flower src_mac 02:ae:b7:f1:b0:89 dst_mac 02:35:2f:4c:d6:01 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10206 flower src_mac 02:a0:0f:0a:21:8f dst_mac 02:0a:7a:b7:90:fc vlan_id 3399 vlan_ethtype ipv4 src_ip 48.0.182.18 dst_ip 33.239.217.227 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10207 flower src_mac 02:1d:69:37:83:87 dst_mac 02:7c:2e:1a:f8:65 vlan_id 3554 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10208 flower src_mac 02:e1:e9:95:bb:ee dst_mac 02:21:1c:73:ee:e8 vlan_id 2059 vlan_ethtype ip src_ip 14.139.156.121 dst_ip 46.4.52.168 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10209 flower src_mac 02:f2:a5:83:d6:c9 dst_mac 02:a7:c0:a7:a5:1d action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10210 flower src_mac 02:6f:a9:80:4a:7e dst_mac 02:66:9d:35:44:c0 vlan_id 365 vlan_ethtype ipv4 src_ip 53.124.148.20 dst_ip 75.192.228.140 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10211 flower src_mac 02:6c:d4:c8:50:e7 dst_mac 02:12:fb:aa:47:89 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10212 flower src_mac 02:5a:dc:c6:e1:48 dst_mac 02:b8:82:e7:7c:1a action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10213 flower src_mac 02:ef:c8:de:8f:e3 dst_mac 02:0e:d2:ec:28:e6 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10214 flower src_mac 02:0e:e7:c3:c4:18 dst_mac 02:9e:c2:ca:3d:7b action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10215 flower src_mac 02:09:7d:80:c4:0f dst_mac 02:70:a6:fd:98:dd vlan_id 3144 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10216 flower src_mac 02:4d:07:dc:ca:fd dst_mac 02:ec:60:cb:fd:b2 vlan_id 2806 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ip pref 10217 flower src_mac 02:1b:ee:8e:06:0a dst_mac 02:48:a2:74:44:be src_ip 103.149.213.173 dst_ip 114.221.238.63 ip_proto udp src_port 3035 dst_port 15306 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10218 flower src_mac 02:12:d4:16:3d:65 dst_mac 02:a3:c1:2b:90:3a action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10219 flower src_mac 02:f4:76:8b:4e:96 dst_mac 02:2f:ec:98:fe:a3 vlan_id 2356 vlan_ethtype 0x0800 src_ip 64.225.203.99 dst_ip 117.157.156.243 ip_proto udp src_port 21573 dst_port 26597 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10220 flower src_mac 02:e8:05:f6:c1:d6 dst_mac 02:77:39:83:76:bb action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10221 flower src_mac 02:ac:45:78:08:bb dst_mac 02:14:dd:7d:e0:8f vlan_id 2682 vlan_ethtype 0x0800 src_ip 50.145.0.96 dst_ip 58.8.7.119 ip_proto udp src_port 10493 dst_port 59543 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10222 flower src_mac 02:3a:8e:2b:fe:c2 dst_mac 02:56:6e:f0:45:3c action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10223 flower src_mac 02:32:44:5a:e7:f7 dst_mac 02:a0:2d:56:fa:7b vlan_id 222 vlan_ethtype ipv4 src_ip 63.254.60.123 dst_ip 106.196.67.217 ip_proto udp src_port 44187 dst_port 39040 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10224 flower src_mac 02:bc:6f:20:c8:d7 dst_mac 02:4e:93:5d:a2:01 vlan_id 2014 vlan_ethtype ipv4 src_ip 93.39.133.121 dst_ip 26.47.142.179 ip_proto udp src_port 47941 dst_port 31969 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10225 flower src_mac 02:ce:c9:30:5e:d1 dst_mac 02:3d:7e:81:53:43 vlan_id 2885 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10226 flower src_mac 02:7b:fd:31:76:ab dst_mac 02:70:cc:27:6c:31 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10227 flower src_mac 02:c4:99:07:5b:c5 dst_mac 02:ed:2a:04:40:d7 action pass && tc filter add dev swp1 ingress protocol ip pref 10228 flower src_mac 02:ec:2a:38:83:d7 dst_mac 02:31:3e:f1:67:08 src_ip 117.240.85.246 dst_ip 86.193.47.108 ip_proto udp src_port 58814 dst_port 45068 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10229 flower src_mac 02:da:aa:c5:b2:1d dst_mac 02:6a:75:7b:54:ea vlan_id 3903 vlan_ethtype 0x0800 src_ip 53.132.255.250 dst_ip 22.172.252.134 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10230 flower src_mac 02:fa:32:fe:46:e9 dst_mac 02:50:e6:82:53:9f vlan_id 2670 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10231 flower src_mac 02:be:f3:6e:41:23 dst_mac 02:b7:e4:b9:6f:c6 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10232 flower src_mac 02:f6:8d:48:39:f7 dst_mac 02:72:d3:cf:a8:37 vlan_id 2287 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10233 flower src_mac 02:2e:16:72:20:69 dst_mac 02:25:bc:69:ed:a7 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10234 flower src_mac 02:d1:f4:67:a4:c7 dst_mac 02:18:a2:be:f6:58 vlan_id 728 vlan_ethtype ip src_ip 45.216.170.117 dst_ip 72.183.7.162 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10235 flower src_mac 02:1b:b1:71:27:fa dst_mac 02:35:2f:3f:63:5f action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10236 flower src_mac 02:18:60:0e:41:bb dst_mac 02:cc:0e:cd:c2:f2 src_ip 94.89.238.77 dst_ip 11.139.146.135 ip_proto udp src_port 56827 dst_port 62200 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10237 flower src_mac 02:0e:23:06:5c:d3 dst_mac 02:14:99:ce:8a:ad action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10238 flower src_mac 02:15:dd:e3:ec:26 dst_mac 02:7c:73:81:30:c4 action trap && tc filter add dev swp1 ingress protocol ip pref 10239 flower src_mac 02:9c:ca:46:de:1a dst_mac 02:89:fb:e4:dc:9a src_ip 78.127.132.67 dst_ip 24.78.3.104 ip_proto icmp code 122 type 12 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10240 flower src_mac 02:bc:67:d1:b0:a0 dst_mac 02:cf:e8:ec:26:2d action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10241 flower src_mac 02:1f:81:91:f2:dd dst_mac 02:6c:09:aa:2f:bb src_ip 112.182.51.48 dst_ip 70.0.176.62 ip_proto tcp src_port 14433 dst_port 10069 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10242 flower src_mac 02:02:4f:46:95:1a dst_mac 02:b0:aa:d7:1c:65 src_ip 79.172.74.132 dst_ip 109.141.73.227 ip_proto udp src_port 13736 dst_port 56784 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10243 flower src_mac 02:de:70:41:d9:04 dst_mac 02:c6:ef:e0:a7:49 src_ip 117.214.113.210 dst_ip 84.69.66.160 ip_proto tcp src_port 46959 dst_port 21743 action drop && tc filter add dev swp1 ingress protocol ip pref 10244 flower src_mac 02:f5:36:04:3b:fc dst_mac 02:83:28:50:7c:36 src_ip 52.182.132.109 dst_ip 64.18.47.218 ip_proto tcp src_port 57383 dst_port 7340 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10245 flower src_mac 02:3c:0a:f8:49:e6 dst_mac 02:e4:d6:4e:87:b6 vlan_id 2118 vlan_ethtype ip src_ip 81.4.241.214 dst_ip 79.7.88.61 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10246 flower src_mac 02:d4:6c:7c:77:c5 dst_mac 02:ef:d5:01:85:c2 vlan_id 32 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10247 flower src_mac 02:89:ae:77:e4:63 dst_mac 02:fc:02:aa:9b:cb action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10248 flower src_mac 02:53:84:1b:99:4b dst_mac 02:c1:d2:07:b1:5b action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10249 flower src_mac 02:fa:2f:17:92:db dst_mac 02:e2:c6:a8:3a:14 vlan_id 874 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10250 flower src_mac 02:5c:4b:14:d6:71 dst_mac 02:e5:c7:34:eb:28 vlan_id 3564 vlan_ethtype 0x0800 src_ip 90.146.10.148 dst_ip 79.0.204.2 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10251 flower src_mac 02:ae:b7:9c:b4:a0 dst_mac 02:e4:68:80:5a:0c vlan_id 3102 vlan_ethtype ipv4 src_ip 55.42.111.234 dst_ip 33.27.60.226 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10252 flower src_mac 02:db:87:4b:83:a1 dst_mac 02:d7:9b:ac:77:c5 vlan_id 3031 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10253 flower src_mac 02:43:52:9b:a2:42 dst_mac 02:7d:72:6e:76:a0 src_ip 32.134.131.207 dst_ip 123.7.52.47 ip_proto icmp code 78 type 5 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10254 flower src_mac 02:2c:73:d2:91:8a dst_mac 02:de:aa:6e:86:72 vlan_id 3457 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10255 flower src_mac 02:64:a0:3c:a6:46 dst_mac 02:2e:a8:cc:08:a0 vlan_id 3641 vlan_ethtype ipv4 src_ip 27.180.30.44 dst_ip 90.137.120.70 ip_proto tcp src_port 58975 dst_port 19625 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10256 flower src_mac 02:e7:09:5c:57:0c dst_mac 02:8d:73:0b:01:0f action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10257 flower src_mac 02:43:44:8b:c4:20 dst_mac 02:b4:35:d5:45:82 src_ip 61.55.55.151 dst_ip 45.187.136.143 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10258 flower src_mac 02:66:02:97:5b:af dst_mac 02:33:ca:36:27:40 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10259 flower src_mac 02:af:e3:c3:d0:e1 dst_mac 02:b6:22:f1:47:3c vlan_id 3306 vlan_ethtype ip src_ip 71.95.8.4 dst_ip 78.32.27.165 ip_proto udp src_port 62506 dst_port 36673 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10260 flower src_mac 02:ab:f4:40:f5:0f dst_mac 02:1d:06:9d:ff:f4 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10261 flower src_mac 02:22:f9:b6:98:95 dst_mac 02:5b:b3:78:cf:3d vlan_id 1539 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10262 flower src_mac 02:5d:c6:5c:36:e4 dst_mac 02:72:6b:13:13:7b vlan_id 2003 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10263 flower src_mac 02:86:d1:02:6a:9c dst_mac 02:12:5b:9f:00:98 vlan_id 4025 vlan_ethtype ipv4 src_ip 59.148.180.2 dst_ip 51.139.193.50 ip_proto tcp src_port 15520 dst_port 34972 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10264 flower src_mac 02:d2:68:ed:c7:ee dst_mac 02:a7:29:be:67:bc src_ip 81.126.213.244 dst_ip 32.254.210.145 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10265 flower src_mac 02:3b:76:be:08:63 dst_mac 02:e3:6c:7d:09:6e vlan_id 2308 vlan_ethtype ipv4 src_ip 125.175.214.95 dst_ip 118.182.14.119 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10266 flower src_mac 02:8a:c3:d4:ca:f0 dst_mac 02:29:78:98:05:a2 vlan_id 3196 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10267 flower src_mac 02:51:03:7c:03:97 dst_mac 02:34:1b:a6:c8:e2 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10268 flower src_mac 02:74:ee:2b:a5:a9 dst_mac 02:90:68:03:cb:f4 vlan_id 580 vlan_ethtype ipv4 src_ip 104.202.144.186 dst_ip 82.0.68.41 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10269 flower src_mac 02:d7:b6:fb:46:1f dst_mac 02:6c:78:23:3c:f6 src_ip 57.42.214.113 dst_ip 101.99.23.56 ip_proto udp src_port 63038 dst_port 21667 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10270 flower src_mac 02:16:27:d3:01:08 dst_mac 02:70:60:3c:f0:bf vlan_id 2719 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10271 flower src_mac 02:3f:9e:4c:18:91 dst_mac 02:8b:33:03:a1:1b vlan_id 1240 vlan_ethtype 0x0800 src_ip 50.241.133.103 dst_ip 44.142.24.6 ip_proto udp src_port 58520 dst_port 15868 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10272 flower src_mac 02:37:fc:a8:bd:4a dst_mac 02:75:c2:19:89:5d src_ip 81.63.205.140 dst_ip 43.55.249.174 ip_proto udp src_port 46124 dst_port 9039 action trap && tc filter add dev swp1 ingress protocol ip pref 10273 flower src_mac 02:b6:70:45:d2:19 dst_mac 02:4c:72:98:98:13 src_ip 99.226.145.213 dst_ip 75.133.198.177 action trap && tc filter add dev swp1 ingress protocol ip pref 10274 flower src_mac 02:89:e6:69:89:2e dst_mac 02:5d:f8:31:53:d2 src_ip 20.100.247.123 dst_ip 16.27.139.153 ip_proto tcp src_port 47195 dst_port 34122 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10275 flower src_mac 02:d8:98:45:60:bc dst_mac 02:3a:cc:c6:b6:54 vlan_id 4084 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10276 flower src_mac 02:a1:00:04:34:2a dst_mac 02:c1:2e:6e:60:9d vlan_id 2644 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10277 flower src_mac 02:72:20:00:7c:cb dst_mac 02:a5:0d:62:a8:72 vlan_id 3925 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10278 flower src_mac 02:17:51:de:bb:af dst_mac 02:cf:fd:a1:de:c2 vlan_id 2612 vlan_ethtype ipv4 src_ip 114.150.88.58 dst_ip 81.33.190.237 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10279 flower src_mac 02:0f:6b:de:93:20 dst_mac 02:c0:5c:39:6f:6f vlan_id 11 vlan_ethtype ip src_ip 59.45.9.64 dst_ip 21.88.177.96 ip_proto tcp src_port 39153 dst_port 33 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10280 flower src_mac 02:12:44:d9:c6:0c dst_mac 02:e6:c4:fd:05:95 vlan_id 4057 vlan_ethtype ipv4 src_ip 114.54.41.81 dst_ip 95.37.3.28 ip_proto udp src_port 5960 dst_port 64000 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10281 flower src_mac 02:8e:69:d2:8b:43 dst_mac 02:ee:6e:dd:bd:2d vlan_id 2278 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10282 flower src_mac 02:68:d8:49:14:b5 dst_mac 02:5c:b7:67:08:5e vlan_id 2249 vlan_ethtype ip src_ip 120.133.116.188 dst_ip 70.173.251.19 ip_proto udp src_port 58405 dst_port 14863 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10283 flower src_mac 02:e8:2d:4e:5c:b0 dst_mac 02:8f:80:a8:c3:c8 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10284 flower src_mac 02:3f:99:9c:c3:46 dst_mac 02:7f:b2:b9:93:70 vlan_id 341 vlan_ethtype 0x0800 src_ip 97.61.50.187 dst_ip 55.250.149.95 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10285 flower src_mac 02:0c:a6:c8:01:4e dst_mac 02:7f:6c:00:e0:06 vlan_id 2717 vlan_ethtype 0x0800 src_ip 85.186.193.85 dst_ip 17.89.60.174 action drop && tc filter add dev swp1 ingress protocol ip pref 10286 flower src_mac 02:8e:19:50:53:92 dst_mac 02:e0:84:42:53:e3 src_ip 79.214.209.123 dst_ip 52.236.198.244 ip_proto icmp code 231 type 4 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10287 flower src_mac 02:d6:27:5b:11:7b dst_mac 02:17:25:e8:6c:c9 vlan_id 2960 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ip pref 10288 flower src_mac 02:35:ea:c5:92:30 dst_mac 02:75:00:6b:cf:a1 src_ip 61.182.164.147 dst_ip 56.143.210.7 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10289 flower src_mac 02:e3:f0:f3:ea:ab dst_mac 02:2b:94:03:86:a5 src_ip 98.74.189.113 dst_ip 92.254.124.141 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10290 flower src_mac 02:e7:7e:69:02:ec dst_mac 02:a3:3e:a1:da:53 vlan_id 107 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10291 flower src_mac 02:bf:31:e2:7f:8b dst_mac 02:c9:99:ba:f5:13 vlan_id 2715 vlan_ethtype 0x0800 src_ip 98.228.133.112 dst_ip 103.142.5.41 ip_proto udp src_port 39405 dst_port 35277 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10292 flower src_mac 02:14:cd:33:fd:ba dst_mac 02:8e:1d:fc:3d:15 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10293 flower src_mac 02:6e:d8:8b:f7:89 dst_mac 02:3b:cb:6b:0a:a4 vlan_id 1562 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10294 flower src_mac 02:88:37:75:f5:f5 dst_mac 02:6c:d8:7b:5d:14 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10295 flower src_mac 02:a9:58:8e:a1:a7 dst_mac 02:88:8d:a3:a5:ed vlan_id 2806 vlan_ethtype 0x0800 src_ip 98.37.249.64 dst_ip 78.154.232.191 ip_proto udp src_port 48043 dst_port 63552 action pass && tc filter add dev swp1 ingress protocol ip pref 10296 flower src_mac 02:5a:b1:05:fa:70 dst_mac 02:fe:2a:4f:61:13 src_ip 62.87.248.63 dst_ip 85.150.139.48 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10297 flower src_mac 02:af:49:3f:4b:52 dst_mac 02:18:71:32:fc:01 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10298 flower src_mac 02:d2:c9:45:6d:2c dst_mac 02:d8:d6:37:90:23 vlan_id 581 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10299 flower src_mac 02:87:28:b9:65:12 dst_mac 02:50:54:ce:cb:90 vlan_id 3658 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10300 flower src_mac 02:eb:fa:2b:3d:cf dst_mac 02:4c:f0:ac:00:a5 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10301 flower src_mac 02:cc:95:6b:47:b7 dst_mac 02:9f:dc:f1:0c:5a src_ip 78.24.73.147 dst_ip 74.63.83.186 ip_proto udp src_port 65374 dst_port 19164 action trap && tc filter add dev swp1 ingress protocol ip pref 10302 flower src_mac 02:71:c9:96:33:ff dst_mac 02:28:4f:b8:cf:a6 src_ip 65.109.244.167 dst_ip 36.30.67.15 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10303 flower src_mac 02:be:63:04:25:91 dst_mac 02:3b:ed:2d:88:4e vlan_id 136 vlan_ethtype ip src_ip 113.73.96.124 dst_ip 64.142.127.185 ip_proto tcp src_port 60772 dst_port 62940 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10304 flower src_mac 02:ac:ee:ed:c5:33 dst_mac 02:32:66:14:ce:5d src_ip 55.163.80.27 dst_ip 116.119.60.70 ip_proto icmp code 5 type 0 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10305 flower src_mac 02:00:f2:35:07:97 dst_mac 02:a8:68:ed:8f:00 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10306 flower src_mac 02:28:85:3a:ab:89 dst_mac 02:6c:12:10:a0:78 vlan_id 1728 vlan_ethtype ipv4 src_ip 50.238.29.2 dst_ip 49.224.199.57 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10307 flower src_mac 02:8f:b5:ba:f8:3b dst_mac 02:18:b6:ea:2e:5d action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10308 flower src_mac 02:87:87:67:e9:9b dst_mac 02:4c:85:e1:79:92 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10309 flower src_mac 02:3a:5b:05:cc:9d dst_mac 02:45:a0:96:d9:b5 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10310 flower src_mac 02:3c:78:87:70:ef dst_mac 02:4f:ea:29:b3:8c vlan_id 1749 vlan_ethtype ipv4 src_ip 77.31.245.92 dst_ip 26.79.211.42 ip_proto udp src_port 40181 dst_port 26122 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10311 flower src_mac 02:be:cb:78:36:b4 dst_mac 02:04:26:2b:2e:a9 vlan_id 3964 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ip pref 10312 flower src_mac 02:36:33:11:4d:3c dst_mac 02:66:ab:dc:fd:35 src_ip 106.191.251.245 dst_ip 43.122.6.30 ip_proto udp src_port 24378 dst_port 45086 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10313 flower src_mac 02:58:e1:bc:e5:da dst_mac 02:44:72:1c:62:5a vlan_id 645 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10314 flower src_mac 02:5a:ae:62:fd:28 dst_mac 02:cc:8a:5a:5a:34 vlan_id 3695 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10315 flower src_mac 02:9b:fc:4e:3e:ca dst_mac 02:17:33:93:1d:6d vlan_id 1133 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10316 flower src_mac 02:df:c1:de:74:06 dst_mac 02:f8:e8:5b:b8:74 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10317 flower src_mac 02:3b:5b:ee:bd:75 dst_mac 02:d1:37:e6:0c:47 vlan_id 3336 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10318 flower src_mac 02:17:a8:e5:00:d5 dst_mac 02:c7:18:a8:e3:62 vlan_id 1174 vlan_ethtype 0x0800 src_ip 36.5.17.230 dst_ip 19.122.54.43 ip_proto tcp src_port 64794 dst_port 37625 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10319 flower src_mac 02:8c:ee:e2:80:41 dst_mac 02:22:60:44:61:9e vlan_id 2689 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10320 flower src_mac 02:ed:0f:94:11:0b dst_mac 02:95:bd:7c:de:bc vlan_id 1203 vlan_ethtype ipv4 src_ip 24.134.187.83 dst_ip 86.236.238.37 ip_proto tcp src_port 15477 dst_port 56958 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10321 flower src_mac 02:cc:eb:0b:59:66 dst_mac 02:6b:1a:39:a9:33 src_ip 33.219.234.132 dst_ip 18.157.153.133 ip_proto udp src_port 25871 dst_port 39088 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10322 flower src_mac 02:71:df:2c:7a:da dst_mac 02:cc:bb:3e:74:ca src_ip 103.27.148.229 dst_ip 126.29.173.74 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10323 flower src_mac 02:54:01:a1:b0:aa dst_mac 02:87:8b:6b:22:3c src_ip 73.52.163.85 dst_ip 19.64.133.146 ip_proto udp src_port 33673 dst_port 19744 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10324 flower src_mac 02:51:7d:25:30:a7 dst_mac 02:6f:d4:87:4c:72 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10325 flower src_mac 02:49:7f:e9:f8:19 dst_mac 02:f8:8c:46:55:bd vlan_id 93 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10326 flower src_mac 02:10:47:dd:62:70 dst_mac 02:30:e7:ff:49:5f vlan_id 203 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10327 flower src_mac 02:c3:dc:61:63:9c dst_mac 02:9d:1d:0b:6f:be vlan_id 1505 vlan_ethtype ip src_ip 64.127.115.170 dst_ip 104.124.52.82 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10328 flower src_mac 02:42:43:26:ab:9c dst_mac 02:3f:29:94:43:05 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10329 flower src_mac 02:08:cd:d8:7c:7b dst_mac 02:2b:b4:56:78:6d vlan_id 21 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10330 flower src_mac 02:5a:dc:2d:f5:0d dst_mac 02:a5:88:98:bd:7a vlan_id 3329 vlan_ethtype ip src_ip 93.150.145.58 dst_ip 27.35.35.189 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10331 flower src_mac 02:9d:c7:17:64:bc dst_mac 02:2f:95:e7:ab:36 vlan_id 201 vlan_ethtype 0x0800 src_ip 15.76.209.77 dst_ip 83.167.135.155 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10332 flower src_mac 02:84:b6:6a:79:d7 dst_mac 02:2e:fb:d8:52:a7 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10333 flower src_mac 02:3e:5e:67:ef:1a dst_mac 02:91:b6:cd:52:36 src_ip 61.196.31.20 dst_ip 34.53.135.139 ip_proto icmp code 251 type 11 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10334 flower src_mac 02:83:a6:9e:64:43 dst_mac 02:7c:2e:7e:67:87 vlan_id 3943 vlan_ethtype ipv4 src_ip 45.52.145.224 dst_ip 98.241.235.14 action trap && tc filter add dev swp1 ingress protocol ip pref 10335 flower src_mac 02:fe:27:24:d0:3e dst_mac 02:c0:34:95:07:9a src_ip 40.160.107.55 dst_ip 49.247.205.240 ip_proto tcp src_port 42628 dst_port 14448 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10336 flower src_mac 02:ca:f1:88:31:88 dst_mac 02:4a:a3:65:a8:dc action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10337 flower src_mac 02:ed:e3:00:6b:45 dst_mac 02:59:c6:de:c6:53 vlan_id 3326 vlan_ethtype ipv4 src_ip 118.211.108.183 dst_ip 65.62.179.129 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10338 flower src_mac 02:4a:39:f5:1d:2f dst_mac 02:0a:e5:da:d9:c7 vlan_id 1697 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10339 flower src_mac 02:65:68:f2:36:57 dst_mac 02:ee:77:df:97:bb vlan_id 2396 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10340 flower src_mac 02:9b:58:14:ba:63 dst_mac 02:a8:8e:5b:c2:30 vlan_id 2365 vlan_ethtype 0x0800 src_ip 51.210.95.10 dst_ip 40.3.32.20 ip_proto udp src_port 14228 dst_port 55835 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10341 flower src_mac 02:a1:3b:8a:4c:fc dst_mac 02:01:72:08:db:4c vlan_id 3253 vlan_ethtype 0x0800 src_ip 90.70.45.90 dst_ip 42.70.243.38 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10342 flower src_mac 02:a2:c9:d9:62:dd dst_mac 02:81:9a:27:0f:3e vlan_id 1682 vlan_ethtype 0x0800 src_ip 67.199.52.146 dst_ip 109.166.4.231 ip_proto udp src_port 6130 dst_port 61132 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10343 flower src_mac 02:9a:5e:56:26:e0 dst_mac 02:01:3d:6d:5a:b7 vlan_id 212 vlan_ethtype ipv4 src_ip 26.185.75.198 dst_ip 88.10.29.179 action pass && tc filter add dev swp1 ingress protocol ip pref 10344 flower src_mac 02:17:88:0a:f9:e4 dst_mac 02:ba:ca:a2:34:cb src_ip 107.6.58.68 dst_ip 70.12.140.205 ip_proto udp src_port 56654 dst_port 32507 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10345 flower src_mac 02:78:8f:9c:22:48 dst_mac 02:a8:eb:95:8e:29 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10346 flower src_mac 02:00:0a:8e:27:e4 dst_mac 02:09:21:da:9e:20 vlan_id 3860 vlan_ethtype ip src_ip 82.4.110.104 dst_ip 119.159.94.90 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10347 flower src_mac 02:18:b8:0a:ac:08 dst_mac 02:be:89:be:6e:c7 vlan_id 1313 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10348 flower src_mac 02:03:74:33:fb:79 dst_mac 02:42:e0:21:43:6a src_ip 65.161.198.247 dst_ip 80.171.247.197 ip_proto icmp code 198 type 15 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10349 flower src_mac 02:54:fc:2a:e9:d7 dst_mac 02:e5:38:39:c9:77 src_ip 14.47.172.119 dst_ip 67.108.100.250 ip_proto udp src_port 10607 dst_port 1108 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10350 flower src_mac 02:03:8c:3f:67:54 dst_mac 02:cd:fa:38:06:a1 vlan_id 14 vlan_ethtype 0x0800 src_ip 42.249.97.107 dst_ip 36.167.80.207 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10351 flower src_mac 02:4d:40:8e:39:d3 dst_mac 02:7d:d1:c1:c0:50 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10352 flower src_mac 02:f1:06:56:e4:e4 dst_mac 02:db:81:31:7a:54 vlan_id 1893 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10353 flower src_mac 02:22:3d:2e:d5:fb dst_mac 02:dd:b5:c6:01:40 src_ip 57.59.109.226 dst_ip 34.210.220.163 ip_proto tcp src_port 50313 dst_port 47239 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10354 flower src_mac 02:a4:15:56:ab:91 dst_mac 02:cb:14:dc:ad:f8 vlan_id 3199 vlan_ethtype 0x0800 src_ip 39.54.64.192 dst_ip 51.154.56.115 ip_proto tcp src_port 17187 dst_port 31361 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10355 flower src_mac 02:30:ab:67:6b:26 dst_mac 02:4c:ba:b9:23:21 src_ip 110.177.32.131 dst_ip 66.101.65.114 ip_proto icmp code 134 type 11 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10356 flower src_mac 02:8e:03:ee:19:b3 dst_mac 02:c4:29:db:24:5d vlan_id 3074 vlan_ethtype ipv4 src_ip 68.132.46.33 dst_ip 14.11.67.181 ip_proto tcp src_port 39376 dst_port 38696 action trap && tc filter add dev swp1 ingress protocol ip pref 10357 flower src_mac 02:16:52:42:08:89 dst_mac 02:4d:2c:20:73:15 src_ip 124.75.143.215 dst_ip 70.98.6.134 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10358 flower src_mac 02:30:68:40:72:9a dst_mac 02:bc:95:b6:60:f7 vlan_id 3 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10359 flower src_mac 02:b4:d3:70:28:15 dst_mac 02:97:17:b6:18:13 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10360 flower src_mac 02:44:e1:a0:a6:da dst_mac 02:ed:ac:ba:ec:7a action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10361 flower src_mac 02:b0:b6:20:29:6c dst_mac 02:55:61:e9:fe:f1 vlan_id 718 vlan_ethtype ip src_ip 60.10.2.177 dst_ip 73.109.175.212 action pass && tc filter add dev swp1 ingress protocol ip pref 10362 flower src_mac 02:17:7c:dd:c2:2c dst_mac 02:92:b8:55:17:27 src_ip 104.58.166.137 dst_ip 13.179.253.11 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10363 flower src_mac 02:8c:fb:24:9c:6a dst_mac 02:ea:6d:6a:74:1d vlan_id 3234 vlan_ethtype ipv4 src_ip 117.115.185.250 dst_ip 91.9.76.156 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10364 flower src_mac 02:24:fb:77:ce:06 dst_mac 02:b6:66:f9:b9:34 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10365 flower src_mac 02:d9:0a:96:9c:a8 dst_mac 02:ff:9b:dc:57:54 src_ip 44.220.207.95 dst_ip 69.129.159.123 ip_proto udp src_port 63770 dst_port 35565 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10366 flower src_mac 02:5c:25:f0:06:a0 dst_mac 02:26:df:b2:3b:61 src_ip 75.84.89.92 dst_ip 115.48.31.209 ip_proto icmp code 234 type 11 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10367 flower src_mac 02:2c:77:8c:f7:80 dst_mac 02:5a:99:d3:c5:d9 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10368 flower src_mac 02:02:55:01:e8:b9 dst_mac 02:81:47:a0:34:92 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10369 flower src_mac 02:0c:94:cc:f3:4b dst_mac 02:f6:d3:8c:23:1d src_ip 67.220.160.16 dst_ip 65.220.7.220 ip_proto icmp code 94 type 14 action pass && tc filter add dev swp1 ingress protocol ip pref 10370 flower src_mac 02:f9:a4:2c:92:8f dst_mac 02:8e:a5:e4:e4:3b src_ip 119.55.73.83 dst_ip 20.159.66.46 ip_proto icmp code 116 type 8 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10371 flower src_mac 02:43:30:60:fc:3d dst_mac 02:07:70:77:7c:8c vlan_id 2473 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10372 flower src_mac 02:65:e9:f5:a9:25 dst_mac 02:93:9c:01:29:56 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10373 flower src_mac 02:51:98:8b:1a:30 dst_mac 02:c6:54:bb:39:25 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10374 flower src_mac 02:a7:83:d3:73:f1 dst_mac 02:57:ff:b3:6f:cf action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10375 flower src_mac 02:0e:62:c2:de:a2 dst_mac 02:fe:ff:e4:e1:c9 src_ip 55.48.14.117 dst_ip 87.188.242.140 ip_proto icmp code 5 type 13 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10376 flower src_mac 02:78:01:cd:49:d4 dst_mac 02:66:86:f6:12:4f vlan_id 1392 vlan_ethtype ipv4 src_ip 96.63.172.38 dst_ip 86.242.159.53 ip_proto tcp src_port 53410 dst_port 38712 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10377 flower src_mac 02:a3:da:6e:ff:c7 dst_mac 02:bf:31:07:be:b2 src_ip 122.41.181.100 dst_ip 76.116.57.215 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10378 flower src_mac 02:f7:21:7b:56:02 dst_mac 02:33:12:12:d5:10 src_ip 103.157.52.230 dst_ip 71.218.32.14 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10379 flower src_mac 02:1e:4f:f0:1a:b2 dst_mac 02:e2:61:19:e2:ca vlan_id 1129 vlan_ethtype ip src_ip 66.67.82.34 dst_ip 17.82.179.157 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10380 flower src_mac 02:31:b8:34:c5:ec dst_mac 02:96:aa:29:7b:47 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10381 flower src_mac 02:30:68:74:f5:ad dst_mac 02:c3:13:e6:e1:72 vlan_id 1405 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10382 flower src_mac 02:3f:43:0d:8e:d8 dst_mac 02:91:37:e1:b1:38 vlan_id 2360 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10383 flower src_mac 02:37:84:30:01:99 dst_mac 02:65:1b:13:7e:1b vlan_id 839 vlan_ethtype ip src_ip 108.16.82.158 dst_ip 55.110.141.98 ip_proto tcp src_port 53702 dst_port 40146 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10384 flower src_mac 02:e1:83:92:1c:88 dst_mac 02:0a:6b:4c:bf:c8 vlan_id 387 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10385 flower src_mac 02:68:e8:a8:09:7b dst_mac 02:a2:4b:3a:93:13 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10386 flower src_mac 02:e7:79:53:ae:09 dst_mac 02:78:20:ea:90:7b vlan_id 171 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10387 flower src_mac 02:c2:de:49:78:63 dst_mac 02:c6:67:f3:30:63 vlan_id 216 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10388 flower src_mac 02:4f:f8:dc:dc:d1 dst_mac 02:f6:5e:c0:e7:44 vlan_id 2985 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10389 flower src_mac 02:b5:0d:d8:89:9a dst_mac 02:0f:c4:3c:73:da src_ip 38.162.75.172 dst_ip 41.60.109.170 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10390 flower src_mac 02:4e:3b:cf:fb:78 dst_mac 02:54:ba:a1:b0:e3 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10391 flower src_mac 02:c6:67:aa:75:f9 dst_mac 02:21:c9:48:95:e0 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10392 flower src_mac 02:ed:96:3f:25:67 dst_mac 02:76:2e:3f:fc:eb vlan_id 2999 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10393 flower src_mac 02:f1:ab:76:fb:54 dst_mac 02:12:ee:bc:5a:36 vlan_id 2940 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10394 flower src_mac 02:a5:82:38:f4:cf dst_mac 02:66:96:27:7f:de vlan_id 1385 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10395 flower src_mac 02:f0:b3:51:31:68 dst_mac 02:d6:66:d7:6b:79 vlan_id 3099 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10396 flower src_mac 02:f7:a7:9e:bc:11 dst_mac 02:a5:a0:50:2c:eb vlan_id 402 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10397 flower src_mac 02:05:5b:c1:f2:7e dst_mac 02:77:83:f2:a6:a6 vlan_id 2932 vlan_ethtype ip src_ip 42.226.101.199 dst_ip 78.80.196.88 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10398 flower src_mac 02:4f:9b:07:cb:ec dst_mac 02:ad:20:2c:09:91 vlan_id 304 vlan_ethtype ip src_ip 55.47.143.151 dst_ip 38.25.175.142 ip_proto tcp src_port 24646 dst_port 1758 action pass && tc filter add dev swp1 ingress protocol ip pref 10399 flower src_mac 02:f1:fe:87:4a:c7 dst_mac 02:eb:8d:f2:71:d6 src_ip 124.97.77.204 dst_ip 83.171.183.27 ip_proto icmp code 144 type 15 action trap INFO asyncssh:logging.py:92 [conn=24, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=5] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 10400 flower src_mac 02:cb:46:6d:93:80 dst_mac 02:73:89:12:3c:50 vlan_id 344 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10401 flower src_mac 02:5f:97:94:94:6d dst_mac 02:26:cc:34:5a:9a vlan_id 679 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10402 flower src_mac 02:0c:f3:c5:fa:ee dst_mac 02:60:34:90:f1:82 vlan_id 3761 vlan_ethtype ip src_ip 70.198.171.26 dst_ip 33.44.108.216 ip_proto udp src_port 43320 dst_port 24953 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10403 flower src_mac 02:8d:2c:ef:7f:79 dst_mac 02:40:92:48:4e:28 vlan_id 398 vlan_ethtype ipv4 src_ip 63.236.20.213 dst_ip 50.97.62.93 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10404 flower src_mac 02:ea:0d:62:6a:51 dst_mac 02:43:55:a3:38:02 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10405 flower src_mac 02:43:a9:49:6b:05 dst_mac 02:dc:e9:fb:69:49 vlan_id 1007 vlan_ethtype 0x0800 src_ip 80.167.68.209 dst_ip 113.29.182.20 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10406 flower src_mac 02:c2:e7:44:f8:62 dst_mac 02:ff:7e:59:06:c9 action drop && tc filter add dev swp1 ingress protocol ip pref 10407 flower src_mac 02:cb:ec:3e:f5:ed dst_mac 02:e1:11:f7:cc:f4 src_ip 23.141.140.60 dst_ip 102.47.247.207 ip_proto icmp code 15 type 15 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10408 flower src_mac 02:35:06:98:83:a0 dst_mac 02:8d:c1:30:3a:6a src_ip 60.34.149.88 dst_ip 15.91.130.119 ip_proto tcp src_port 7531 dst_port 29929 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10409 flower src_mac 02:e5:79:b0:f2:a6 dst_mac 02:04:62:59:75:f4 vlan_id 3847 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10410 flower src_mac 02:9c:98:cf:87:08 dst_mac 02:9a:c9:7b:fc:0d src_ip 42.151.55.125 dst_ip 54.168.249.108 ip_proto udp src_port 2215 dst_port 60231 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10411 flower src_mac 02:d5:e8:e6:43:66 dst_mac 02:a4:02:e9:2f:22 action trap && tc filter add dev swp1 ingress protocol ip pref 10412 flower src_mac 02:bd:ba:7b:63:8e dst_mac 02:78:af:60:a9:e6 src_ip 115.157.226.7 dst_ip 93.200.23.213 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10413 flower src_mac 02:af:03:25:75:e9 dst_mac 02:8c:af:74:18:07 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10414 flower src_mac 02:a7:c0:24:7e:86 dst_mac 02:17:0f:72:db:d9 src_ip 52.84.253.32 dst_ip 56.106.70.30 ip_proto tcp src_port 52708 dst_port 16547 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10415 flower src_mac 02:a4:92:5c:34:62 dst_mac 02:e6:70:fb:6c:58 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10416 flower src_mac 02:07:f7:a6:e4:40 dst_mac 02:bf:e8:fd:34:46 vlan_id 337 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10417 flower src_mac 02:6e:24:b1:14:66 dst_mac 02:c0:67:8b:e2:de src_ip 65.129.105.19 dst_ip 49.191.161.155 ip_proto icmp code 251 type 12 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10418 flower src_mac 02:af:c6:fd:0a:07 dst_mac 02:22:e4:ad:7a:f6 vlan_id 1876 vlan_ethtype ip src_ip 70.51.189.227 dst_ip 121.158.99.79 action pass && tc filter add dev swp1 ingress protocol ip pref 10419 flower src_mac 02:77:cd:e6:59:ff dst_mac 02:19:18:3b:5c:7d src_ip 50.149.75.240 dst_ip 84.135.69.95 ip_proto icmp code 215 type 12 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10420 flower src_mac 02:ab:2f:4c:7f:e9 dst_mac 02:b2:af:66:77:45 vlan_id 1030 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10421 flower src_mac 02:56:8b:ea:4e:77 dst_mac 02:1b:22:29:70:18 vlan_id 2221 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10422 flower src_mac 02:90:a8:bd:d1:e5 dst_mac 02:20:b9:a9:4c:10 vlan_id 1740 vlan_ethtype 0x0800 src_ip 56.239.241.181 dst_ip 32.38.20.154 ip_proto tcp src_port 35657 dst_port 6530 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10423 flower src_mac 02:3e:3a:e6:b1:c6 dst_mac 02:96:90:15:c1:e6 vlan_id 623 vlan_ethtype ip src_ip 40.49.231.68 dst_ip 23.205.31.24 ip_proto tcp src_port 51496 dst_port 41994 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10424 flower src_mac 02:4e:00:1a:7a:3f dst_mac 02:62:3d:cc:e7:f1 src_ip 55.5.248.153 dst_ip 123.84.177.13 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10425 flower src_mac 02:bc:a7:92:18:35 dst_mac 02:f5:12:0e:d4:e1 vlan_id 1293 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10426 flower src_mac 02:39:3b:27:d6:b1 dst_mac 02:68:bb:84:5a:d5 vlan_id 1636 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10427 flower src_mac 02:bc:5c:bd:83:f1 dst_mac 02:6a:f9:d6:dd:b4 vlan_id 3220 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10428 flower src_mac 02:83:e1:f4:ef:c4 dst_mac 02:1b:5d:38:58:5b vlan_id 3317 vlan_ethtype 0x0800 src_ip 66.253.115.94 dst_ip 121.178.8.204 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10429 flower src_mac 02:e5:77:8a:6d:93 dst_mac 02:a2:f8:15:bd:8d vlan_id 240 vlan_ethtype 0x0800 src_ip 40.219.164.159 dst_ip 79.61.107.171 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10430 flower src_mac 02:0c:b6:99:dc:44 dst_mac 02:e2:cf:ac:fb:e8 vlan_id 3369 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10431 flower src_mac 02:c1:7d:b6:86:a3 dst_mac 02:2a:08:00:68:e7 vlan_id 526 vlan_ethtype 0x0800 src_ip 112.248.16.157 dst_ip 50.157.64.53 ip_proto udp src_port 23095 dst_port 24664 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10432 flower src_mac 02:ee:76:f2:49:ec dst_mac 02:5e:65:87:7c:b0 vlan_id 3424 vlan_ethtype ip src_ip 118.93.133.237 dst_ip 46.137.254.25 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10433 flower src_mac 02:31:b2:39:d9:84 dst_mac 02:37:b1:1b:fc:4f action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10434 flower src_mac 02:07:52:88:c8:f7 dst_mac 02:17:3b:7e:01:9e vlan_id 2567 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10435 flower src_mac 02:e0:28:67:9a:5a dst_mac 02:c6:0c:79:69:a6 vlan_id 3932 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10436 flower src_mac 02:9e:10:24:9e:c5 dst_mac 02:98:58:36:66:15 vlan_id 951 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ip pref 10437 flower src_mac 02:52:cf:81:dd:db dst_mac 02:d8:64:33:bc:c7 src_ip 77.191.155.182 dst_ip 35.96.222.36 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10438 flower src_mac 02:fe:fa:66:fa:bf dst_mac 02:1b:3c:73:5a:be vlan_id 3690 vlan_ethtype 0x0800 src_ip 82.97.151.197 dst_ip 75.214.176.86 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10439 flower src_mac 02:2c:33:2c:62:38 dst_mac 02:ef:b8:9b:06:f1 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10440 flower src_mac 02:30:c6:fe:d5:5a dst_mac 02:a7:d1:27:18:82 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10441 flower src_mac 02:f0:e2:3b:6a:aa dst_mac 02:dc:bb:6e:f9:5d vlan_id 1428 vlan_ethtype ipv4 src_ip 104.7.149.16 dst_ip 93.137.172.238 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10442 flower src_mac 02:0e:9e:2b:55:83 dst_mac 02:c5:2c:1d:1a:c2 vlan_id 1373 vlan_ethtype 0x0800 src_ip 71.53.150.76 dst_ip 35.107.252.125 ip_proto udp src_port 36833 dst_port 65167 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10443 flower src_mac 02:f7:4b:fd:8f:73 dst_mac 02:7a:39:57:77:65 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10444 flower src_mac 02:39:a2:ef:df:d1 dst_mac 02:38:65:13:83:1c vlan_id 2953 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10445 flower src_mac 02:e9:96:42:d6:04 dst_mac 02:64:7b:39:ee:00 vlan_id 4011 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10446 flower src_mac 02:d8:ff:89:14:eb dst_mac 02:eb:76:37:d4:49 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10447 flower src_mac 02:80:44:e9:32:6e dst_mac 02:bd:8a:d2:4f:07 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10448 flower src_mac 02:49:b4:55:77:f5 dst_mac 02:07:e1:71:84:47 vlan_id 1125 vlan_ethtype ipv4 src_ip 58.88.107.45 dst_ip 78.186.41.211 ip_proto tcp src_port 20700 dst_port 37252 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10449 flower src_mac 02:2e:44:df:02:99 dst_mac 02:f6:76:cb:9e:e9 vlan_id 1770 vlan_ethtype ipv4 src_ip 117.231.178.77 dst_ip 68.237.134.46 ip_proto udp src_port 3593 dst_port 22964 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10450 flower src_mac 02:09:8d:b0:27:59 dst_mac 02:1d:19:c0:80:5a src_ip 57.159.54.60 dst_ip 93.69.119.15 ip_proto tcp src_port 53754 dst_port 17247 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10451 flower src_mac 02:5b:90:f9:4d:8b dst_mac 02:75:59:a4:89:02 vlan_id 3529 vlan_ethtype ip src_ip 79.187.131.88 dst_ip 121.155.17.153 ip_proto udp src_port 39659 dst_port 1430 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10452 flower src_mac 02:5d:4f:ae:02:90 dst_mac 02:82:d2:59:c6:c6 vlan_id 2401 vlan_ethtype 0x0800 src_ip 49.32.42.141 dst_ip 107.174.247.184 ip_proto tcp src_port 34288 dst_port 37536 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10453 flower src_mac 02:5e:34:4b:0c:be dst_mac 02:77:e6:e9:53:e9 vlan_id 2740 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10454 flower src_mac 02:91:d0:7c:f0:2e dst_mac 02:c6:46:cb:72:f4 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10455 flower src_mac 02:31:42:b6:6f:60 dst_mac 02:54:95:e4:90:86 src_ip 113.111.37.210 dst_ip 33.134.233.249 ip_proto icmp code 120 type 12 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10456 flower src_mac 02:6a:04:27:c7:02 dst_mac 02:19:40:04:92:64 vlan_id 2608 vlan_ethtype 0x0800 src_ip 112.159.81.158 dst_ip 28.49.131.217 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10457 flower src_mac 02:6a:63:18:02:6a dst_mac 02:bb:45:f7:b2:ad vlan_id 2509 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10458 flower src_mac 02:b5:d7:09:79:37 dst_mac 02:b5:12:5f:3e:3c vlan_id 3486 vlan_ethtype ip src_ip 43.243.82.152 dst_ip 121.133.233.1 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10459 flower src_mac 02:7b:45:b9:58:35 dst_mac 02:f7:c1:e4:01:78 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10460 flower src_mac 02:31:02:b2:0f:9b dst_mac 02:fb:73:23:05:ff action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10461 flower src_mac 02:eb:53:97:ff:f2 dst_mac 02:71:d7:d1:63:a4 action trap && tc filter add dev swp1 ingress protocol ip pref 10462 flower src_mac 02:26:9f:5d:6c:38 dst_mac 02:ff:51:9a:4a:75 src_ip 42.133.54.105 dst_ip 106.150.28.52 ip_proto icmp code 25 type 11 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10463 flower src_mac 02:18:25:8d:5a:12 dst_mac 02:c8:2c:ba:f6:bb action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10464 flower src_mac 02:12:51:08:48:ca dst_mac 02:7b:c8:18:14:09 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10465 flower src_mac 02:07:39:f2:bb:72 dst_mac 02:62:07:d9:cd:e0 vlan_id 993 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10466 flower src_mac 02:7b:8d:30:b7:5c dst_mac 02:f9:0c:61:0e:9b action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10467 flower src_mac 02:f3:94:d6:25:5c dst_mac 02:dd:5f:83:69:7a action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10468 flower src_mac 02:df:7d:1d:cb:8c dst_mac 02:07:bf:17:19:94 vlan_id 1117 vlan_ethtype ipv4 src_ip 43.176.151.177 dst_ip 85.35.58.241 ip_proto udp src_port 37484 dst_port 12493 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10469 flower src_mac 02:62:bc:ac:d2:58 dst_mac 02:11:d6:1c:f3:76 vlan_id 652 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10470 flower src_mac 02:26:2c:74:86:6b dst_mac 02:1a:ab:02:78:d7 action trap && tc filter add dev swp1 ingress protocol ip pref 10471 flower src_mac 02:a9:e4:24:3c:24 dst_mac 02:eb:0b:f4:b0:67 src_ip 27.249.70.248 dst_ip 103.142.211.177 ip_proto udp src_port 57702 dst_port 4267 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10472 flower src_mac 02:e0:0a:66:8c:69 dst_mac 02:88:19:55:03:5d vlan_id 1919 vlan_ethtype ipv4 src_ip 122.46.228.14 dst_ip 85.82.155.76 ip_proto udp src_port 14910 dst_port 14131 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10473 flower src_mac 02:27:5b:c1:04:f8 dst_mac 02:9c:6a:42:fc:07 vlan_id 1978 vlan_ethtype 0x0800 src_ip 40.98.60.202 dst_ip 16.239.255.103 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10474 flower src_mac 02:75:0e:31:0e:e4 dst_mac 02:74:24:1f:64:33 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10475 flower src_mac 02:0d:a6:07:4d:bc dst_mac 02:75:1a:22:90:ee action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10476 flower src_mac 02:b6:52:df:95:98 dst_mac 02:63:07:4c:1c:76 src_ip 92.184.160.203 dst_ip 69.58.116.173 ip_proto tcp src_port 52246 dst_port 18557 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10477 flower src_mac 02:fc:89:5a:cf:42 dst_mac 02:7b:2c:ac:d0:14 vlan_id 1903 vlan_ethtype 0x0800 src_ip 26.247.219.96 dst_ip 110.58.63.69 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10478 flower src_mac 02:ed:87:13:0e:c4 dst_mac 02:f8:4f:9e:5d:da vlan_id 3203 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ip pref 10479 flower src_mac 02:01:b6:d5:3a:aa dst_mac 02:89:12:5d:9b:c6 src_ip 19.101.67.69 dst_ip 125.244.37.141 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10480 flower src_mac 02:a3:b0:b3:48:e4 dst_mac 02:fd:4a:16:8e:4a vlan_id 2861 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10481 flower src_mac 02:f3:f5:24:e0:8a dst_mac 02:c8:e0:91:a9:59 vlan_id 2067 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10482 flower src_mac 02:3b:b1:5b:de:f2 dst_mac 02:8d:d1:69:83:8f vlan_id 1195 vlan_ethtype 0x0800 src_ip 55.140.203.206 dst_ip 72.165.42.46 ip_proto udp src_port 42159 dst_port 8409 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10483 flower src_mac 02:20:4d:60:46:e9 dst_mac 02:a8:aa:a2:14:0d src_ip 58.30.8.152 dst_ip 123.31.51.64 ip_proto icmp code 113 type 4 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10484 flower src_mac 02:13:50:78:a5:36 dst_mac 02:47:a7:b5:b0:2c vlan_id 3451 vlan_ethtype 0x0800 src_ip 66.49.219.37 dst_ip 68.149.165.190 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10485 flower src_mac 02:26:51:6b:eb:0b dst_mac 02:b1:8e:cd:82:e5 vlan_id 3917 vlan_ethtype 0x0800 src_ip 66.251.50.224 dst_ip 119.235.218.150 ip_proto udp src_port 7288 dst_port 30992 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10486 flower src_mac 02:c8:a7:3f:c7:07 dst_mac 02:1b:8d:7a:d5:8a vlan_id 438 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ip pref 10487 flower src_mac 02:2c:c4:8c:45:b7 dst_mac 02:1f:bb:00:e1:92 src_ip 121.224.249.98 dst_ip 59.254.135.15 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10488 flower src_mac 02:53:50:b2:ff:2d dst_mac 02:67:ff:5a:ca:ff src_ip 62.41.5.25 dst_ip 64.156.52.192 ip_proto icmp code 42 type 8 action trap && tc filter add dev swp1 ingress protocol ip pref 10489 flower src_mac 02:63:b4:52:6f:48 dst_mac 02:7b:9e:d2:f9:72 src_ip 96.170.110.196 dst_ip 30.72.177.41 ip_proto tcp src_port 43041 dst_port 3334 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10490 flower src_mac 02:e4:ed:45:b1:55 dst_mac 02:42:38:c6:c4:a6 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10491 flower src_mac 02:9b:cf:81:9d:0c dst_mac 02:ca:2b:2c:9c:b8 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10492 flower src_mac 02:a5:67:fd:76:07 dst_mac 02:fd:93:a9:a2:a4 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10493 flower src_mac 02:0e:e7:57:e0:04 dst_mac 02:0a:aa:89:90:d0 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10494 flower src_mac 02:44:75:df:e1:78 dst_mac 02:86:40:20:95:15 vlan_id 2323 vlan_ethtype ip src_ip 32.59.121.180 dst_ip 48.102.11.140 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10495 flower src_mac 02:90:0b:d7:e9:c9 dst_mac 02:c6:2a:2f:10:0a vlan_id 2412 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10496 flower src_mac 02:d8:c7:e1:c8:dc dst_mac 02:a0:14:a1:3c:2a action trap && tc filter add dev swp1 ingress protocol ip pref 10497 flower src_mac 02:5d:b7:34:57:2b dst_mac 02:12:f8:23:bb:8f src_ip 91.40.114.223 dst_ip 86.4.83.220 ip_proto icmp code 197 type 3 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10498 flower src_mac 02:a9:b6:27:27:0c dst_mac 02:54:56:e8:bf:4c vlan_id 3834 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10499 flower src_mac 02:32:0c:5b:b2:e1 dst_mac 02:d8:12:74:66:6b vlan_id 1275 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10500 flower src_mac 02:f9:01:db:93:99 dst_mac 02:6d:26:e8:ee:1d action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10501 flower src_mac 02:9d:e7:f6:45:e7 dst_mac 02:91:c5:fe:ac:39 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10502 flower src_mac 02:f5:3d:c9:63:c6 dst_mac 02:c0:c8:36:a5:51 vlan_id 82 vlan_ethtype 0x0800 src_ip 52.201.95.30 dst_ip 41.54.180.187 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10503 flower src_mac 02:9b:8a:26:30:c5 dst_mac 02:ec:58:16:e7:ae vlan_id 1367 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10504 flower src_mac 02:c1:39:de:84:08 dst_mac 02:98:1a:a9:20:74 vlan_id 642 vlan_ethtype ip src_ip 38.43.41.28 dst_ip 24.153.39.57 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10505 flower src_mac 02:1f:e7:ca:45:f6 dst_mac 02:88:77:03:ad:41 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10506 flower src_mac 02:10:09:3e:ec:bf dst_mac 02:9e:1a:af:71:13 vlan_id 705 vlan_ethtype ipv4 src_ip 80.175.37.190 dst_ip 54.61.115.8 ip_proto tcp src_port 47647 dst_port 43704 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10507 flower src_mac 02:7b:37:69:87:71 dst_mac 02:1b:22:62:5d:8d src_ip 71.85.138.240 dst_ip 32.46.77.228 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10508 flower src_mac 02:64:b4:f2:f7:bd dst_mac 02:f4:d8:78:55:04 vlan_id 2387 vlan_ethtype ip src_ip 55.188.113.100 dst_ip 86.163.170.225 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10509 flower src_mac 02:ff:1e:4d:7e:1e dst_mac 02:6e:ad:92:b7:cb action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10510 flower src_mac 02:0e:71:0f:2f:e1 dst_mac 02:d7:78:8f:42:82 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10511 flower src_mac 02:96:1a:59:55:63 dst_mac 02:68:6d:2c:18:85 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10512 flower src_mac 02:c2:57:c3:6e:08 dst_mac 02:1f:c7:fe:43:f4 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10513 flower src_mac 02:7b:45:b9:95:c5 dst_mac 02:3c:94:b2:d5:78 src_ip 103.213.141.233 dst_ip 125.33.159.103 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10514 flower src_mac 02:8d:eb:04:08:51 dst_mac 02:db:db:ce:42:42 src_ip 121.165.190.60 dst_ip 95.215.51.50 ip_proto udp src_port 19491 dst_port 62556 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10515 flower src_mac 02:fc:23:d6:f7:56 dst_mac 02:e7:f5:a1:2a:fa action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10516 flower src_mac 02:67:05:77:e6:99 dst_mac 02:be:ae:92:c2:61 vlan_id 2390 vlan_ethtype 0x0800 src_ip 119.9.5.4 dst_ip 90.48.23.231 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10517 flower src_mac 02:1b:b0:77:4a:99 dst_mac 02:9f:f9:ef:f2:b2 vlan_id 3541 vlan_ethtype ipv4 src_ip 113.177.182.25 dst_ip 66.53.103.177 ip_proto tcp src_port 37512 dst_port 970 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10518 flower src_mac 02:af:85:4f:fc:7b dst_mac 02:10:fd:5e:59:83 vlan_id 1495 vlan_ethtype 0x0800 src_ip 61.87.251.237 dst_ip 65.54.138.103 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10519 flower src_mac 02:65:7b:31:29:53 dst_mac 02:5d:c4:4b:7b:dc src_ip 28.230.210.228 dst_ip 63.204.141.111 ip_proto tcp src_port 49950 dst_port 60943 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10520 flower src_mac 02:a9:f6:a5:d6:70 dst_mac 02:0e:18:84:28:bc vlan_id 2400 vlan_ethtype ipv4 src_ip 53.37.2.249 dst_ip 25.5.4.147 ip_proto udp src_port 56126 dst_port 44489 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10521 flower src_mac 02:ae:93:38:aa:7f dst_mac 02:33:f3:1b:67:f1 src_ip 21.136.93.41 dst_ip 94.65.85.49 ip_proto udp src_port 16349 dst_port 50519 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10522 flower src_mac 02:66:af:1c:7b:e5 dst_mac 02:8a:48:f1:6b:04 vlan_id 802 vlan_ethtype 0x0800 src_ip 12.226.189.17 dst_ip 11.121.179.24 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10523 flower src_mac 02:8d:51:3f:62:aa dst_mac 02:7a:0f:28:f3:63 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10524 flower src_mac 02:67:db:78:ef:57 dst_mac 02:2b:fd:3c:4a:f4 vlan_id 612 vlan_ethtype 0x0800 src_ip 104.223.40.28 dst_ip 66.245.102.174 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10525 flower src_mac 02:2f:97:06:e2:2c dst_mac 02:76:dd:b5:a8:9d vlan_id 2828 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10526 flower src_mac 02:ce:97:f3:18:eb dst_mac 02:43:49:32:cc:7e src_ip 47.127.79.122 dst_ip 112.108.22.190 ip_proto udp src_port 38651 dst_port 23968 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10527 flower src_mac 02:a3:e3:5a:2c:bf dst_mac 02:cf:a9:08:3d:68 vlan_id 2211 vlan_ethtype ipv4 src_ip 110.141.242.124 dst_ip 21.123.12.89 ip_proto udp src_port 48295 dst_port 60930 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10528 flower src_mac 02:88:dd:83:5f:5a dst_mac 02:ae:44:23:cd:34 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10529 flower src_mac 02:10:a4:08:87:45 dst_mac 02:c1:a3:b3:4a:c0 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10530 flower src_mac 02:fc:bd:2a:0f:20 dst_mac 02:7a:73:b3:49:b0 vlan_id 2686 vlan_ethtype 0x0800 src_ip 73.153.237.121 dst_ip 77.124.236.197 ip_proto udp src_port 32633 dst_port 59284 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10531 flower src_mac 02:9f:d6:4f:18:54 dst_mac 02:d7:07:b9:68:6a src_ip 105.34.29.33 dst_ip 117.255.224.209 ip_proto tcp src_port 20127 dst_port 42882 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10532 flower src_mac 02:b3:79:9e:6a:86 dst_mac 02:42:af:d4:3e:53 vlan_id 1040 vlan_ethtype 0x0800 src_ip 71.160.233.56 dst_ip 107.229.162.92 ip_proto tcp src_port 5045 dst_port 43843 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10533 flower src_mac 02:52:f9:7c:1b:de dst_mac 02:c5:88:11:ae:27 vlan_id 125 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10534 flower src_mac 02:f4:39:25:09:3e dst_mac 02:c4:d7:5f:fc:e8 vlan_id 2221 vlan_ethtype ipv4 src_ip 101.80.22.223 dst_ip 97.190.145.89 ip_proto tcp src_port 51546 dst_port 9125 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10535 flower src_mac 02:74:6c:94:b3:14 dst_mac 02:2c:f1:17:63:b7 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10536 flower src_mac 02:14:49:01:d7:31 dst_mac 02:d4:37:e8:3e:01 src_ip 107.208.223.231 dst_ip 102.160.194.133 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10537 flower src_mac 02:fe:5a:42:44:b4 dst_mac 02:fa:14:a7:e2:59 vlan_id 2540 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10538 flower src_mac 02:81:59:28:f6:cc dst_mac 02:b0:3d:95:c1:cb vlan_id 1732 vlan_ethtype ip src_ip 108.217.71.64 dst_ip 116.249.131.165 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10539 flower src_mac 02:dc:7d:95:a5:06 dst_mac 02:c2:fa:6b:a7:50 vlan_id 567 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10540 flower src_mac 02:0a:7b:e3:c7:3b dst_mac 02:b6:ea:5e:52:c7 src_ip 16.22.43.205 dst_ip 113.149.54.14 ip_proto icmp code 120 type 5 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10541 flower src_mac 02:66:bf:eb:d9:9f dst_mac 02:6c:b4:d7:87:8b src_ip 79.207.186.39 dst_ip 111.71.159.130 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10542 flower src_mac 02:4d:4b:b6:42:89 dst_mac 02:bb:c5:9d:a6:a3 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10543 flower src_mac 02:c8:07:a0:7d:42 dst_mac 02:c6:6b:37:66:9f action drop && tc filter add dev swp1 ingress protocol ip pref 10544 flower src_mac 02:46:cf:b0:23:4a dst_mac 02:e1:8c:ed:ec:42 src_ip 75.156.148.188 dst_ip 33.11.145.132 ip_proto icmp code 145 type 0 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10545 flower src_mac 02:e7:73:0b:a7:b8 dst_mac 02:08:2f:67:e8:59 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10546 flower src_mac 02:28:b3:45:2d:eb dst_mac 02:29:54:e0:30:8a action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10547 flower src_mac 02:c9:6f:d3:43:46 dst_mac 02:b4:3e:73:57:5c action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10548 flower src_mac 02:dc:59:20:08:b9 dst_mac 02:1b:1c:fe:b2:01 action pass && tc filter add dev swp1 ingress protocol ip pref 10549 flower src_mac 02:a7:22:0f:fc:63 dst_mac 02:e4:88:92:6d:9b src_ip 38.210.159.7 dst_ip 66.104.33.23 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10550 flower src_mac 02:a6:12:6b:e1:18 dst_mac 02:86:55:ae:6f:26 vlan_id 261 vlan_ethtype ipv4 src_ip 52.41.146.136 dst_ip 79.76.235.56 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10551 flower src_mac 02:fd:b3:fe:e2:ae dst_mac 02:fc:3c:fd:2f:32 vlan_id 1029 vlan_ethtype ipv4 src_ip 29.93.219.191 dst_ip 66.188.30.203 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10552 flower src_mac 02:04:50:27:0b:b9 dst_mac 02:5f:af:68:7c:d6 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10553 flower src_mac 02:7a:dd:89:59:a6 dst_mac 02:1b:05:dd:79:d8 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10554 flower src_mac 02:5a:91:aa:0a:2e dst_mac 02:e5:25:eb:17:d4 vlan_id 1030 vlan_ethtype ipv4 src_ip 95.240.127.140 dst_ip 15.93.13.4 ip_proto udp src_port 56978 dst_port 12054 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10555 flower src_mac 02:4f:7b:c1:6d:d0 dst_mac 02:ae:ad:b7:75:80 vlan_id 134 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10556 flower src_mac 02:7f:8b:83:dc:b9 dst_mac 02:5a:72:05:1f:2e vlan_id 2186 vlan_ethtype ip src_ip 59.148.74.32 dst_ip 58.111.144.187 ip_proto tcp src_port 57964 dst_port 41337 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10557 flower src_mac 02:96:b7:81:ad:86 dst_mac 02:9d:a6:51:0a:af action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10558 flower src_mac 02:a5:e9:6d:67:85 dst_mac 02:b6:f3:4b:b5:5d vlan_id 2913 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10559 flower src_mac 02:ef:2b:6a:50:c0 dst_mac 02:3d:e4:cc:cc:c1 vlan_id 387 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10560 flower src_mac 02:50:22:2d:6b:9d dst_mac 02:c3:e9:5a:91:7e vlan_id 857 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10561 flower src_mac 02:a5:cb:2f:b7:eb dst_mac 02:bb:34:88:43:1f action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10562 flower src_mac 02:f0:05:4f:d2:35 dst_mac 02:ec:e2:b8:c1:36 vlan_id 3488 vlan_ethtype 0x0800 src_ip 95.190.72.85 dst_ip 38.196.13.224 ip_proto tcp src_port 24312 dst_port 4768 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10563 flower src_mac 02:ce:ce:87:c8:6c dst_mac 02:73:b6:ef:74:9b vlan_id 850 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10564 flower src_mac 02:86:ec:89:84:97 dst_mac 02:6a:4b:54:88:dc vlan_id 1585 vlan_ethtype ip src_ip 113.48.251.28 dst_ip 124.219.249.132 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10565 flower src_mac 02:57:68:fa:a0:e4 dst_mac 02:12:77:4b:41:c2 vlan_id 1043 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10566 flower src_mac 02:c6:d4:72:05:09 dst_mac 02:a5:1f:05:d8:d3 src_ip 90.191.103.187 dst_ip 18.98.145.25 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10567 flower src_mac 02:74:bc:60:f8:61 dst_mac 02:cf:f8:db:f1:6a vlan_id 2019 vlan_ethtype ip src_ip 93.95.50.224 dst_ip 104.70.43.87 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10568 flower src_mac 02:8b:62:e3:a6:b4 dst_mac 02:95:57:ff:3e:85 vlan_id 3485 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10569 flower src_mac 02:4a:96:6a:3a:f2 dst_mac 02:46:64:3f:f2:d6 vlan_id 3001 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10570 flower src_mac 02:17:b1:d3:dc:6c dst_mac 02:26:6e:40:7e:b2 vlan_id 2420 vlan_ethtype ipv4 src_ip 69.139.237.61 dst_ip 109.8.15.186 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10571 flower src_mac 02:fb:a4:34:46:77 dst_mac 02:e6:e3:e9:50:18 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10572 flower src_mac 02:3c:6c:d7:ec:cb dst_mac 02:d5:01:41:ed:7e src_ip 30.51.105.192 dst_ip 111.175.63.9 ip_proto udp src_port 5364 dst_port 48288 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10573 flower src_mac 02:0a:06:aa:0f:b3 dst_mac 02:46:62:b6:21:2c vlan_id 2524 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10574 flower src_mac 02:a2:4a:4b:a9:57 dst_mac 02:87:60:45:53:64 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10575 flower src_mac 02:50:92:43:60:e9 dst_mac 02:7d:e6:bd:18:ad vlan_id 4079 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10576 flower src_mac 02:98:1f:bc:b0:21 dst_mac 02:84:1e:34:7a:24 vlan_id 3760 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10577 flower src_mac 02:02:84:cf:8f:57 dst_mac 02:d6:20:77:20:b8 src_ip 87.131.17.12 dst_ip 70.205.22.172 ip_proto udp src_port 50323 dst_port 25183 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10578 flower src_mac 02:85:ac:c2:8b:9d dst_mac 02:4d:0e:2f:f0:9b vlan_id 656 vlan_ethtype ip src_ip 87.200.50.72 dst_ip 42.180.122.156 action drop && tc filter add dev swp1 ingress protocol ip pref 10579 flower src_mac 02:15:3c:ef:7a:b2 dst_mac 02:d9:7e:dc:24:2f src_ip 34.11.110.187 dst_ip 104.34.224.93 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10580 flower src_mac 02:7d:df:96:bd:5e dst_mac 02:51:e9:2b:2f:98 vlan_id 510 vlan_ethtype ip src_ip 25.81.231.44 dst_ip 65.239.65.214 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10581 flower src_mac 02:80:1f:cd:0e:5d dst_mac 02:82:b4:34:2f:4a vlan_id 1592 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10582 flower src_mac 02:e8:5d:21:3a:85 dst_mac 02:61:7c:4c:1f:2b vlan_id 2736 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10583 flower src_mac 02:78:ed:e7:86:1c dst_mac 02:3c:5c:bb:66:a7 src_ip 96.24.25.112 dst_ip 103.140.21.106 ip_proto udp src_port 30462 dst_port 3852 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10584 flower src_mac 02:be:e5:a4:1d:ac dst_mac 02:ad:d3:38:88:77 vlan_id 1430 vlan_ethtype ipv4 src_ip 33.37.226.102 dst_ip 25.253.74.166 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10585 flower src_mac 02:d1:4b:8d:fa:1c dst_mac 02:f9:fa:11:d7:a9 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10586 flower src_mac 02:80:fb:79:9f:f3 dst_mac 02:a8:c4:88:7d:47 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10587 flower src_mac 02:c1:fb:91:f0:19 dst_mac 02:04:9e:e7:8d:42 vlan_id 3112 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10588 flower src_mac 02:c8:44:45:92:ce dst_mac 02:07:10:3a:2d:2b vlan_id 2279 vlan_ethtype 0x0800 src_ip 63.42.234.228 dst_ip 95.72.173.32 ip_proto tcp src_port 18461 dst_port 9959 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10589 flower src_mac 02:49:bf:0b:eb:70 dst_mac 02:26:72:de:bb:33 vlan_id 323 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10590 flower src_mac 02:b2:d0:37:a0:d7 dst_mac 02:8d:8f:0c:ac:24 vlan_id 2215 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10591 flower src_mac 02:0f:1a:82:6a:d4 dst_mac 02:c5:3a:6d:0d:66 vlan_id 2472 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10592 flower src_mac 02:68:aa:b1:66:2b dst_mac 02:9d:d6:bd:8c:ce vlan_id 2185 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10593 flower src_mac 02:c2:ed:3e:43:15 dst_mac 02:d7:38:fc:f9:6b vlan_id 2834 vlan_ethtype 0x0800 src_ip 21.72.172.17 dst_ip 63.35.76.155 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10594 flower src_mac 02:9f:92:7f:35:f2 dst_mac 02:db:bb:ff:40:0a action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10595 flower src_mac 02:04:62:df:ed:50 dst_mac 02:75:10:b2:57:f1 vlan_id 1490 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10596 flower src_mac 02:66:90:71:78:4c dst_mac 02:11:98:1c:36:63 src_ip 59.165.71.84 dst_ip 111.247.88.173 ip_proto udp src_port 17310 dst_port 60271 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10597 flower src_mac 02:f2:d1:95:05:b1 dst_mac 02:eb:3a:f4:6d:d0 vlan_id 1207 vlan_ethtype ip src_ip 24.144.107.213 dst_ip 119.224.195.246 ip_proto tcp src_port 9341 dst_port 29256 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10598 flower src_mac 02:24:15:b9:c8:68 dst_mac 02:54:d2:53:62:9a vlan_id 1352 vlan_ethtype ipv4 src_ip 44.233.171.230 dst_ip 100.248.186.21 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10599 flower src_mac 02:b1:59:e1:2b:05 dst_mac 02:4b:6a:9b:0d:84 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10600 flower src_mac 02:61:46:88:1c:76 dst_mac 02:16:86:9c:f7:f9 vlan_id 1968 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10601 flower src_mac 02:64:ec:84:02:28 dst_mac 02:d0:3d:0d:25:25 vlan_id 188 vlan_ethtype ipv4 src_ip 112.185.114.139 dst_ip 98.78.169.172 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10602 flower src_mac 02:d7:1d:9b:6a:ac dst_mac 02:d2:31:54:1a:02 vlan_id 877 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10603 flower src_mac 02:16:35:e6:7f:6f dst_mac 02:a3:c5:f0:94:b3 vlan_id 3853 vlan_ethtype ip src_ip 43.88.165.101 dst_ip 66.214.43.241 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10604 flower src_mac 02:e4:ef:56:d7:50 dst_mac 02:07:0d:91:d4:e6 src_ip 104.222.30.177 dst_ip 97.217.163.49 ip_proto icmp code 0 type 3 action drop && tc filter add dev swp1 ingress protocol ip pref 10605 flower src_mac 02:cf:81:5b:6d:f1 dst_mac 02:5b:fe:55:e8:5e src_ip 102.215.77.230 dst_ip 11.74.192.59 ip_proto tcp src_port 35953 dst_port 35424 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10606 flower src_mac 02:12:57:fc:26:ef dst_mac 02:29:a7:ba:f0:22 vlan_id 2533 vlan_ethtype ipv4 src_ip 113.91.13.238 dst_ip 102.139.40.98 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10607 flower src_mac 02:20:19:5b:97:a4 dst_mac 02:e0:39:7e:37:ea vlan_id 3303 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10608 flower src_mac 02:31:d1:60:95:89 dst_mac 02:31:b2:d9:46:b4 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10609 flower src_mac 02:e7:44:03:c7:2c dst_mac 02:ea:1a:6c:45:e7 src_ip 12.59.226.199 dst_ip 121.200.155.206 ip_proto udp src_port 32353 dst_port 32416 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10610 flower src_mac 02:bb:88:51:6e:89 dst_mac 02:28:c8:24:25:a3 src_ip 73.248.210.125 dst_ip 97.244.114.243 ip_proto icmp code 235 type 14 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10611 flower src_mac 02:02:8e:3e:aa:09 dst_mac 02:eb:13:32:3e:79 vlan_id 1347 vlan_ethtype ipv4 src_ip 54.66.36.131 dst_ip 42.76.108.69 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10612 flower src_mac 02:9c:c0:d1:22:e7 dst_mac 02:35:69:49:34:07 vlan_id 1155 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10613 flower src_mac 02:e8:4b:67:79:b0 dst_mac 02:c9:8c:0b:c5:e8 vlan_id 2635 vlan_ethtype ip src_ip 107.252.225.245 dst_ip 126.59.18.239 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10614 flower src_mac 02:f9:54:66:43:24 dst_mac 02:1c:75:b7:08:64 vlan_id 2916 vlan_ethtype ip src_ip 64.109.187.164 dst_ip 65.45.247.124 ip_proto tcp src_port 45583 dst_port 10577 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10615 flower src_mac 02:6c:bf:18:7c:45 dst_mac 02:52:ef:43:73:79 vlan_id 3345 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10616 flower src_mac 02:42:b1:e2:c5:15 dst_mac 02:aa:23:8a:9a:53 vlan_id 4026 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10617 flower src_mac 02:6b:56:52:fb:80 dst_mac 02:cb:97:7d:2d:54 src_ip 125.2.18.78 dst_ip 61.49.167.223 ip_proto tcp src_port 3318 dst_port 32886 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10618 flower src_mac 02:85:e9:3f:f7:c7 dst_mac 02:90:a0:24:88:2e vlan_id 579 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ip pref 10619 flower src_mac 02:d4:e0:1b:d7:aa dst_mac 02:e6:02:7c:4e:a8 src_ip 38.234.100.129 dst_ip 63.199.145.144 ip_proto icmp code 70 type 4 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10620 flower src_mac 02:06:1c:a0:32:2e dst_mac 02:0f:3d:d2:6d:4b src_ip 24.209.129.102 dst_ip 80.220.121.90 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10621 flower src_mac 02:5b:0d:1f:ed:30 dst_mac 02:b7:27:d9:a6:ac action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10622 flower src_mac 02:a2:20:e7:f4:ea dst_mac 02:56:80:1d:c5:54 vlan_id 839 vlan_ethtype 0x0800 src_ip 92.164.45.59 dst_ip 53.32.145.185 ip_proto tcp src_port 48469 dst_port 49879 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10623 flower src_mac 02:f8:bd:3c:8d:ea dst_mac 02:fa:ef:4b:e2:e4 vlan_id 3223 vlan_ethtype 0x0800 src_ip 107.239.36.120 dst_ip 104.101.11.198 ip_proto tcp src_port 55307 dst_port 31297 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10624 flower src_mac 02:76:3f:64:f9:1d dst_mac 02:43:6f:d9:d1:0c src_ip 63.54.113.24 dst_ip 60.110.0.225 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10625 flower src_mac 02:09:96:73:ea:e5 dst_mac 02:03:eb:d5:23:3a action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10626 flower src_mac 02:fd:b7:7a:58:c6 dst_mac 02:78:53:cd:2a:62 vlan_id 1919 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10627 flower src_mac 02:c6:d4:c8:dd:a5 dst_mac 02:2f:56:34:77:43 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10628 flower src_mac 02:0e:85:ec:27:71 dst_mac 02:3c:55:97:54:17 src_ip 59.232.42.133 dst_ip 94.218.240.202 ip_proto icmp code 220 type 15 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10629 flower src_mac 02:fd:bd:a1:55:49 dst_mac 02:b9:48:50:60:84 vlan_id 613 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10630 flower src_mac 02:83:f4:24:e0:55 dst_mac 02:f1:f6:41:92:1a action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10631 flower src_mac 02:83:9b:d7:de:09 dst_mac 02:4e:f6:f5:7b:49 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10632 flower src_mac 02:68:f6:df:98:66 dst_mac 02:e3:24:7e:0b:3b action pass && tc filter add dev swp1 ingress protocol ip pref 10633 flower src_mac 02:e3:03:cb:94:d9 dst_mac 02:d6:6a:16:32:cf src_ip 20.56.246.40 dst_ip 98.209.145.236 ip_proto udp src_port 31989 dst_port 54948 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10634 flower src_mac 02:91:e1:ef:f3:e9 dst_mac 02:62:e7:c9:b7:70 vlan_id 3696 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol ip pref 10635 flower src_mac 02:5b:7e:c7:36:70 dst_mac 02:22:08:75:ca:ac src_ip 114.125.116.27 dst_ip 92.205.150.80 ip_proto udp src_port 60469 dst_port 24251 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10636 flower src_mac 02:32:a0:4d:e9:85 dst_mac 02:36:4d:50:1d:e1 vlan_id 492 vlan_ethtype 0x0800 src_ip 76.133.253.32 dst_ip 42.172.252.8 ip_proto tcp src_port 42038 dst_port 24362 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10637 flower src_mac 02:64:a1:1a:e4:9a dst_mac 02:2b:a3:87:9b:4c vlan_id 1580 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10638 flower src_mac 02:24:df:1b:72:f4 dst_mac 02:93:0c:34:9c:e2 vlan_id 2103 vlan_ethtype ip src_ip 75.132.93.146 dst_ip 21.237.76.155 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10639 flower src_mac 02:00:b9:1b:61:ea dst_mac 02:51:b6:60:22:a6 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10640 flower src_mac 02:91:aa:30:f8:fb dst_mac 02:94:ab:b6:09:ca vlan_id 2028 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10641 flower src_mac 02:69:de:49:04:c4 dst_mac 02:9c:63:0b:06:62 vlan_id 3450 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10642 flower src_mac 02:8a:16:67:b6:c4 dst_mac 02:89:2f:1e:d9:1c action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10643 flower src_mac 02:40:81:e5:15:7c dst_mac 02:17:d5:5b:09:d1 vlan_id 2871 vlan_ethtype ip src_ip 31.219.197.5 dst_ip 65.100.49.12 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10644 flower src_mac 02:92:f3:4c:bc:be dst_mac 02:22:89:9d:3e:4c vlan_id 1471 vlan_ethtype 0x0800 src_ip 48.145.35.129 dst_ip 59.34.136.47 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10645 flower src_mac 02:4e:31:5d:5c:53 dst_mac 02:07:60:7c:93:97 vlan_id 1083 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10646 flower src_mac 02:cc:b5:1f:c3:4e dst_mac 02:c8:f7:4b:5e:4c vlan_id 1734 vlan_ethtype ip src_ip 81.127.134.226 dst_ip 82.86.249.82 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10647 flower src_mac 02:6e:e2:87:a8:15 dst_mac 02:75:25:54:21:ec action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10648 flower src_mac 02:d1:c1:8f:a3:2a dst_mac 02:5f:43:25:54:b7 vlan_id 3162 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10649 flower src_mac 02:e8:37:d1:8d:a3 dst_mac 02:61:dd:62:2d:87 vlan_id 3731 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10650 flower src_mac 02:14:6f:d9:12:c5 dst_mac 02:6b:0c:b9:30:63 vlan_id 1425 vlan_ethtype ipv4 src_ip 18.90.163.90 dst_ip 101.129.205.109 ip_proto udp src_port 27951 dst_port 19393 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10651 flower src_mac 02:c3:6a:a9:ee:52 dst_mac 02:a8:5b:de:d4:d1 action pass && tc filter add dev swp1 ingress protocol ip pref 10652 flower src_mac 02:4e:d2:00:90:50 dst_mac 02:12:a0:42:ae:18 src_ip 86.120.52.73 dst_ip 104.91.179.137 ip_proto icmp code 229 type 3 action drop && tc filter add dev swp1 ingress protocol ip pref 10653 flower src_mac 02:1e:94:f5:15:02 dst_mac 02:b3:66:ee:9b:a8 src_ip 62.163.187.155 dst_ip 82.94.216.159 ip_proto tcp src_port 21800 dst_port 32101 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10654 flower src_mac 02:8a:89:a1:6e:e1 dst_mac 02:0e:1b:ba:d2:b5 vlan_id 266 vlan_ethtype 0x0800 src_ip 15.126.246.216 dst_ip 107.232.69.98 ip_proto tcp src_port 58238 dst_port 25721 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10655 flower src_mac 02:84:57:c3:be:08 dst_mac 02:2b:36:48:93:d0 vlan_id 3948 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10656 flower src_mac 02:b5:56:06:70:ea dst_mac 02:d4:46:94:3f:ab vlan_id 830 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10657 flower src_mac 02:e4:3e:e7:13:54 dst_mac 02:b5:30:59:10:a3 vlan_id 2284 vlan_ethtype 0x0800 src_ip 114.249.213.76 dst_ip 97.39.29.11 ip_proto tcp src_port 51749 dst_port 46690 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10658 flower src_mac 02:58:1d:ce:ad:1c dst_mac 02:b8:e5:62:b3:4a vlan_id 2987 vlan_ethtype ipv4 src_ip 22.232.141.168 dst_ip 103.101.225.36 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10659 flower src_mac 02:09:c1:71:2b:1e dst_mac 02:d3:2b:31:e3:c3 src_ip 112.46.65.68 dst_ip 121.124.110.183 ip_proto icmp code 169 type 8 action drop && tc filter add dev swp1 ingress protocol ip pref 10660 flower src_mac 02:31:3f:fc:2f:91 dst_mac 02:5f:f0:b1:d0:87 src_ip 15.167.20.223 dst_ip 94.110.73.28 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10661 flower src_mac 02:e2:4d:e9:a4:12 dst_mac 02:bf:68:a3:ff:76 src_ip 66.128.89.27 dst_ip 12.30.252.46 ip_proto icmp code 128 type 17 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10662 flower src_mac 02:aa:1d:8d:17:53 dst_mac 02:cb:85:10:80:de src_ip 29.203.82.86 dst_ip 25.192.157.145 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10663 flower src_mac 02:53:9d:81:6d:7d dst_mac 02:7a:8a:a9:c4:ae vlan_id 2020 vlan_ethtype ip src_ip 114.38.129.201 dst_ip 91.87.206.71 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10664 flower src_mac 02:9e:39:a1:e9:ec dst_mac 02:e5:78:d8:60:16 src_ip 70.177.96.233 dst_ip 62.152.135.9 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10665 flower src_mac 02:d8:c2:df:e8:c3 dst_mac 02:e0:66:2b:89:23 vlan_id 2492 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10666 flower src_mac 02:c1:b8:16:39:a1 dst_mac 02:c7:9b:be:84:5c vlan_id 1285 vlan_ethtype ip src_ip 119.157.88.45 dst_ip 60.239.18.56 ip_proto udp src_port 6446 dst_port 62819 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10667 flower src_mac 02:bc:2f:25:e0:af dst_mac 02:20:82:c6:db:73 vlan_id 1928 vlan_ethtype ip src_ip 93.139.150.132 dst_ip 38.106.82.211 ip_proto udp src_port 34412 dst_port 16395 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10668 flower src_mac 02:f4:68:ad:7a:8d dst_mac 02:66:9d:24:38:ff src_ip 84.215.246.227 dst_ip 44.233.162.210 ip_proto udp src_port 13671 dst_port 32764 action drop && tc filter add dev swp1 ingress protocol ip pref 10669 flower src_mac 02:eb:39:31:ff:2d dst_mac 02:95:a0:c6:e4:e9 src_ip 94.205.220.209 dst_ip 21.148.44.247 ip_proto icmp code 75 type 8 action pass && tc filter add dev swp1 ingress protocol ip pref 10670 flower src_mac 02:5a:ee:62:27:fe dst_mac 02:1e:62:3d:10:10 src_ip 66.167.137.162 dst_ip 104.63.157.135 action drop && tc filter add dev swp1 ingress protocol ip pref 10671 flower src_mac 02:dd:6c:d2:0c:8c dst_mac 02:24:33:66:2c:c7 src_ip 62.132.213.220 dst_ip 40.47.62.207 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10672 flower src_mac 02:89:57:f7:0d:f2 dst_mac 02:32:c5:91:db:80 vlan_id 1506 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10673 flower src_mac 02:08:12:f7:49:f5 dst_mac 02:22:d7:85:70:20 vlan_id 2638 vlan_ethtype 0x0800 src_ip 116.54.171.156 dst_ip 81.49.36.153 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10674 flower src_mac 02:bb:55:13:10:be dst_mac 02:84:4e:dd:d4:4b action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10675 flower src_mac 02:e7:87:90:4c:ff dst_mac 02:2a:99:09:bf:05 vlan_id 625 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10676 flower src_mac 02:84:ee:8a:0f:40 dst_mac 02:8c:24:a1:8f:54 vlan_id 2933 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10677 flower src_mac 02:d1:6b:7f:d9:56 dst_mac 02:ac:11:91:7e:28 vlan_id 1882 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10678 flower src_mac 02:04:cb:6b:72:ee dst_mac 02:76:b2:98:5a:57 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10679 flower src_mac 02:32:8e:4c:8d:47 dst_mac 02:d8:af:e3:29:f9 vlan_id 2404 vlan_ethtype ip src_ip 35.14.177.90 dst_ip 26.50.88.199 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10680 flower src_mac 02:82:46:2e:83:0a dst_mac 02:8f:21:de:f6:9a vlan_id 1628 vlan_ethtype 0x0800 src_ip 79.161.227.47 dst_ip 48.250.108.19 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10681 flower src_mac 02:8e:3c:1f:fe:c6 dst_mac 02:5c:5f:5b:d3:6b action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10682 flower src_mac 02:8f:71:9d:03:90 dst_mac 02:b6:f9:e2:93:9e action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10683 flower src_mac 02:a1:ff:a8:47:d9 dst_mac 02:85:86:91:4d:b9 vlan_id 13 vlan_ethtype ip src_ip 30.37.235.243 dst_ip 36.155.181.204 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10684 flower src_mac 02:71:86:58:e5:73 dst_mac 02:16:f8:63:b9:8e action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10685 flower src_mac 02:fc:98:35:8b:b5 dst_mac 02:ec:7d:b9:fa:31 src_ip 104.180.201.130 dst_ip 19.72.250.5 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10686 flower src_mac 02:5b:4a:ab:75:64 dst_mac 02:2b:7b:e7:7b:58 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10687 flower src_mac 02:b1:9d:68:2a:b1 dst_mac 02:17:46:a7:e4:d9 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10688 flower src_mac 02:cf:b8:46:3b:43 dst_mac 02:3c:42:13:05:92 src_ip 120.212.19.80 dst_ip 51.151.227.21 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10689 flower src_mac 02:d7:b2:2a:87:3f dst_mac 02:b9:0d:9b:e2:89 vlan_id 1835 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10690 flower src_mac 02:25:46:c8:64:a1 dst_mac 02:4d:26:5d:dd:7c vlan_id 208 vlan_ethtype 0x0800 src_ip 64.181.134.76 dst_ip 43.224.100.241 ip_proto tcp src_port 41032 dst_port 11626 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10691 flower src_mac 02:54:f3:3f:bf:66 dst_mac 02:61:f3:34:03:71 src_ip 75.83.236.104 dst_ip 50.55.109.224 ip_proto tcp src_port 26055 dst_port 43724 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10692 flower src_mac 02:fd:42:07:1c:fd dst_mac 02:68:de:21:1f:1d vlan_id 3661 vlan_ethtype 0x0800 src_ip 26.94.6.18 dst_ip 120.223.122.108 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10693 flower src_mac 02:eb:11:43:38:2b dst_mac 02:5f:e6:a0:27:f2 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10694 flower src_mac 02:cc:05:91:59:53 dst_mac 02:f6:99:00:59:26 src_ip 92.20.193.143 dst_ip 63.26.231.217 ip_proto icmp code 22 type 16 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10695 flower src_mac 02:7f:f9:77:16:01 dst_mac 02:0d:62:cf:79:af action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10696 flower src_mac 02:bd:ab:05:e9:d4 dst_mac 02:70:3b:6d:e6:75 src_ip 86.231.92.186 dst_ip 59.179.78.67 ip_proto udp src_port 55505 dst_port 7235 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10697 flower src_mac 02:00:89:46:60:50 dst_mac 02:1e:15:e7:b9:b8 vlan_id 2721 vlan_ethtype ipv4 src_ip 53.81.20.140 dst_ip 40.143.186.219 ip_proto tcp src_port 20247 dst_port 39486 action pass && tc filter add dev swp1 ingress protocol ip pref 10698 flower src_mac 02:0c:dd:4a:4f:37 dst_mac 02:cb:f8:83:95:54 src_ip 102.133.109.169 dst_ip 44.133.113.133 ip_proto icmp code 166 type 15 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10699 flower src_mac 02:20:76:ed:06:7e dst_mac 02:14:6b:3c:b2:15 vlan_id 503 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10700 flower src_mac 02:ad:6a:e5:d4:42 dst_mac 02:e5:49:ce:e0:86 src_ip 20.92.144.22 dst_ip 116.127.36.108 ip_proto icmp code 82 type 14 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10701 flower src_mac 02:b8:c3:d5:e8:3b dst_mac 02:54:47:2d:b4:25 vlan_id 3506 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ip pref 10702 flower src_mac 02:cf:7f:a0:54:c0 dst_mac 02:54:b0:e4:07:ef src_ip 60.214.56.111 dst_ip 120.21.156.34 ip_proto icmp code 168 type 14 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10703 flower src_mac 02:72:07:bf:90:aa dst_mac 02:56:46:83:9b:50 vlan_id 1270 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10704 flower src_mac 02:80:2c:c4:6d:51 dst_mac 02:d2:da:12:a8:c9 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10705 flower src_mac 02:50:a8:a6:e6:aa dst_mac 02:71:04:17:cf:9f vlan_id 476 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10706 flower src_mac 02:3d:84:5c:d5:63 dst_mac 02:6e:27:33:c8:63 action trap && tc filter add dev swp1 ingress protocol ip pref 10707 flower src_mac 02:19:c5:7e:de:77 dst_mac 02:7b:25:60:f8:0d src_ip 112.17.26.31 dst_ip 120.22.127.12 ip_proto udp src_port 63456 dst_port 45289 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10708 flower src_mac 02:17:da:4b:3d:ea dst_mac 02:5b:48:8e:c5:1b vlan_id 3384 vlan_ethtype 0x0800 src_ip 12.237.73.23 dst_ip 38.70.155.59 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10709 flower src_mac 02:29:e0:ec:10:2c dst_mac 02:14:22:bd:67:d3 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10710 flower src_mac 02:ed:f2:4a:83:c6 dst_mac 02:be:b0:16:1c:74 src_ip 80.173.92.174 dst_ip 31.120.135.68 ip_proto icmp code 53 type 13 action drop && tc filter add dev swp1 ingress protocol ip pref 10711 flower src_mac 02:fc:96:76:8c:a9 dst_mac 02:1a:d3:16:26:e7 src_ip 107.225.44.119 dst_ip 96.245.220.17 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10712 flower src_mac 02:5d:a0:f1:fb:bd dst_mac 02:d6:d1:16:b7:65 vlan_id 1826 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10713 flower src_mac 02:c7:a5:22:9a:f4 dst_mac 02:22:a2:0c:88:6c vlan_id 2065 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10714 flower src_mac 02:e1:8f:97:83:e1 dst_mac 02:41:93:a1:21:4e vlan_id 215 vlan_ethtype 0x0800 src_ip 66.242.220.142 dst_ip 61.169.1.106 ip_proto tcp src_port 19092 dst_port 18366 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10715 flower src_mac 02:00:e7:23:aa:03 dst_mac 02:96:31:ac:8e:2c src_ip 59.254.26.245 dst_ip 22.130.54.104 ip_proto udp src_port 17554 dst_port 34014 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10716 flower src_mac 02:2f:22:6d:7a:0c dst_mac 02:70:36:e3:17:98 vlan_id 230 vlan_ethtype 0x0800 src_ip 50.169.243.18 dst_ip 123.105.210.231 ip_proto udp src_port 37382 dst_port 60106 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10717 flower src_mac 02:ee:28:6d:39:00 dst_mac 02:57:6c:22:79:6b action drop && tc filter add dev swp1 ingress protocol ip pref 10718 flower src_mac 02:e7:82:ae:7f:05 dst_mac 02:26:da:f4:74:c7 src_ip 81.208.228.85 dst_ip 107.117.7.173 ip_proto udp src_port 15421 dst_port 28819 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10719 flower src_mac 02:93:31:1f:11:22 dst_mac 02:67:87:14:9c:10 vlan_id 3661 vlan_ethtype ipv4 src_ip 45.228.129.130 dst_ip 66.33.106.244 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10720 flower src_mac 02:e9:d7:99:c2:53 dst_mac 02:1c:2c:e0:65:e3 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10721 flower src_mac 02:f9:0e:50:74:f8 dst_mac 02:dc:6f:57:25:59 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10722 flower src_mac 02:84:e7:d8:37:3d dst_mac 02:3a:ef:fb:f5:09 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10723 flower src_mac 02:b8:72:de:ce:e1 dst_mac 02:2d:a9:bf:5e:a2 vlan_id 2417 vlan_ethtype ipv4 src_ip 99.133.3.127 dst_ip 14.111.75.147 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10724 flower src_mac 02:82:4d:3d:5e:4f dst_mac 02:b7:0f:b1:53:b5 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10725 flower src_mac 02:2b:71:3d:25:bf dst_mac 02:e2:40:bf:ad:85 src_ip 91.219.43.110 dst_ip 70.1.59.91 ip_proto icmp code 98 type 16 action trap && tc filter add dev swp1 ingress protocol ip pref 10726 flower src_mac 02:dc:3d:be:91:b6 dst_mac 02:56:91:d2:69:a7 src_ip 98.150.114.209 dst_ip 19.180.171.213 ip_proto tcp src_port 34768 dst_port 25311 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10727 flower src_mac 02:cc:a1:57:94:14 dst_mac 02:45:5e:1a:88:0b vlan_id 1376 vlan_ethtype ipv4 src_ip 95.73.71.49 dst_ip 120.176.87.232 ip_proto tcp src_port 37994 dst_port 63619 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10728 flower src_mac 02:29:56:9b:93:0f dst_mac 02:a8:40:09:1b:99 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10729 flower src_mac 02:9d:9c:34:c8:43 dst_mac 02:be:6d:a9:da:a7 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10730 flower src_mac 02:79:6e:cd:58:a9 dst_mac 02:a0:9f:3f:08:65 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10731 flower src_mac 02:36:d3:54:da:92 dst_mac 02:a1:af:40:14:fd src_ip 47.240.190.91 dst_ip 66.149.45.229 ip_proto tcp src_port 1216 dst_port 63030 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10732 flower src_mac 02:e7:33:39:39:bc dst_mac 02:6e:a3:f9:c6:65 vlan_id 2076 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10733 flower src_mac 02:cb:d7:32:0f:3d dst_mac 02:87:ed:05:82:9f action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10734 flower src_mac 02:d4:fe:8d:9e:de dst_mac 02:49:88:b3:bb:d9 action trap && tc filter add dev swp1 ingress protocol ip pref 10735 flower src_mac 02:6c:ed:10:6a:76 dst_mac 02:3a:00:08:77:aa src_ip 17.227.161.178 dst_ip 58.41.222.153 ip_proto udp src_port 39971 dst_port 11993 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10736 flower src_mac 02:92:84:b4:c3:11 dst_mac 02:58:3e:74:c5:0b action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10737 flower src_mac 02:b1:a4:57:14:a4 dst_mac 02:9c:1c:2b:0c:38 src_ip 72.143.182.225 dst_ip 84.180.113.8 ip_proto icmp code 167 type 14 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10738 flower src_mac 02:48:fa:02:53:ac dst_mac 02:2b:41:4d:72:bd src_ip 81.97.63.183 dst_ip 13.81.244.27 ip_proto tcp src_port 25942 dst_port 24296 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10739 flower src_mac 02:f8:43:2b:64:20 dst_mac 02:1e:8e:2f:4d:9f vlan_id 1981 vlan_ethtype ip src_ip 72.149.32.202 dst_ip 58.23.237.82 ip_proto udp src_port 44581 dst_port 18234 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10740 flower src_mac 02:15:b4:44:e0:fd dst_mac 02:df:dc:d2:24:83 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10741 flower src_mac 02:be:e9:84:8b:32 dst_mac 02:a0:82:05:76:ab action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10742 flower src_mac 02:8e:58:9d:3c:7c dst_mac 02:80:e1:e9:0c:da action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10743 flower src_mac 02:a5:a2:97:b5:b9 dst_mac 02:22:09:b3:2f:22 src_ip 104.146.64.124 dst_ip 66.21.177.194 ip_proto icmp code 199 type 4 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10744 flower src_mac 02:65:67:ce:22:a6 dst_mac 02:3f:f7:5c:80:09 vlan_id 3227 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10745 flower src_mac 02:18:d2:96:32:3e dst_mac 02:fd:39:3e:d6:7d action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10746 flower src_mac 02:da:70:2b:16:4c dst_mac 02:ae:51:1a:8e:0e vlan_id 685 vlan_ethtype ipv4 src_ip 51.94.150.182 dst_ip 125.18.143.206 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10747 flower src_mac 02:56:ab:20:bb:61 dst_mac 02:5b:2e:f7:1f:3c action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10748 flower src_mac 02:25:af:be:ff:42 dst_mac 02:fb:98:74:5a:d3 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10749 flower src_mac 02:37:c7:62:39:d9 dst_mac 02:8e:54:28:d3:13 vlan_id 4094 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10750 flower src_mac 02:5d:ba:57:46:17 dst_mac 02:1c:f5:85:56:2f src_ip 82.53.89.1 dst_ip 52.253.31.98 ip_proto icmp code 246 type 15 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10751 flower src_mac 02:61:5a:3d:c5:f7 dst_mac 02:b0:6c:e8:06:71 vlan_id 733 vlan_ethtype 0x0800 src_ip 99.77.90.146 dst_ip 90.205.70.88 ip_proto udp src_port 62378 dst_port 64735 action pass && tc filter add dev swp1 ingress protocol ip pref 10752 flower src_mac 02:57:e7:75:e4:41 dst_mac 02:2c:aa:d1:07:d8 src_ip 69.150.26.168 dst_ip 15.21.184.122 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10753 flower src_mac 02:75:aa:6e:09:7b dst_mac 02:0e:25:16:bd:23 vlan_id 2593 vlan_ethtype ip src_ip 45.220.246.15 dst_ip 121.128.186.171 ip_proto tcp src_port 49408 dst_port 32377 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10754 flower src_mac 02:31:4e:48:30:8c dst_mac 02:76:69:46:ef:5d vlan_id 2448 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10755 flower src_mac 02:89:90:ed:b0:76 dst_mac 02:06:77:b7:89:09 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10756 flower src_mac 02:20:b1:fa:a5:72 dst_mac 02:fb:4e:30:a0:6a src_ip 105.81.48.43 dst_ip 115.35.116.97 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10757 flower src_mac 02:9d:68:9b:e9:38 dst_mac 02:7a:95:10:09:8d vlan_id 1665 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10758 flower src_mac 02:44:a0:81:fd:e9 dst_mac 02:20:3c:9f:b7:24 src_ip 69.39.53.24 dst_ip 124.94.122.177 ip_proto tcp src_port 62807 dst_port 65355 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10759 flower src_mac 02:f6:fe:bf:b4:a9 dst_mac 02:fb:74:f7:49:46 vlan_id 2410 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10760 flower src_mac 02:2c:55:a5:ec:f6 dst_mac 02:ad:8b:0b:b3:fc action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10761 flower src_mac 02:5b:81:5c:e3:3e dst_mac 02:30:df:3c:c5:ea vlan_id 148 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10762 flower src_mac 02:b0:60:13:e1:ab dst_mac 02:2c:01:79:88:ed src_ip 26.43.166.227 dst_ip 44.35.240.181 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10763 flower src_mac 02:e2:4f:69:35:56 dst_mac 02:a9:21:78:3a:25 vlan_id 2845 vlan_ethtype ip src_ip 100.93.0.156 dst_ip 11.30.91.147 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10764 flower src_mac 02:3f:cc:e9:1c:e9 dst_mac 02:62:47:cf:17:71 vlan_id 2117 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10765 flower src_mac 02:b3:69:d6:85:ee dst_mac 02:0b:d4:74:3a:e8 vlan_id 3250 vlan_ethtype ipv4 src_ip 40.62.120.179 dst_ip 55.144.7.247 ip_proto udp src_port 37362 dst_port 43670 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10766 flower src_mac 02:96:ef:48:04:66 dst_mac 02:c6:e8:6e:4e:91 src_ip 39.69.46.193 dst_ip 83.14.3.15 ip_proto icmp code 213 type 3 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10767 flower src_mac 02:86:ea:19:81:29 dst_mac 02:05:c7:05:72:33 vlan_id 2389 vlan_ethtype 0x0800 src_ip 97.84.16.240 dst_ip 125.234.96.102 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10768 flower src_mac 02:2a:2b:cf:f9:f9 dst_mac 02:44:4d:e9:2f:b8 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10769 flower src_mac 02:e6:b6:d4:42:78 dst_mac 02:4a:0b:ce:df:c5 vlan_id 3840 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10770 flower src_mac 02:61:5e:77:f0:17 dst_mac 02:30:d3:65:df:87 vlan_id 2066 vlan_ethtype ipv4 src_ip 58.3.94.88 dst_ip 67.194.135.81 ip_proto udp src_port 58552 dst_port 13949 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10771 flower src_mac 02:5d:73:ed:76:84 dst_mac 02:b2:59:3a:6b:7f action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10772 flower src_mac 02:81:a0:db:65:68 dst_mac 02:d6:67:14:78:16 vlan_id 3191 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10773 flower src_mac 02:89:d0:8d:82:ab dst_mac 02:62:1b:f1:04:fd src_ip 15.61.234.79 dst_ip 111.161.29.54 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10774 flower src_mac 02:22:c1:ed:22:94 dst_mac 02:46:bf:5d:74:b2 src_ip 12.241.151.51 dst_ip 68.42.123.81 ip_proto icmp code 242 type 17 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10775 flower src_mac 02:5a:bc:17:90:6d dst_mac 02:74:9c:ec:ee:76 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10776 flower src_mac 02:21:db:b2:ee:db dst_mac 02:10:cb:a7:c9:14 src_ip 49.59.240.107 dst_ip 45.36.236.124 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10777 flower src_mac 02:3f:eb:99:d4:70 dst_mac 02:69:4f:54:4c:cd src_ip 73.163.125.74 dst_ip 54.237.140.76 ip_proto udp src_port 42466 dst_port 4018 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10778 flower src_mac 02:f3:98:91:f6:2c dst_mac 02:fa:25:32:0d:c5 vlan_id 352 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10779 flower src_mac 02:2f:77:96:03:ef dst_mac 02:2a:57:78:40:82 vlan_id 646 vlan_ethtype 0x0800 src_ip 92.205.150.171 dst_ip 101.33.61.184 ip_proto udp src_port 10834 dst_port 25310 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10780 flower src_mac 02:47:2e:8c:d6:a3 dst_mac 02:11:8e:6a:bf:4d vlan_id 845 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10781 flower src_mac 02:92:70:b4:9b:cf dst_mac 02:ef:50:0b:e6:83 vlan_id 249 vlan_ethtype ip src_ip 110.220.103.178 dst_ip 48.82.201.143 ip_proto udp src_port 47992 dst_port 14729 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10782 flower src_mac 02:4f:26:28:2c:a4 dst_mac 02:78:48:4f:3b:1d action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10783 flower src_mac 02:2b:50:f5:3c:b9 dst_mac 02:12:31:ac:d3:7c vlan_id 3327 vlan_ethtype 0x0800 src_ip 67.214.207.173 dst_ip 53.68.34.183 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10784 flower src_mac 02:26:c3:9c:18:e0 dst_mac 02:c5:59:5c:be:5c vlan_id 3859 vlan_ethtype ipv4 src_ip 117.0.214.139 dst_ip 40.250.17.250 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10785 flower src_mac 02:f6:ea:7e:9a:1c dst_mac 02:4c:82:d6:90:b1 action pass && tc filter add dev swp1 ingress protocol ip pref 10786 flower src_mac 02:7c:c6:12:da:7f dst_mac 02:0f:93:f5:bc:31 src_ip 125.32.8.167 dst_ip 29.48.12.53 ip_proto icmp code 136 type 5 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10787 flower src_mac 02:91:a6:d5:2e:dd dst_mac 02:1f:f9:dc:7e:08 vlan_id 1254 vlan_ethtype 0x0800 src_ip 42.68.185.109 dst_ip 12.204.249.50 ip_proto tcp src_port 33819 dst_port 38876 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10788 flower src_mac 02:f3:da:98:ac:88 dst_mac 02:79:51:f3:2e:69 vlan_id 1868 vlan_ethtype ipv4 src_ip 42.200.220.118 dst_ip 101.222.139.156 ip_proto udp src_port 5285 dst_port 41383 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10789 flower src_mac 02:5b:08:ff:d5:2a dst_mac 02:14:71:58:7a:7f vlan_id 3165 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10790 flower src_mac 02:8c:2c:cf:57:cb dst_mac 02:a1:43:b5:07:83 vlan_id 1554 vlan_ethtype ip src_ip 76.168.107.138 dst_ip 66.234.151.153 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10791 flower src_mac 02:74:d4:ef:5f:f8 dst_mac 02:aa:10:dd:74:6d src_ip 23.180.167.137 dst_ip 55.71.215.114 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10792 flower src_mac 02:2c:7d:72:f7:e3 dst_mac 02:f1:92:d1:d1:8b vlan_id 1087 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10793 flower src_mac 02:cb:46:57:5f:b0 dst_mac 02:6f:ed:9b:79:2f action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10794 flower src_mac 02:d5:1a:e7:61:73 dst_mac 02:9f:f7:c4:95:85 vlan_id 1400 vlan_ethtype 0x0800 src_ip 54.250.83.30 dst_ip 114.206.245.194 ip_proto udp src_port 2977 dst_port 6902 action pass && tc filter add dev swp1 ingress protocol ip pref 10795 flower src_mac 02:7d:d5:81:96:15 dst_mac 02:93:c3:3e:81:e0 src_ip 79.133.120.188 dst_ip 72.205.154.74 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10796 flower src_mac 02:9d:0b:50:5d:2a dst_mac 02:d2:15:7f:51:9d vlan_id 3481 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10797 flower src_mac 02:6d:93:b2:99:41 dst_mac 02:76:57:ec:ac:7f vlan_id 2111 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ip pref 10798 flower src_mac 02:78:da:af:6b:7d dst_mac 02:6d:59:00:75:d4 src_ip 81.143.78.8 dst_ip 19.107.118.146 ip_proto icmp code 112 type 11 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10799 flower src_mac 02:f9:1c:cf:f3:b6 dst_mac 02:43:15:a3:1c:6a src_ip 62.159.58.173 dst_ip 14.175.63.22 action drop INFO asyncssh:logging.py:92 [conn=24, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=6] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 10400 flower src_mac 02:cb:46:6d:93:80 dst_mac 02:73:89:12:3c:50 vlan_id 344 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10401 flower src_mac 02:5f:97:94:94:6d dst_mac 02:26:cc:34:5a:9a vlan_id 679 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10402 flower src_mac 02:0c:f3:c5:fa:ee dst_mac 02:60:34:90:f1:82 vlan_id 3761 vlan_ethtype ip src_ip 70.198.171.26 dst_ip 33.44.108.216 ip_proto udp src_port 43320 dst_port 24953 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10403 flower src_mac 02:8d:2c:ef:7f:79 dst_mac 02:40:92:48:4e:28 vlan_id 398 vlan_ethtype ipv4 src_ip 63.236.20.213 dst_ip 50.97.62.93 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10404 flower src_mac 02:ea:0d:62:6a:51 dst_mac 02:43:55:a3:38:02 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10405 flower src_mac 02:43:a9:49:6b:05 dst_mac 02:dc:e9:fb:69:49 vlan_id 1007 vlan_ethtype 0x0800 src_ip 80.167.68.209 dst_ip 113.29.182.20 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10406 flower src_mac 02:c2:e7:44:f8:62 dst_mac 02:ff:7e:59:06:c9 action drop && tc filter add dev swp1 ingress protocol ip pref 10407 flower src_mac 02:cb:ec:3e:f5:ed dst_mac 02:e1:11:f7:cc:f4 src_ip 23.141.140.60 dst_ip 102.47.247.207 ip_proto icmp code 15 type 15 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10408 flower src_mac 02:35:06:98:83:a0 dst_mac 02:8d:c1:30:3a:6a src_ip 60.34.149.88 dst_ip 15.91.130.119 ip_proto tcp src_port 7531 dst_port 29929 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10409 flower src_mac 02:e5:79:b0:f2:a6 dst_mac 02:04:62:59:75:f4 vlan_id 3847 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10410 flower src_mac 02:9c:98:cf:87:08 dst_mac 02:9a:c9:7b:fc:0d src_ip 42.151.55.125 dst_ip 54.168.249.108 ip_proto udp src_port 2215 dst_port 60231 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10411 flower src_mac 02:d5:e8:e6:43:66 dst_mac 02:a4:02:e9:2f:22 action trap && tc filter add dev swp1 ingress protocol ip pref 10412 flower src_mac 02:bd:ba:7b:63:8e dst_mac 02:78:af:60:a9:e6 src_ip 115.157.226.7 dst_ip 93.200.23.213 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10413 flower src_mac 02:af:03:25:75:e9 dst_mac 02:8c:af:74:18:07 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10414 flower src_mac 02:a7:c0:24:7e:86 dst_mac 02:17:0f:72:db:d9 src_ip 52.84.253.32 dst_ip 56.106.70.30 ip_proto tcp src_port 52708 dst_port 16547 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10415 flower src_mac 02:a4:92:5c:34:62 dst_mac 02:e6:70:fb:6c:58 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10416 flower src_mac 02:07:f7:a6:e4:40 dst_mac 02:bf:e8:fd:34:46 vlan_id 337 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10417 flower src_mac 02:6e:24:b1:14:66 dst_mac 02:c0:67:8b:e2:de src_ip 65.129.105.19 dst_ip 49.191.161.155 ip_proto icmp code 251 type 12 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10418 flower src_mac 02:af:c6:fd:0a:07 dst_mac 02:22:e4:ad:7a:f6 vlan_id 1876 vlan_ethtype ip src_ip 70.51.189.227 dst_ip 121.158.99.79 action pass && tc filter add dev swp1 ingress protocol ip pref 10419 flower src_mac 02:77:cd:e6:59:ff dst_mac 02:19:18:3b:5c:7d src_ip 50.149.75.240 dst_ip 84.135.69.95 ip_proto icmp code 215 type 12 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10420 flower src_mac 02:ab:2f:4c:7f:e9 dst_mac 02:b2:af:66:77:45 vlan_id 1030 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10421 flower src_mac 02:56:8b:ea:4e:77 dst_mac 02:1b:22:29:70:18 vlan_id 2221 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10422 flower src_mac 02:90:a8:bd:d1:e5 dst_mac 02:20:b9:a9:4c:10 vlan_id 1740 vlan_ethtype 0x0800 src_ip 56.239.241.181 dst_ip 32.38.20.154 ip_proto tcp src_port 35657 dst_port 6530 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10423 flower src_mac 02:3e:3a:e6:b1:c6 dst_mac 02:96:90:15:c1:e6 vlan_id 623 vlan_ethtype ip src_ip 40.49.231.68 dst_ip 23.205.31.24 ip_proto tcp src_port 51496 dst_port 41994 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10424 flower src_mac 02:4e:00:1a:7a:3f dst_mac 02:62:3d:cc:e7:f1 src_ip 55.5.248.153 dst_ip 123.84.177.13 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10425 flower src_mac 02:bc:a7:92:18:35 dst_mac 02:f5:12:0e:d4:e1 vlan_id 1293 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10426 flower src_mac 02:39:3b:27:d6:b1 dst_mac 02:68:bb:84:5a:d5 vlan_id 1636 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10427 flower src_mac 02:bc:5c:bd:83:f1 dst_mac 02:6a:f9:d6:dd:b4 vlan_id 3220 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10428 flower src_mac 02:83:e1:f4:ef:c4 dst_mac 02:1b:5d:38:58:5b vlan_id 3317 vlan_ethtype 0x0800 src_ip 66.253.115.94 dst_ip 121.178.8.204 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10429 flower src_mac 02:e5:77:8a:6d:93 dst_mac 02:a2:f8:15:bd:8d vlan_id 240 vlan_ethtype 0x0800 src_ip 40.219.164.159 dst_ip 79.61.107.171 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10430 flower src_mac 02:0c:b6:99:dc:44 dst_mac 02:e2:cf:ac:fb:e8 vlan_id 3369 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10431 flower src_mac 02:c1:7d:b6:86:a3 dst_mac 02:2a:08:00:68:e7 vlan_id 526 vlan_ethtype 0x0800 src_ip 112.248.16.157 dst_ip 50.157.64.53 ip_proto udp src_port 23095 dst_port 24664 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10432 flower src_mac 02:ee:76:f2:49:ec dst_mac 02:5e:65:87:7c:b0 vlan_id 3424 vlan_ethtype ip src_ip 118.93.133.237 dst_ip 46.137.254.25 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10433 flower src_mac 02:31:b2:39:d9:84 dst_mac 02:37:b1:1b:fc:4f action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10434 flower src_mac 02:07:52:88:c8:f7 dst_mac 02:17:3b:7e:01:9e vlan_id 2567 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10435 flower src_mac 02:e0:28:67:9a:5a dst_mac 02:c6:0c:79:69:a6 vlan_id 3932 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10436 flower src_mac 02:9e:10:24:9e:c5 dst_mac 02:98:58:36:66:15 vlan_id 951 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ip pref 10437 flower src_mac 02:52:cf:81:dd:db dst_mac 02:d8:64:33:bc:c7 src_ip 77.191.155.182 dst_ip 35.96.222.36 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10438 flower src_mac 02:fe:fa:66:fa:bf dst_mac 02:1b:3c:73:5a:be vlan_id 3690 vlan_ethtype 0x0800 src_ip 82.97.151.197 dst_ip 75.214.176.86 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10439 flower src_mac 02:2c:33:2c:62:38 dst_mac 02:ef:b8:9b:06:f1 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10440 flower src_mac 02:30:c6:fe:d5:5a dst_mac 02:a7:d1:27:18:82 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10441 flower src_mac 02:f0:e2:3b:6a:aa dst_mac 02:dc:bb:6e:f9:5d vlan_id 1428 vlan_ethtype ipv4 src_ip 104.7.149.16 dst_ip 93.137.172.238 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10442 flower src_mac 02:0e:9e:2b:55:83 dst_mac 02:c5:2c:1d:1a:c2 vlan_id 1373 vlan_ethtype 0x0800 src_ip 71.53.150.76 dst_ip 35.107.252.125 ip_proto udp src_port 36833 dst_port 65167 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10443 flower src_mac 02:f7:4b:fd:8f:73 dst_mac 02:7a:39:57:77:65 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10444 flower src_mac 02:39:a2:ef:df:d1 dst_mac 02:38:65:13:83:1c vlan_id 2953 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10445 flower src_mac 02:e9:96:42:d6:04 dst_mac 02:64:7b:39:ee:00 vlan_id 4011 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10446 flower src_mac 02:d8:ff:89:14:eb dst_mac 02:eb:76:37:d4:49 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10447 flower src_mac 02:80:44:e9:32:6e dst_mac 02:bd:8a:d2:4f:07 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10448 flower src_mac 02:49:b4:55:77:f5 dst_mac 02:07:e1:71:84:47 vlan_id 1125 vlan_ethtype ipv4 src_ip 58.88.107.45 dst_ip 78.186.41.211 ip_proto tcp src_port 20700 dst_port 37252 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10449 flower src_mac 02:2e:44:df:02:99 dst_mac 02:f6:76:cb:9e:e9 vlan_id 1770 vlan_ethtype ipv4 src_ip 117.231.178.77 dst_ip 68.237.134.46 ip_proto udp src_port 3593 dst_port 22964 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10450 flower src_mac 02:09:8d:b0:27:59 dst_mac 02:1d:19:c0:80:5a src_ip 57.159.54.60 dst_ip 93.69.119.15 ip_proto tcp src_port 53754 dst_port 17247 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10451 flower src_mac 02:5b:90:f9:4d:8b dst_mac 02:75:59:a4:89:02 vlan_id 3529 vlan_ethtype ip src_ip 79.187.131.88 dst_ip 121.155.17.153 ip_proto udp src_port 39659 dst_port 1430 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10452 flower src_mac 02:5d:4f:ae:02:90 dst_mac 02:82:d2:59:c6:c6 vlan_id 2401 vlan_ethtype 0x0800 src_ip 49.32.42.141 dst_ip 107.174.247.184 ip_proto tcp src_port 34288 dst_port 37536 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10453 flower src_mac 02:5e:34:4b:0c:be dst_mac 02:77:e6:e9:53:e9 vlan_id 2740 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10454 flower src_mac 02:91:d0:7c:f0:2e dst_mac 02:c6:46:cb:72:f4 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10455 flower src_mac 02:31:42:b6:6f:60 dst_mac 02:54:95:e4:90:86 src_ip 113.111.37.210 dst_ip 33.134.233.249 ip_proto icmp code 120 type 12 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10456 flower src_mac 02:6a:04:27:c7:02 dst_mac 02:19:40:04:92:64 vlan_id 2608 vlan_ethtype 0x0800 src_ip 112.159.81.158 dst_ip 28.49.131.217 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10457 flower src_mac 02:6a:63:18:02:6a dst_mac 02:bb:45:f7:b2:ad vlan_id 2509 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10458 flower src_mac 02:b5:d7:09:79:37 dst_mac 02:b5:12:5f:3e:3c vlan_id 3486 vlan_ethtype ip src_ip 43.243.82.152 dst_ip 121.133.233.1 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10459 flower src_mac 02:7b:45:b9:58:35 dst_mac 02:f7:c1:e4:01:78 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10460 flower src_mac 02:31:02:b2:0f:9b dst_mac 02:fb:73:23:05:ff action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10461 flower src_mac 02:eb:53:97:ff:f2 dst_mac 02:71:d7:d1:63:a4 action trap && tc filter add dev swp1 ingress protocol ip pref 10462 flower src_mac 02:26:9f:5d:6c:38 dst_mac 02:ff:51:9a:4a:75 src_ip 42.133.54.105 dst_ip 106.150.28.52 ip_proto icmp code 25 type 11 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10463 flower src_mac 02:18:25:8d:5a:12 dst_mac 02:c8:2c:ba:f6:bb action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10464 flower src_mac 02:12:51:08:48:ca dst_mac 02:7b:c8:18:14:09 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10465 flower src_mac 02:07:39:f2:bb:72 dst_mac 02:62:07:d9:cd:e0 vlan_id 993 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10466 flower src_mac 02:7b:8d:30:b7:5c dst_mac 02:f9:0c:61:0e:9b action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10467 flower src_mac 02:f3:94:d6:25:5c dst_mac 02:dd:5f:83:69:7a action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10468 flower src_mac 02:df:7d:1d:cb:8c dst_mac 02:07:bf:17:19:94 vlan_id 1117 vlan_ethtype ipv4 src_ip 43.176.151.177 dst_ip 85.35.58.241 ip_proto udp src_port 37484 dst_port 12493 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10469 flower src_mac 02:62:bc:ac:d2:58 dst_mac 02:11:d6:1c:f3:76 vlan_id 652 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10470 flower src_mac 02:26:2c:74:86:6b dst_mac 02:1a:ab:02:78:d7 action trap && tc filter add dev swp1 ingress protocol ip pref 10471 flower src_mac 02:a9:e4:24:3c:24 dst_mac 02:eb:0b:f4:b0:67 src_ip 27.249.70.248 dst_ip 103.142.211.177 ip_proto udp src_port 57702 dst_port 4267 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10472 flower src_mac 02:e0:0a:66:8c:69 dst_mac 02:88:19:55:03:5d vlan_id 1919 vlan_ethtype ipv4 src_ip 122.46.228.14 dst_ip 85.82.155.76 ip_proto udp src_port 14910 dst_port 14131 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10473 flower src_mac 02:27:5b:c1:04:f8 dst_mac 02:9c:6a:42:fc:07 vlan_id 1978 vlan_ethtype 0x0800 src_ip 40.98.60.202 dst_ip 16.239.255.103 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10474 flower src_mac 02:75:0e:31:0e:e4 dst_mac 02:74:24:1f:64:33 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10475 flower src_mac 02:0d:a6:07:4d:bc dst_mac 02:75:1a:22:90:ee action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10476 flower src_mac 02:b6:52:df:95:98 dst_mac 02:63:07:4c:1c:76 src_ip 92.184.160.203 dst_ip 69.58.116.173 ip_proto tcp src_port 52246 dst_port 18557 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10477 flower src_mac 02:fc:89:5a:cf:42 dst_mac 02:7b:2c:ac:d0:14 vlan_id 1903 vlan_ethtype 0x0800 src_ip 26.247.219.96 dst_ip 110.58.63.69 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10478 flower src_mac 02:ed:87:13:0e:c4 dst_mac 02:f8:4f:9e:5d:da vlan_id 3203 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ip pref 10479 flower src_mac 02:01:b6:d5:3a:aa dst_mac 02:89:12:5d:9b:c6 src_ip 19.101.67.69 dst_ip 125.244.37.141 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10480 flower src_mac 02:a3:b0:b3:48:e4 dst_mac 02:fd:4a:16:8e:4a vlan_id 2861 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10481 flower src_mac 02:f3:f5:24:e0:8a dst_mac 02:c8:e0:91:a9:59 vlan_id 2067 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10482 flower src_mac 02:3b:b1:5b:de:f2 dst_mac 02:8d:d1:69:83:8f vlan_id 1195 vlan_ethtype 0x0800 src_ip 55.140.203.206 dst_ip 72.165.42.46 ip_proto udp src_port 42159 dst_port 8409 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10483 flower src_mac 02:20:4d:60:46:e9 dst_mac 02:a8:aa:a2:14:0d src_ip 58.30.8.152 dst_ip 123.31.51.64 ip_proto icmp code 113 type 4 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10484 flower src_mac 02:13:50:78:a5:36 dst_mac 02:47:a7:b5:b0:2c vlan_id 3451 vlan_ethtype 0x0800 src_ip 66.49.219.37 dst_ip 68.149.165.190 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10485 flower src_mac 02:26:51:6b:eb:0b dst_mac 02:b1:8e:cd:82:e5 vlan_id 3917 vlan_ethtype 0x0800 src_ip 66.251.50.224 dst_ip 119.235.218.150 ip_proto udp src_port 7288 dst_port 30992 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10486 flower src_mac 02:c8:a7:3f:c7:07 dst_mac 02:1b:8d:7a:d5:8a vlan_id 438 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ip pref 10487 flower src_mac 02:2c:c4:8c:45:b7 dst_mac 02:1f:bb:00:e1:92 src_ip 121.224.249.98 dst_ip 59.254.135.15 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10488 flower src_mac 02:53:50:b2:ff:2d dst_mac 02:67:ff:5a:ca:ff src_ip 62.41.5.25 dst_ip 64.156.52.192 ip_proto icmp code 42 type 8 action trap && tc filter add dev swp1 ingress protocol ip pref 10489 flower src_mac 02:63:b4:52:6f:48 dst_mac 02:7b:9e:d2:f9:72 src_ip 96.170.110.196 dst_ip 30.72.177.41 ip_proto tcp src_port 43041 dst_port 3334 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10490 flower src_mac 02:e4:ed:45:b1:55 dst_mac 02:42:38:c6:c4:a6 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10491 flower src_mac 02:9b:cf:81:9d:0c dst_mac 02:ca:2b:2c:9c:b8 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10492 flower src_mac 02:a5:67:fd:76:07 dst_mac 02:fd:93:a9:a2:a4 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10493 flower src_mac 02:0e:e7:57:e0:04 dst_mac 02:0a:aa:89:90:d0 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10494 flower src_mac 02:44:75:df:e1:78 dst_mac 02:86:40:20:95:15 vlan_id 2323 vlan_ethtype ip src_ip 32.59.121.180 dst_ip 48.102.11.140 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10495 flower src_mac 02:90:0b:d7:e9:c9 dst_mac 02:c6:2a:2f:10:0a vlan_id 2412 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10496 flower src_mac 02:d8:c7:e1:c8:dc dst_mac 02:a0:14:a1:3c:2a action trap && tc filter add dev swp1 ingress protocol ip pref 10497 flower src_mac 02:5d:b7:34:57:2b dst_mac 02:12:f8:23:bb:8f src_ip 91.40.114.223 dst_ip 86.4.83.220 ip_proto icmp code 197 type 3 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10498 flower src_mac 02:a9:b6:27:27:0c dst_mac 02:54:56:e8:bf:4c vlan_id 3834 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10499 flower src_mac 02:32:0c:5b:b2:e1 dst_mac 02:d8:12:74:66:6b vlan_id 1275 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10500 flower src_mac 02:f9:01:db:93:99 dst_mac 02:6d:26:e8:ee:1d action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10501 flower src_mac 02:9d:e7:f6:45:e7 dst_mac 02:91:c5:fe:ac:39 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10502 flower src_mac 02:f5:3d:c9:63:c6 dst_mac 02:c0:c8:36:a5:51 vlan_id 82 vlan_ethtype 0x0800 src_ip 52.201.95.30 dst_ip 41.54.180.187 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10503 flower src_mac 02:9b:8a:26:30:c5 dst_mac 02:ec:58:16:e7:ae vlan_id 1367 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10504 flower src_mac 02:c1:39:de:84:08 dst_mac 02:98:1a:a9:20:74 vlan_id 642 vlan_ethtype ip src_ip 38.43.41.28 dst_ip 24.153.39.57 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10505 flower src_mac 02:1f:e7:ca:45:f6 dst_mac 02:88:77:03:ad:41 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10506 flower src_mac 02:10:09:3e:ec:bf dst_mac 02:9e:1a:af:71:13 vlan_id 705 vlan_ethtype ipv4 src_ip 80.175.37.190 dst_ip 54.61.115.8 ip_proto tcp src_port 47647 dst_port 43704 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10507 flower src_mac 02:7b:37:69:87:71 dst_mac 02:1b:22:62:5d:8d src_ip 71.85.138.240 dst_ip 32.46.77.228 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10508 flower src_mac 02:64:b4:f2:f7:bd dst_mac 02:f4:d8:78:55:04 vlan_id 2387 vlan_ethtype ip src_ip 55.188.113.100 dst_ip 86.163.170.225 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10509 flower src_mac 02:ff:1e:4d:7e:1e dst_mac 02:6e:ad:92:b7:cb action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10510 flower src_mac 02:0e:71:0f:2f:e1 dst_mac 02:d7:78:8f:42:82 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10511 flower src_mac 02:96:1a:59:55:63 dst_mac 02:68:6d:2c:18:85 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10512 flower src_mac 02:c2:57:c3:6e:08 dst_mac 02:1f:c7:fe:43:f4 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10513 flower src_mac 02:7b:45:b9:95:c5 dst_mac 02:3c:94:b2:d5:78 src_ip 103.213.141.233 dst_ip 125.33.159.103 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10514 flower src_mac 02:8d:eb:04:08:51 dst_mac 02:db:db:ce:42:42 src_ip 121.165.190.60 dst_ip 95.215.51.50 ip_proto udp src_port 19491 dst_port 62556 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10515 flower src_mac 02:fc:23:d6:f7:56 dst_mac 02:e7:f5:a1:2a:fa action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10516 flower src_mac 02:67:05:77:e6:99 dst_mac 02:be:ae:92:c2:61 vlan_id 2390 vlan_ethtype 0x0800 src_ip 119.9.5.4 dst_ip 90.48.23.231 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10517 flower src_mac 02:1b:b0:77:4a:99 dst_mac 02:9f:f9:ef:f2:b2 vlan_id 3541 vlan_ethtype ipv4 src_ip 113.177.182.25 dst_ip 66.53.103.177 ip_proto tcp src_port 37512 dst_port 970 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10518 flower src_mac 02:af:85:4f:fc:7b dst_mac 02:10:fd:5e:59:83 vlan_id 1495 vlan_ethtype 0x0800 src_ip 61.87.251.237 dst_ip 65.54.138.103 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10519 flower src_mac 02:65:7b:31:29:53 dst_mac 02:5d:c4:4b:7b:dc src_ip 28.230.210.228 dst_ip 63.204.141.111 ip_proto tcp src_port 49950 dst_port 60943 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10520 flower src_mac 02:a9:f6:a5:d6:70 dst_mac 02:0e:18:84:28:bc vlan_id 2400 vlan_ethtype ipv4 src_ip 53.37.2.249 dst_ip 25.5.4.147 ip_proto udp src_port 56126 dst_port 44489 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10521 flower src_mac 02:ae:93:38:aa:7f dst_mac 02:33:f3:1b:67:f1 src_ip 21.136.93.41 dst_ip 94.65.85.49 ip_proto udp src_port 16349 dst_port 50519 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10522 flower src_mac 02:66:af:1c:7b:e5 dst_mac 02:8a:48:f1:6b:04 vlan_id 802 vlan_ethtype 0x0800 src_ip 12.226.189.17 dst_ip 11.121.179.24 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10523 flower src_mac 02:8d:51:3f:62:aa dst_mac 02:7a:0f:28:f3:63 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10524 flower src_mac 02:67:db:78:ef:57 dst_mac 02:2b:fd:3c:4a:f4 vlan_id 612 vlan_ethtype 0x0800 src_ip 104.223.40.28 dst_ip 66.245.102.174 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10525 flower src_mac 02:2f:97:06:e2:2c dst_mac 02:76:dd:b5:a8:9d vlan_id 2828 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10526 flower src_mac 02:ce:97:f3:18:eb dst_mac 02:43:49:32:cc:7e src_ip 47.127.79.122 dst_ip 112.108.22.190 ip_proto udp src_port 38651 dst_port 23968 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10527 flower src_mac 02:a3:e3:5a:2c:bf dst_mac 02:cf:a9:08:3d:68 vlan_id 2211 vlan_ethtype ipv4 src_ip 110.141.242.124 dst_ip 21.123.12.89 ip_proto udp src_port 48295 dst_port 60930 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10528 flower src_mac 02:88:dd:83:5f:5a dst_mac 02:ae:44:23:cd:34 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10529 flower src_mac 02:10:a4:08:87:45 dst_mac 02:c1:a3:b3:4a:c0 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10530 flower src_mac 02:fc:bd:2a:0f:20 dst_mac 02:7a:73:b3:49:b0 vlan_id 2686 vlan_ethtype 0x0800 src_ip 73.153.237.121 dst_ip 77.124.236.197 ip_proto udp src_port 32633 dst_port 59284 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10531 flower src_mac 02:9f:d6:4f:18:54 dst_mac 02:d7:07:b9:68:6a src_ip 105.34.29.33 dst_ip 117.255.224.209 ip_proto tcp src_port 20127 dst_port 42882 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10532 flower src_mac 02:b3:79:9e:6a:86 dst_mac 02:42:af:d4:3e:53 vlan_id 1040 vlan_ethtype 0x0800 src_ip 71.160.233.56 dst_ip 107.229.162.92 ip_proto tcp src_port 5045 dst_port 43843 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10533 flower src_mac 02:52:f9:7c:1b:de dst_mac 02:c5:88:11:ae:27 vlan_id 125 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10534 flower src_mac 02:f4:39:25:09:3e dst_mac 02:c4:d7:5f:fc:e8 vlan_id 2221 vlan_ethtype ipv4 src_ip 101.80.22.223 dst_ip 97.190.145.89 ip_proto tcp src_port 51546 dst_port 9125 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10535 flower src_mac 02:74:6c:94:b3:14 dst_mac 02:2c:f1:17:63:b7 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10536 flower src_mac 02:14:49:01:d7:31 dst_mac 02:d4:37:e8:3e:01 src_ip 107.208.223.231 dst_ip 102.160.194.133 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10537 flower src_mac 02:fe:5a:42:44:b4 dst_mac 02:fa:14:a7:e2:59 vlan_id 2540 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10538 flower src_mac 02:81:59:28:f6:cc dst_mac 02:b0:3d:95:c1:cb vlan_id 1732 vlan_ethtype ip src_ip 108.217.71.64 dst_ip 116.249.131.165 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10539 flower src_mac 02:dc:7d:95:a5:06 dst_mac 02:c2:fa:6b:a7:50 vlan_id 567 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10540 flower src_mac 02:0a:7b:e3:c7:3b dst_mac 02:b6:ea:5e:52:c7 src_ip 16.22.43.205 dst_ip 113.149.54.14 ip_proto icmp code 120 type 5 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10541 flower src_mac 02:66:bf:eb:d9:9f dst_mac 02:6c:b4:d7:87:8b src_ip 79.207.186.39 dst_ip 111.71.159.130 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10542 flower src_mac 02:4d:4b:b6:42:89 dst_mac 02:bb:c5:9d:a6:a3 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10543 flower src_mac 02:c8:07:a0:7d:42 dst_mac 02:c6:6b:37:66:9f action drop && tc filter add dev swp1 ingress protocol ip pref 10544 flower src_mac 02:46:cf:b0:23:4a dst_mac 02:e1:8c:ed:ec:42 src_ip 75.156.148.188 dst_ip 33.11.145.132 ip_proto icmp code 145 type 0 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10545 flower src_mac 02:e7:73:0b:a7:b8 dst_mac 02:08:2f:67:e8:59 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10546 flower src_mac 02:28:b3:45:2d:eb dst_mac 02:29:54:e0:30:8a action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10547 flower src_mac 02:c9:6f:d3:43:46 dst_mac 02:b4:3e:73:57:5c action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10548 flower src_mac 02:dc:59:20:08:b9 dst_mac 02:1b:1c:fe:b2:01 action pass && tc filter add dev swp1 ingress protocol ip pref 10549 flower src_mac 02:a7:22:0f:fc:63 dst_mac 02:e4:88:92:6d:9b src_ip 38.210.159.7 dst_ip 66.104.33.23 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10550 flower src_mac 02:a6:12:6b:e1:18 dst_mac 02:86:55:ae:6f:26 vlan_id 261 vlan_ethtype ipv4 src_ip 52.41.146.136 dst_ip 79.76.235.56 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10551 flower src_mac 02:fd:b3:fe:e2:ae dst_mac 02:fc:3c:fd:2f:32 vlan_id 1029 vlan_ethtype ipv4 src_ip 29.93.219.191 dst_ip 66.188.30.203 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10552 flower src_mac 02:04:50:27:0b:b9 dst_mac 02:5f:af:68:7c:d6 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10553 flower src_mac 02:7a:dd:89:59:a6 dst_mac 02:1b:05:dd:79:d8 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10554 flower src_mac 02:5a:91:aa:0a:2e dst_mac 02:e5:25:eb:17:d4 vlan_id 1030 vlan_ethtype ipv4 src_ip 95.240.127.140 dst_ip 15.93.13.4 ip_proto udp src_port 56978 dst_port 12054 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10555 flower src_mac 02:4f:7b:c1:6d:d0 dst_mac 02:ae:ad:b7:75:80 vlan_id 134 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10556 flower src_mac 02:7f:8b:83:dc:b9 dst_mac 02:5a:72:05:1f:2e vlan_id 2186 vlan_ethtype ip src_ip 59.148.74.32 dst_ip 58.111.144.187 ip_proto tcp src_port 57964 dst_port 41337 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10557 flower src_mac 02:96:b7:81:ad:86 dst_mac 02:9d:a6:51:0a:af action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10558 flower src_mac 02:a5:e9:6d:67:85 dst_mac 02:b6:f3:4b:b5:5d vlan_id 2913 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10559 flower src_mac 02:ef:2b:6a:50:c0 dst_mac 02:3d:e4:cc:cc:c1 vlan_id 387 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10560 flower src_mac 02:50:22:2d:6b:9d dst_mac 02:c3:e9:5a:91:7e vlan_id 857 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10561 flower src_mac 02:a5:cb:2f:b7:eb dst_mac 02:bb:34:88:43:1f action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10562 flower src_mac 02:f0:05:4f:d2:35 dst_mac 02:ec:e2:b8:c1:36 vlan_id 3488 vlan_ethtype 0x0800 src_ip 95.190.72.85 dst_ip 38.196.13.224 ip_proto tcp src_port 24312 dst_port 4768 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10563 flower src_mac 02:ce:ce:87:c8:6c dst_mac 02:73:b6:ef:74:9b vlan_id 850 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10564 flower src_mac 02:86:ec:89:84:97 dst_mac 02:6a:4b:54:88:dc vlan_id 1585 vlan_ethtype ip src_ip 113.48.251.28 dst_ip 124.219.249.132 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10565 flower src_mac 02:57:68:fa:a0:e4 dst_mac 02:12:77:4b:41:c2 vlan_id 1043 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10566 flower src_mac 02:c6:d4:72:05:09 dst_mac 02:a5:1f:05:d8:d3 src_ip 90.191.103.187 dst_ip 18.98.145.25 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10567 flower src_mac 02:74:bc:60:f8:61 dst_mac 02:cf:f8:db:f1:6a vlan_id 2019 vlan_ethtype ip src_ip 93.95.50.224 dst_ip 104.70.43.87 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10568 flower src_mac 02:8b:62:e3:a6:b4 dst_mac 02:95:57:ff:3e:85 vlan_id 3485 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10569 flower src_mac 02:4a:96:6a:3a:f2 dst_mac 02:46:64:3f:f2:d6 vlan_id 3001 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10570 flower src_mac 02:17:b1:d3:dc:6c dst_mac 02:26:6e:40:7e:b2 vlan_id 2420 vlan_ethtype ipv4 src_ip 69.139.237.61 dst_ip 109.8.15.186 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10571 flower src_mac 02:fb:a4:34:46:77 dst_mac 02:e6:e3:e9:50:18 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10572 flower src_mac 02:3c:6c:d7:ec:cb dst_mac 02:d5:01:41:ed:7e src_ip 30.51.105.192 dst_ip 111.175.63.9 ip_proto udp src_port 5364 dst_port 48288 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10573 flower src_mac 02:0a:06:aa:0f:b3 dst_mac 02:46:62:b6:21:2c vlan_id 2524 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10574 flower src_mac 02:a2:4a:4b:a9:57 dst_mac 02:87:60:45:53:64 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10575 flower src_mac 02:50:92:43:60:e9 dst_mac 02:7d:e6:bd:18:ad vlan_id 4079 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10576 flower src_mac 02:98:1f:bc:b0:21 dst_mac 02:84:1e:34:7a:24 vlan_id 3760 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10577 flower src_mac 02:02:84:cf:8f:57 dst_mac 02:d6:20:77:20:b8 src_ip 87.131.17.12 dst_ip 70.205.22.172 ip_proto udp src_port 50323 dst_port 25183 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10578 flower src_mac 02:85:ac:c2:8b:9d dst_mac 02:4d:0e:2f:f0:9b vlan_id 656 vlan_ethtype ip src_ip 87.200.50.72 dst_ip 42.180.122.156 action drop && tc filter add dev swp1 ingress protocol ip pref 10579 flower src_mac 02:15:3c:ef:7a:b2 dst_mac 02:d9:7e:dc:24:2f src_ip 34.11.110.187 dst_ip 104.34.224.93 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10580 flower src_mac 02:7d:df:96:bd:5e dst_mac 02:51:e9:2b:2f:98 vlan_id 510 vlan_ethtype ip src_ip 25.81.231.44 dst_ip 65.239.65.214 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10581 flower src_mac 02:80:1f:cd:0e:5d dst_mac 02:82:b4:34:2f:4a vlan_id 1592 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10582 flower src_mac 02:e8:5d:21:3a:85 dst_mac 02:61:7c:4c:1f:2b vlan_id 2736 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10583 flower src_mac 02:78:ed:e7:86:1c dst_mac 02:3c:5c:bb:66:a7 src_ip 96.24.25.112 dst_ip 103.140.21.106 ip_proto udp src_port 30462 dst_port 3852 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10584 flower src_mac 02:be:e5:a4:1d:ac dst_mac 02:ad:d3:38:88:77 vlan_id 1430 vlan_ethtype ipv4 src_ip 33.37.226.102 dst_ip 25.253.74.166 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10585 flower src_mac 02:d1:4b:8d:fa:1c dst_mac 02:f9:fa:11:d7:a9 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10586 flower src_mac 02:80:fb:79:9f:f3 dst_mac 02:a8:c4:88:7d:47 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10587 flower src_mac 02:c1:fb:91:f0:19 dst_mac 02:04:9e:e7:8d:42 vlan_id 3112 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10588 flower src_mac 02:c8:44:45:92:ce dst_mac 02:07:10:3a:2d:2b vlan_id 2279 vlan_ethtype 0x0800 src_ip 63.42.234.228 dst_ip 95.72.173.32 ip_proto tcp src_port 18461 dst_port 9959 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10589 flower src_mac 02:49:bf:0b:eb:70 dst_mac 02:26:72:de:bb:33 vlan_id 323 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10590 flower src_mac 02:b2:d0:37:a0:d7 dst_mac 02:8d:8f:0c:ac:24 vlan_id 2215 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10591 flower src_mac 02:0f:1a:82:6a:d4 dst_mac 02:c5:3a:6d:0d:66 vlan_id 2472 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10592 flower src_mac 02:68:aa:b1:66:2b dst_mac 02:9d:d6:bd:8c:ce vlan_id 2185 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10593 flower src_mac 02:c2:ed:3e:43:15 dst_mac 02:d7:38:fc:f9:6b vlan_id 2834 vlan_ethtype 0x0800 src_ip 21.72.172.17 dst_ip 63.35.76.155 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10594 flower src_mac 02:9f:92:7f:35:f2 dst_mac 02:db:bb:ff:40:0a action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10595 flower src_mac 02:04:62:df:ed:50 dst_mac 02:75:10:b2:57:f1 vlan_id 1490 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10596 flower src_mac 02:66:90:71:78:4c dst_mac 02:11:98:1c:36:63 src_ip 59.165.71.84 dst_ip 111.247.88.173 ip_proto udp src_port 17310 dst_port 60271 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10597 flower src_mac 02:f2:d1:95:05:b1 dst_mac 02:eb:3a:f4:6d:d0 vlan_id 1207 vlan_ethtype ip src_ip 24.144.107.213 dst_ip 119.224.195.246 ip_proto tcp src_port 9341 dst_port 29256 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10598 flower src_mac 02:24:15:b9:c8:68 dst_mac 02:54:d2:53:62:9a vlan_id 1352 vlan_ethtype ipv4 src_ip 44.233.171.230 dst_ip 100.248.186.21 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10599 flower src_mac 02:b1:59:e1:2b:05 dst_mac 02:4b:6a:9b:0d:84 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10600 flower src_mac 02:61:46:88:1c:76 dst_mac 02:16:86:9c:f7:f9 vlan_id 1968 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10601 flower src_mac 02:64:ec:84:02:28 dst_mac 02:d0:3d:0d:25:25 vlan_id 188 vlan_ethtype ipv4 src_ip 112.185.114.139 dst_ip 98.78.169.172 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10602 flower src_mac 02:d7:1d:9b:6a:ac dst_mac 02:d2:31:54:1a:02 vlan_id 877 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10603 flower src_mac 02:16:35:e6:7f:6f dst_mac 02:a3:c5:f0:94:b3 vlan_id 3853 vlan_ethtype ip src_ip 43.88.165.101 dst_ip 66.214.43.241 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10604 flower src_mac 02:e4:ef:56:d7:50 dst_mac 02:07:0d:91:d4:e6 src_ip 104.222.30.177 dst_ip 97.217.163.49 ip_proto icmp code 0 type 3 action drop && tc filter add dev swp1 ingress protocol ip pref 10605 flower src_mac 02:cf:81:5b:6d:f1 dst_mac 02:5b:fe:55:e8:5e src_ip 102.215.77.230 dst_ip 11.74.192.59 ip_proto tcp src_port 35953 dst_port 35424 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10606 flower src_mac 02:12:57:fc:26:ef dst_mac 02:29:a7:ba:f0:22 vlan_id 2533 vlan_ethtype ipv4 src_ip 113.91.13.238 dst_ip 102.139.40.98 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10607 flower src_mac 02:20:19:5b:97:a4 dst_mac 02:e0:39:7e:37:ea vlan_id 3303 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10608 flower src_mac 02:31:d1:60:95:89 dst_mac 02:31:b2:d9:46:b4 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10609 flower src_mac 02:e7:44:03:c7:2c dst_mac 02:ea:1a:6c:45:e7 src_ip 12.59.226.199 dst_ip 121.200.155.206 ip_proto udp src_port 32353 dst_port 32416 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10610 flower src_mac 02:bb:88:51:6e:89 dst_mac 02:28:c8:24:25:a3 src_ip 73.248.210.125 dst_ip 97.244.114.243 ip_proto icmp code 235 type 14 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10611 flower src_mac 02:02:8e:3e:aa:09 dst_mac 02:eb:13:32:3e:79 vlan_id 1347 vlan_ethtype ipv4 src_ip 54.66.36.131 dst_ip 42.76.108.69 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10612 flower src_mac 02:9c:c0:d1:22:e7 dst_mac 02:35:69:49:34:07 vlan_id 1155 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10613 flower src_mac 02:e8:4b:67:79:b0 dst_mac 02:c9:8c:0b:c5:e8 vlan_id 2635 vlan_ethtype ip src_ip 107.252.225.245 dst_ip 126.59.18.239 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10614 flower src_mac 02:f9:54:66:43:24 dst_mac 02:1c:75:b7:08:64 vlan_id 2916 vlan_ethtype ip src_ip 64.109.187.164 dst_ip 65.45.247.124 ip_proto tcp src_port 45583 dst_port 10577 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10615 flower src_mac 02:6c:bf:18:7c:45 dst_mac 02:52:ef:43:73:79 vlan_id 3345 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10616 flower src_mac 02:42:b1:e2:c5:15 dst_mac 02:aa:23:8a:9a:53 vlan_id 4026 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10617 flower src_mac 02:6b:56:52:fb:80 dst_mac 02:cb:97:7d:2d:54 src_ip 125.2.18.78 dst_ip 61.49.167.223 ip_proto tcp src_port 3318 dst_port 32886 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10618 flower src_mac 02:85:e9:3f:f7:c7 dst_mac 02:90:a0:24:88:2e vlan_id 579 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ip pref 10619 flower src_mac 02:d4:e0:1b:d7:aa dst_mac 02:e6:02:7c:4e:a8 src_ip 38.234.100.129 dst_ip 63.199.145.144 ip_proto icmp code 70 type 4 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10620 flower src_mac 02:06:1c:a0:32:2e dst_mac 02:0f:3d:d2:6d:4b src_ip 24.209.129.102 dst_ip 80.220.121.90 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10621 flower src_mac 02:5b:0d:1f:ed:30 dst_mac 02:b7:27:d9:a6:ac action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10622 flower src_mac 02:a2:20:e7:f4:ea dst_mac 02:56:80:1d:c5:54 vlan_id 839 vlan_ethtype 0x0800 src_ip 92.164.45.59 dst_ip 53.32.145.185 ip_proto tcp src_port 48469 dst_port 49879 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10623 flower src_mac 02:f8:bd:3c:8d:ea dst_mac 02:fa:ef:4b:e2:e4 vlan_id 3223 vlan_ethtype 0x0800 src_ip 107.239.36.120 dst_ip 104.101.11.198 ip_proto tcp src_port 55307 dst_port 31297 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10624 flower src_mac 02:76:3f:64:f9:1d dst_mac 02:43:6f:d9:d1:0c src_ip 63.54.113.24 dst_ip 60.110.0.225 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10625 flower src_mac 02:09:96:73:ea:e5 dst_mac 02:03:eb:d5:23:3a action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10626 flower src_mac 02:fd:b7:7a:58:c6 dst_mac 02:78:53:cd:2a:62 vlan_id 1919 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10627 flower src_mac 02:c6:d4:c8:dd:a5 dst_mac 02:2f:56:34:77:43 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10628 flower src_mac 02:0e:85:ec:27:71 dst_mac 02:3c:55:97:54:17 src_ip 59.232.42.133 dst_ip 94.218.240.202 ip_proto icmp code 220 type 15 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10629 flower src_mac 02:fd:bd:a1:55:49 dst_mac 02:b9:48:50:60:84 vlan_id 613 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10630 flower src_mac 02:83:f4:24:e0:55 dst_mac 02:f1:f6:41:92:1a action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10631 flower src_mac 02:83:9b:d7:de:09 dst_mac 02:4e:f6:f5:7b:49 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10632 flower src_mac 02:68:f6:df:98:66 dst_mac 02:e3:24:7e:0b:3b action pass && tc filter add dev swp1 ingress protocol ip pref 10633 flower src_mac 02:e3:03:cb:94:d9 dst_mac 02:d6:6a:16:32:cf src_ip 20.56.246.40 dst_ip 98.209.145.236 ip_proto udp src_port 31989 dst_port 54948 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10634 flower src_mac 02:91:e1:ef:f3:e9 dst_mac 02:62:e7:c9:b7:70 vlan_id 3696 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol ip pref 10635 flower src_mac 02:5b:7e:c7:36:70 dst_mac 02:22:08:75:ca:ac src_ip 114.125.116.27 dst_ip 92.205.150.80 ip_proto udp src_port 60469 dst_port 24251 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10636 flower src_mac 02:32:a0:4d:e9:85 dst_mac 02:36:4d:50:1d:e1 vlan_id 492 vlan_ethtype 0x0800 src_ip 76.133.253.32 dst_ip 42.172.252.8 ip_proto tcp src_port 42038 dst_port 24362 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10637 flower src_mac 02:64:a1:1a:e4:9a dst_mac 02:2b:a3:87:9b:4c vlan_id 1580 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10638 flower src_mac 02:24:df:1b:72:f4 dst_mac 02:93:0c:34:9c:e2 vlan_id 2103 vlan_ethtype ip src_ip 75.132.93.146 dst_ip 21.237.76.155 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10639 flower src_mac 02:00:b9:1b:61:ea dst_mac 02:51:b6:60:22:a6 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10640 flower src_mac 02:91:aa:30:f8:fb dst_mac 02:94:ab:b6:09:ca vlan_id 2028 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10641 flower src_mac 02:69:de:49:04:c4 dst_mac 02:9c:63:0b:06:62 vlan_id 3450 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10642 flower src_mac 02:8a:16:67:b6:c4 dst_mac 02:89:2f:1e:d9:1c action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10643 flower src_mac 02:40:81:e5:15:7c dst_mac 02:17:d5:5b:09:d1 vlan_id 2871 vlan_ethtype ip src_ip 31.219.197.5 dst_ip 65.100.49.12 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10644 flower src_mac 02:92:f3:4c:bc:be dst_mac 02:22:89:9d:3e:4c vlan_id 1471 vlan_ethtype 0x0800 src_ip 48.145.35.129 dst_ip 59.34.136.47 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10645 flower src_mac 02:4e:31:5d:5c:53 dst_mac 02:07:60:7c:93:97 vlan_id 1083 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10646 flower src_mac 02:cc:b5:1f:c3:4e dst_mac 02:c8:f7:4b:5e:4c vlan_id 1734 vlan_ethtype ip src_ip 81.127.134.226 dst_ip 82.86.249.82 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10647 flower src_mac 02:6e:e2:87:a8:15 dst_mac 02:75:25:54:21:ec action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10648 flower src_mac 02:d1:c1:8f:a3:2a dst_mac 02:5f:43:25:54:b7 vlan_id 3162 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10649 flower src_mac 02:e8:37:d1:8d:a3 dst_mac 02:61:dd:62:2d:87 vlan_id 3731 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10650 flower src_mac 02:14:6f:d9:12:c5 dst_mac 02:6b:0c:b9:30:63 vlan_id 1425 vlan_ethtype ipv4 src_ip 18.90.163.90 dst_ip 101.129.205.109 ip_proto udp src_port 27951 dst_port 19393 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10651 flower src_mac 02:c3:6a:a9:ee:52 dst_mac 02:a8:5b:de:d4:d1 action pass && tc filter add dev swp1 ingress protocol ip pref 10652 flower src_mac 02:4e:d2:00:90:50 dst_mac 02:12:a0:42:ae:18 src_ip 86.120.52.73 dst_ip 104.91.179.137 ip_proto icmp code 229 type 3 action drop && tc filter add dev swp1 ingress protocol ip pref 10653 flower src_mac 02:1e:94:f5:15:02 dst_mac 02:b3:66:ee:9b:a8 src_ip 62.163.187.155 dst_ip 82.94.216.159 ip_proto tcp src_port 21800 dst_port 32101 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10654 flower src_mac 02:8a:89:a1:6e:e1 dst_mac 02:0e:1b:ba:d2:b5 vlan_id 266 vlan_ethtype 0x0800 src_ip 15.126.246.216 dst_ip 107.232.69.98 ip_proto tcp src_port 58238 dst_port 25721 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10655 flower src_mac 02:84:57:c3:be:08 dst_mac 02:2b:36:48:93:d0 vlan_id 3948 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10656 flower src_mac 02:b5:56:06:70:ea dst_mac 02:d4:46:94:3f:ab vlan_id 830 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10657 flower src_mac 02:e4:3e:e7:13:54 dst_mac 02:b5:30:59:10:a3 vlan_id 2284 vlan_ethtype 0x0800 src_ip 114.249.213.76 dst_ip 97.39.29.11 ip_proto tcp src_port 51749 dst_port 46690 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10658 flower src_mac 02:58:1d:ce:ad:1c dst_mac 02:b8:e5:62:b3:4a vlan_id 2987 vlan_ethtype ipv4 src_ip 22.232.141.168 dst_ip 103.101.225.36 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10659 flower src_mac 02:09:c1:71:2b:1e dst_mac 02:d3:2b:31:e3:c3 src_ip 112.46.65.68 dst_ip 121.124.110.183 ip_proto icmp code 169 type 8 action drop && tc filter add dev swp1 ingress protocol ip pref 10660 flower src_mac 02:31:3f:fc:2f:91 dst_mac 02:5f:f0:b1:d0:87 src_ip 15.167.20.223 dst_ip 94.110.73.28 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10661 flower src_mac 02:e2:4d:e9:a4:12 dst_mac 02:bf:68:a3:ff:76 src_ip 66.128.89.27 dst_ip 12.30.252.46 ip_proto icmp code 128 type 17 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10662 flower src_mac 02:aa:1d:8d:17:53 dst_mac 02:cb:85:10:80:de src_ip 29.203.82.86 dst_ip 25.192.157.145 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10663 flower src_mac 02:53:9d:81:6d:7d dst_mac 02:7a:8a:a9:c4:ae vlan_id 2020 vlan_ethtype ip src_ip 114.38.129.201 dst_ip 91.87.206.71 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10664 flower src_mac 02:9e:39:a1:e9:ec dst_mac 02:e5:78:d8:60:16 src_ip 70.177.96.233 dst_ip 62.152.135.9 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10665 flower src_mac 02:d8:c2:df:e8:c3 dst_mac 02:e0:66:2b:89:23 vlan_id 2492 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10666 flower src_mac 02:c1:b8:16:39:a1 dst_mac 02:c7:9b:be:84:5c vlan_id 1285 vlan_ethtype ip src_ip 119.157.88.45 dst_ip 60.239.18.56 ip_proto udp src_port 6446 dst_port 62819 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10667 flower src_mac 02:bc:2f:25:e0:af dst_mac 02:20:82:c6:db:73 vlan_id 1928 vlan_ethtype ip src_ip 93.139.150.132 dst_ip 38.106.82.211 ip_proto udp src_port 34412 dst_port 16395 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10668 flower src_mac 02:f4:68:ad:7a:8d dst_mac 02:66:9d:24:38:ff src_ip 84.215.246.227 dst_ip 44.233.162.210 ip_proto udp src_port 13671 dst_port 32764 action drop && tc filter add dev swp1 ingress protocol ip pref 10669 flower src_mac 02:eb:39:31:ff:2d dst_mac 02:95:a0:c6:e4:e9 src_ip 94.205.220.209 dst_ip 21.148.44.247 ip_proto icmp code 75 type 8 action pass && tc filter add dev swp1 ingress protocol ip pref 10670 flower src_mac 02:5a:ee:62:27:fe dst_mac 02:1e:62:3d:10:10 src_ip 66.167.137.162 dst_ip 104.63.157.135 action drop && tc filter add dev swp1 ingress protocol ip pref 10671 flower src_mac 02:dd:6c:d2:0c:8c dst_mac 02:24:33:66:2c:c7 src_ip 62.132.213.220 dst_ip 40.47.62.207 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10672 flower src_mac 02:89:57:f7:0d:f2 dst_mac 02:32:c5:91:db:80 vlan_id 1506 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10673 flower src_mac 02:08:12:f7:49:f5 dst_mac 02:22:d7:85:70:20 vlan_id 2638 vlan_ethtype 0x0800 src_ip 116.54.171.156 dst_ip 81.49.36.153 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10674 flower src_mac 02:bb:55:13:10:be dst_mac 02:84:4e:dd:d4:4b action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10675 flower src_mac 02:e7:87:90:4c:ff dst_mac 02:2a:99:09:bf:05 vlan_id 625 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10676 flower src_mac 02:84:ee:8a:0f:40 dst_mac 02:8c:24:a1:8f:54 vlan_id 2933 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10677 flower src_mac 02:d1:6b:7f:d9:56 dst_mac 02:ac:11:91:7e:28 vlan_id 1882 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10678 flower src_mac 02:04:cb:6b:72:ee dst_mac 02:76:b2:98:5a:57 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10679 flower src_mac 02:32:8e:4c:8d:47 dst_mac 02:d8:af:e3:29:f9 vlan_id 2404 vlan_ethtype ip src_ip 35.14.177.90 dst_ip 26.50.88.199 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10680 flower src_mac 02:82:46:2e:83:0a dst_mac 02:8f:21:de:f6:9a vlan_id 1628 vlan_ethtype 0x0800 src_ip 79.161.227.47 dst_ip 48.250.108.19 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10681 flower src_mac 02:8e:3c:1f:fe:c6 dst_mac 02:5c:5f:5b:d3:6b action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10682 flower src_mac 02:8f:71:9d:03:90 dst_mac 02:b6:f9:e2:93:9e action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10683 flower src_mac 02:a1:ff:a8:47:d9 dst_mac 02:85:86:91:4d:b9 vlan_id 13 vlan_ethtype ip src_ip 30.37.235.243 dst_ip 36.155.181.204 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10684 flower src_mac 02:71:86:58:e5:73 dst_mac 02:16:f8:63:b9:8e action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10685 flower src_mac 02:fc:98:35:8b:b5 dst_mac 02:ec:7d:b9:fa:31 src_ip 104.180.201.130 dst_ip 19.72.250.5 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10686 flower src_mac 02:5b:4a:ab:75:64 dst_mac 02:2b:7b:e7:7b:58 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10687 flower src_mac 02:b1:9d:68:2a:b1 dst_mac 02:17:46:a7:e4:d9 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10688 flower src_mac 02:cf:b8:46:3b:43 dst_mac 02:3c:42:13:05:92 src_ip 120.212.19.80 dst_ip 51.151.227.21 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10689 flower src_mac 02:d7:b2:2a:87:3f dst_mac 02:b9:0d:9b:e2:89 vlan_id 1835 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10690 flower src_mac 02:25:46:c8:64:a1 dst_mac 02:4d:26:5d:dd:7c vlan_id 208 vlan_ethtype 0x0800 src_ip 64.181.134.76 dst_ip 43.224.100.241 ip_proto tcp src_port 41032 dst_port 11626 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10691 flower src_mac 02:54:f3:3f:bf:66 dst_mac 02:61:f3:34:03:71 src_ip 75.83.236.104 dst_ip 50.55.109.224 ip_proto tcp src_port 26055 dst_port 43724 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10692 flower src_mac 02:fd:42:07:1c:fd dst_mac 02:68:de:21:1f:1d vlan_id 3661 vlan_ethtype 0x0800 src_ip 26.94.6.18 dst_ip 120.223.122.108 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10693 flower src_mac 02:eb:11:43:38:2b dst_mac 02:5f:e6:a0:27:f2 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10694 flower src_mac 02:cc:05:91:59:53 dst_mac 02:f6:99:00:59:26 src_ip 92.20.193.143 dst_ip 63.26.231.217 ip_proto icmp code 22 type 16 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10695 flower src_mac 02:7f:f9:77:16:01 dst_mac 02:0d:62:cf:79:af action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10696 flower src_mac 02:bd:ab:05:e9:d4 dst_mac 02:70:3b:6d:e6:75 src_ip 86.231.92.186 dst_ip 59.179.78.67 ip_proto udp src_port 55505 dst_port 7235 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10697 flower src_mac 02:00:89:46:60:50 dst_mac 02:1e:15:e7:b9:b8 vlan_id 2721 vlan_ethtype ipv4 src_ip 53.81.20.140 dst_ip 40.143.186.219 ip_proto tcp src_port 20247 dst_port 39486 action pass && tc filter add dev swp1 ingress protocol ip pref 10698 flower src_mac 02:0c:dd:4a:4f:37 dst_mac 02:cb:f8:83:95:54 src_ip 102.133.109.169 dst_ip 44.133.113.133 ip_proto icmp code 166 type 15 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10699 flower src_mac 02:20:76:ed:06:7e dst_mac 02:14:6b:3c:b2:15 vlan_id 503 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10700 flower src_mac 02:ad:6a:e5:d4:42 dst_mac 02:e5:49:ce:e0:86 src_ip 20.92.144.22 dst_ip 116.127.36.108 ip_proto icmp code 82 type 14 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10701 flower src_mac 02:b8:c3:d5:e8:3b dst_mac 02:54:47:2d:b4:25 vlan_id 3506 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ip pref 10702 flower src_mac 02:cf:7f:a0:54:c0 dst_mac 02:54:b0:e4:07:ef src_ip 60.214.56.111 dst_ip 120.21.156.34 ip_proto icmp code 168 type 14 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10703 flower src_mac 02:72:07:bf:90:aa dst_mac 02:56:46:83:9b:50 vlan_id 1270 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10704 flower src_mac 02:80:2c:c4:6d:51 dst_mac 02:d2:da:12:a8:c9 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10705 flower src_mac 02:50:a8:a6:e6:aa dst_mac 02:71:04:17:cf:9f vlan_id 476 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10706 flower src_mac 02:3d:84:5c:d5:63 dst_mac 02:6e:27:33:c8:63 action trap && tc filter add dev swp1 ingress protocol ip pref 10707 flower src_mac 02:19:c5:7e:de:77 dst_mac 02:7b:25:60:f8:0d src_ip 112.17.26.31 dst_ip 120.22.127.12 ip_proto udp src_port 63456 dst_port 45289 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10708 flower src_mac 02:17:da:4b:3d:ea dst_mac 02:5b:48:8e:c5:1b vlan_id 3384 vlan_ethtype 0x0800 src_ip 12.237.73.23 dst_ip 38.70.155.59 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10709 flower src_mac 02:29:e0:ec:10:2c dst_mac 02:14:22:bd:67:d3 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10710 flower src_mac 02:ed:f2:4a:83:c6 dst_mac 02:be:b0:16:1c:74 src_ip 80.173.92.174 dst_ip 31.120.135.68 ip_proto icmp code 53 type 13 action drop && tc filter add dev swp1 ingress protocol ip pref 10711 flower src_mac 02:fc:96:76:8c:a9 dst_mac 02:1a:d3:16:26:e7 src_ip 107.225.44.119 dst_ip 96.245.220.17 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10712 flower src_mac 02:5d:a0:f1:fb:bd dst_mac 02:d6:d1:16:b7:65 vlan_id 1826 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10713 flower src_mac 02:c7:a5:22:9a:f4 dst_mac 02:22:a2:0c:88:6c vlan_id 2065 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10714 flower src_mac 02:e1:8f:97:83:e1 dst_mac 02:41:93:a1:21:4e vlan_id 215 vlan_ethtype 0x0800 src_ip 66.242.220.142 dst_ip 61.169.1.106 ip_proto tcp src_port 19092 dst_port 18366 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10715 flower src_mac 02:00:e7:23:aa:03 dst_mac 02:96:31:ac:8e:2c src_ip 59.254.26.245 dst_ip 22.130.54.104 ip_proto udp src_port 17554 dst_port 34014 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10716 flower src_mac 02:2f:22:6d:7a:0c dst_mac 02:70:36:e3:17:98 vlan_id 230 vlan_ethtype 0x0800 src_ip 50.169.243.18 dst_ip 123.105.210.231 ip_proto udp src_port 37382 dst_port 60106 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10717 flower src_mac 02:ee:28:6d:39:00 dst_mac 02:57:6c:22:79:6b action drop && tc filter add dev swp1 ingress protocol ip pref 10718 flower src_mac 02:e7:82:ae:7f:05 dst_mac 02:26:da:f4:74:c7 src_ip 81.208.228.85 dst_ip 107.117.7.173 ip_proto udp src_port 15421 dst_port 28819 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10719 flower src_mac 02:93:31:1f:11:22 dst_mac 02:67:87:14:9c:10 vlan_id 3661 vlan_ethtype ipv4 src_ip 45.228.129.130 dst_ip 66.33.106.244 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10720 flower src_mac 02:e9:d7:99:c2:53 dst_mac 02:1c:2c:e0:65:e3 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10721 flower src_mac 02:f9:0e:50:74:f8 dst_mac 02:dc:6f:57:25:59 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10722 flower src_mac 02:84:e7:d8:37:3d dst_mac 02:3a:ef:fb:f5:09 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10723 flower src_mac 02:b8:72:de:ce:e1 dst_mac 02:2d:a9:bf:5e:a2 vlan_id 2417 vlan_ethtype ipv4 src_ip 99.133.3.127 dst_ip 14.111.75.147 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10724 flower src_mac 02:82:4d:3d:5e:4f dst_mac 02:b7:0f:b1:53:b5 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10725 flower src_mac 02:2b:71:3d:25:bf dst_mac 02:e2:40:bf:ad:85 src_ip 91.219.43.110 dst_ip 70.1.59.91 ip_proto icmp code 98 type 16 action trap && tc filter add dev swp1 ingress protocol ip pref 10726 flower src_mac 02:dc:3d:be:91:b6 dst_mac 02:56:91:d2:69:a7 src_ip 98.150.114.209 dst_ip 19.180.171.213 ip_proto tcp src_port 34768 dst_port 25311 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10727 flower src_mac 02:cc:a1:57:94:14 dst_mac 02:45:5e:1a:88:0b vlan_id 1376 vlan_ethtype ipv4 src_ip 95.73.71.49 dst_ip 120.176.87.232 ip_proto tcp src_port 37994 dst_port 63619 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10728 flower src_mac 02:29:56:9b:93:0f dst_mac 02:a8:40:09:1b:99 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10729 flower src_mac 02:9d:9c:34:c8:43 dst_mac 02:be:6d:a9:da:a7 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10730 flower src_mac 02:79:6e:cd:58:a9 dst_mac 02:a0:9f:3f:08:65 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10731 flower src_mac 02:36:d3:54:da:92 dst_mac 02:a1:af:40:14:fd src_ip 47.240.190.91 dst_ip 66.149.45.229 ip_proto tcp src_port 1216 dst_port 63030 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10732 flower src_mac 02:e7:33:39:39:bc dst_mac 02:6e:a3:f9:c6:65 vlan_id 2076 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10733 flower src_mac 02:cb:d7:32:0f:3d dst_mac 02:87:ed:05:82:9f action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10734 flower src_mac 02:d4:fe:8d:9e:de dst_mac 02:49:88:b3:bb:d9 action trap && tc filter add dev swp1 ingress protocol ip pref 10735 flower src_mac 02:6c:ed:10:6a:76 dst_mac 02:3a:00:08:77:aa src_ip 17.227.161.178 dst_ip 58.41.222.153 ip_proto udp src_port 39971 dst_port 11993 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10736 flower src_mac 02:92:84:b4:c3:11 dst_mac 02:58:3e:74:c5:0b action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10737 flower src_mac 02:b1:a4:57:14:a4 dst_mac 02:9c:1c:2b:0c:38 src_ip 72.143.182.225 dst_ip 84.180.113.8 ip_proto icmp code 167 type 14 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10738 flower src_mac 02:48:fa:02:53:ac dst_mac 02:2b:41:4d:72:bd src_ip 81.97.63.183 dst_ip 13.81.244.27 ip_proto tcp src_port 25942 dst_port 24296 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10739 flower src_mac 02:f8:43:2b:64:20 dst_mac 02:1e:8e:2f:4d:9f vlan_id 1981 vlan_ethtype ip src_ip 72.149.32.202 dst_ip 58.23.237.82 ip_proto udp src_port 44581 dst_port 18234 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10740 flower src_mac 02:15:b4:44:e0:fd dst_mac 02:df:dc:d2:24:83 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10741 flower src_mac 02:be:e9:84:8b:32 dst_mac 02:a0:82:05:76:ab action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10742 flower src_mac 02:8e:58:9d:3c:7c dst_mac 02:80:e1:e9:0c:da action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10743 flower src_mac 02:a5:a2:97:b5:b9 dst_mac 02:22:09:b3:2f:22 src_ip 104.146.64.124 dst_ip 66.21.177.194 ip_proto icmp code 199 type 4 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10744 flower src_mac 02:65:67:ce:22:a6 dst_mac 02:3f:f7:5c:80:09 vlan_id 3227 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10745 flower src_mac 02:18:d2:96:32:3e dst_mac 02:fd:39:3e:d6:7d action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10746 flower src_mac 02:da:70:2b:16:4c dst_mac 02:ae:51:1a:8e:0e vlan_id 685 vlan_ethtype ipv4 src_ip 51.94.150.182 dst_ip 125.18.143.206 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10747 flower src_mac 02:56:ab:20:bb:61 dst_mac 02:5b:2e:f7:1f:3c action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10748 flower src_mac 02:25:af:be:ff:42 dst_mac 02:fb:98:74:5a:d3 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10749 flower src_mac 02:37:c7:62:39:d9 dst_mac 02:8e:54:28:d3:13 vlan_id 4094 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10750 flower src_mac 02:5d:ba:57:46:17 dst_mac 02:1c:f5:85:56:2f src_ip 82.53.89.1 dst_ip 52.253.31.98 ip_proto icmp code 246 type 15 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10751 flower src_mac 02:61:5a:3d:c5:f7 dst_mac 02:b0:6c:e8:06:71 vlan_id 733 vlan_ethtype 0x0800 src_ip 99.77.90.146 dst_ip 90.205.70.88 ip_proto udp src_port 62378 dst_port 64735 action pass && tc filter add dev swp1 ingress protocol ip pref 10752 flower src_mac 02:57:e7:75:e4:41 dst_mac 02:2c:aa:d1:07:d8 src_ip 69.150.26.168 dst_ip 15.21.184.122 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10753 flower src_mac 02:75:aa:6e:09:7b dst_mac 02:0e:25:16:bd:23 vlan_id 2593 vlan_ethtype ip src_ip 45.220.246.15 dst_ip 121.128.186.171 ip_proto tcp src_port 49408 dst_port 32377 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10754 flower src_mac 02:31:4e:48:30:8c dst_mac 02:76:69:46:ef:5d vlan_id 2448 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10755 flower src_mac 02:89:90:ed:b0:76 dst_mac 02:06:77:b7:89:09 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10756 flower src_mac 02:20:b1:fa:a5:72 dst_mac 02:fb:4e:30:a0:6a src_ip 105.81.48.43 dst_ip 115.35.116.97 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10757 flower src_mac 02:9d:68:9b:e9:38 dst_mac 02:7a:95:10:09:8d vlan_id 1665 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10758 flower src_mac 02:44:a0:81:fd:e9 dst_mac 02:20:3c:9f:b7:24 src_ip 69.39.53.24 dst_ip 124.94.122.177 ip_proto tcp src_port 62807 dst_port 65355 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10759 flower src_mac 02:f6:fe:bf:b4:a9 dst_mac 02:fb:74:f7:49:46 vlan_id 2410 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10760 flower src_mac 02:2c:55:a5:ec:f6 dst_mac 02:ad:8b:0b:b3:fc action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10761 flower src_mac 02:5b:81:5c:e3:3e dst_mac 02:30:df:3c:c5:ea vlan_id 148 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10762 flower src_mac 02:b0:60:13:e1:ab dst_mac 02:2c:01:79:88:ed src_ip 26.43.166.227 dst_ip 44.35.240.181 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10763 flower src_mac 02:e2:4f:69:35:56 dst_mac 02:a9:21:78:3a:25 vlan_id 2845 vlan_ethtype ip src_ip 100.93.0.156 dst_ip 11.30.91.147 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10764 flower src_mac 02:3f:cc:e9:1c:e9 dst_mac 02:62:47:cf:17:71 vlan_id 2117 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10765 flower src_mac 02:b3:69:d6:85:ee dst_mac 02:0b:d4:74:3a:e8 vlan_id 3250 vlan_ethtype ipv4 src_ip 40.62.120.179 dst_ip 55.144.7.247 ip_proto udp src_port 37362 dst_port 43670 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10766 flower src_mac 02:96:ef:48:04:66 dst_mac 02:c6:e8:6e:4e:91 src_ip 39.69.46.193 dst_ip 83.14.3.15 ip_proto icmp code 213 type 3 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10767 flower src_mac 02:86:ea:19:81:29 dst_mac 02:05:c7:05:72:33 vlan_id 2389 vlan_ethtype 0x0800 src_ip 97.84.16.240 dst_ip 125.234.96.102 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10768 flower src_mac 02:2a:2b:cf:f9:f9 dst_mac 02:44:4d:e9:2f:b8 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10769 flower src_mac 02:e6:b6:d4:42:78 dst_mac 02:4a:0b:ce:df:c5 vlan_id 3840 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10770 flower src_mac 02:61:5e:77:f0:17 dst_mac 02:30:d3:65:df:87 vlan_id 2066 vlan_ethtype ipv4 src_ip 58.3.94.88 dst_ip 67.194.135.81 ip_proto udp src_port 58552 dst_port 13949 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10771 flower src_mac 02:5d:73:ed:76:84 dst_mac 02:b2:59:3a:6b:7f action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10772 flower src_mac 02:81:a0:db:65:68 dst_mac 02:d6:67:14:78:16 vlan_id 3191 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10773 flower src_mac 02:89:d0:8d:82:ab dst_mac 02:62:1b:f1:04:fd src_ip 15.61.234.79 dst_ip 111.161.29.54 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10774 flower src_mac 02:22:c1:ed:22:94 dst_mac 02:46:bf:5d:74:b2 src_ip 12.241.151.51 dst_ip 68.42.123.81 ip_proto icmp code 242 type 17 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10775 flower src_mac 02:5a:bc:17:90:6d dst_mac 02:74:9c:ec:ee:76 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10776 flower src_mac 02:21:db:b2:ee:db dst_mac 02:10:cb:a7:c9:14 src_ip 49.59.240.107 dst_ip 45.36.236.124 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10777 flower src_mac 02:3f:eb:99:d4:70 dst_mac 02:69:4f:54:4c:cd src_ip 73.163.125.74 dst_ip 54.237.140.76 ip_proto udp src_port 42466 dst_port 4018 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10778 flower src_mac 02:f3:98:91:f6:2c dst_mac 02:fa:25:32:0d:c5 vlan_id 352 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10779 flower src_mac 02:2f:77:96:03:ef dst_mac 02:2a:57:78:40:82 vlan_id 646 vlan_ethtype 0x0800 src_ip 92.205.150.171 dst_ip 101.33.61.184 ip_proto udp src_port 10834 dst_port 25310 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10780 flower src_mac 02:47:2e:8c:d6:a3 dst_mac 02:11:8e:6a:bf:4d vlan_id 845 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10781 flower src_mac 02:92:70:b4:9b:cf dst_mac 02:ef:50:0b:e6:83 vlan_id 249 vlan_ethtype ip src_ip 110.220.103.178 dst_ip 48.82.201.143 ip_proto udp src_port 47992 dst_port 14729 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10782 flower src_mac 02:4f:26:28:2c:a4 dst_mac 02:78:48:4f:3b:1d action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10783 flower src_mac 02:2b:50:f5:3c:b9 dst_mac 02:12:31:ac:d3:7c vlan_id 3327 vlan_ethtype 0x0800 src_ip 67.214.207.173 dst_ip 53.68.34.183 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10784 flower src_mac 02:26:c3:9c:18:e0 dst_mac 02:c5:59:5c:be:5c vlan_id 3859 vlan_ethtype ipv4 src_ip 117.0.214.139 dst_ip 40.250.17.250 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10785 flower src_mac 02:f6:ea:7e:9a:1c dst_mac 02:4c:82:d6:90:b1 action pass && tc filter add dev swp1 ingress protocol ip pref 10786 flower src_mac 02:7c:c6:12:da:7f dst_mac 02:0f:93:f5:bc:31 src_ip 125.32.8.167 dst_ip 29.48.12.53 ip_proto icmp code 136 type 5 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10787 flower src_mac 02:91:a6:d5:2e:dd dst_mac 02:1f:f9:dc:7e:08 vlan_id 1254 vlan_ethtype 0x0800 src_ip 42.68.185.109 dst_ip 12.204.249.50 ip_proto tcp src_port 33819 dst_port 38876 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10788 flower src_mac 02:f3:da:98:ac:88 dst_mac 02:79:51:f3:2e:69 vlan_id 1868 vlan_ethtype ipv4 src_ip 42.200.220.118 dst_ip 101.222.139.156 ip_proto udp src_port 5285 dst_port 41383 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10789 flower src_mac 02:5b:08:ff:d5:2a dst_mac 02:14:71:58:7a:7f vlan_id 3165 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10790 flower src_mac 02:8c:2c:cf:57:cb dst_mac 02:a1:43:b5:07:83 vlan_id 1554 vlan_ethtype ip src_ip 76.168.107.138 dst_ip 66.234.151.153 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10791 flower src_mac 02:74:d4:ef:5f:f8 dst_mac 02:aa:10:dd:74:6d src_ip 23.180.167.137 dst_ip 55.71.215.114 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10792 flower src_mac 02:2c:7d:72:f7:e3 dst_mac 02:f1:92:d1:d1:8b vlan_id 1087 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10793 flower src_mac 02:cb:46:57:5f:b0 dst_mac 02:6f:ed:9b:79:2f action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10794 flower src_mac 02:d5:1a:e7:61:73 dst_mac 02:9f:f7:c4:95:85 vlan_id 1400 vlan_ethtype 0x0800 src_ip 54.250.83.30 dst_ip 114.206.245.194 ip_proto udp src_port 2977 dst_port 6902 action pass && tc filter add dev swp1 ingress protocol ip pref 10795 flower src_mac 02:7d:d5:81:96:15 dst_mac 02:93:c3:3e:81:e0 src_ip 79.133.120.188 dst_ip 72.205.154.74 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10796 flower src_mac 02:9d:0b:50:5d:2a dst_mac 02:d2:15:7f:51:9d vlan_id 3481 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10797 flower src_mac 02:6d:93:b2:99:41 dst_mac 02:76:57:ec:ac:7f vlan_id 2111 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ip pref 10798 flower src_mac 02:78:da:af:6b:7d dst_mac 02:6d:59:00:75:d4 src_ip 81.143.78.8 dst_ip 19.107.118.146 ip_proto icmp code 112 type 11 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10799 flower src_mac 02:f9:1c:cf:f3:b6 dst_mac 02:43:15:a3:1c:6a src_ip 62.159.58.173 dst_ip 14.175.63.22 action drop INFO asyncssh:logging.py:92 [conn=24, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q pref 10800 flower src_mac 02:5f:f2:28:2f:40 dst_mac 02:08:f9:56:eb:43 vlan_id 2104 vlan_ethtype ip src_ip 47.54.21.57 dst_ip 47.92.99.106 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10801 flower src_mac 02:c5:57:73:52:da dst_mac 02:20:02:73:fa:a2 action trap && tc filter add dev swp1 ingress protocol ip pref 10802 flower src_mac 02:c2:75:e3:c2:17 dst_mac 02:56:e6:8c:ed:59 src_ip 76.147.135.137 dst_ip 81.178.110.158 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10803 flower src_mac 02:e4:58:8f:69:b8 dst_mac 02:74:3c:d7:99:5f action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10804 flower src_mac 02:b1:74:5c:24:97 dst_mac 02:4c:0a:55:ab:5f vlan_id 1924 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10805 flower src_mac 02:a1:a3:16:50:a7 dst_mac 02:c7:cb:eb:b2:7a action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10806 flower src_mac 02:ff:1a:96:ff:98 dst_mac 02:08:ac:8e:d5:77 vlan_id 3106 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10807 flower src_mac 02:3e:e7:18:a7:25 dst_mac 02:54:c8:b0:f8:93 src_ip 97.221.4.5 dst_ip 120.187.47.37 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10808 flower src_mac 02:9e:80:f8:82:d9 dst_mac 02:67:89:49:29:be vlan_id 2682 vlan_ethtype ip src_ip 94.77.189.71 dst_ip 105.137.217.202 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10809 flower src_mac 02:46:4b:a1:5c:02 dst_mac 02:bc:30:92:df:77 src_ip 97.44.213.232 dst_ip 126.160.60.29 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10810 flower src_mac 02:f0:b9:92:77:f4 dst_mac 02:53:87:d0:93:8e action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10811 flower src_mac 02:c5:1a:f9:b1:be dst_mac 02:81:70:a0:a6:1c vlan_id 3081 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10812 flower src_mac 02:f0:f8:c1:fe:91 dst_mac 02:9e:9f:b0:63:10 src_ip 104.59.160.52 dst_ip 118.55.235.171 ip_proto tcp src_port 38218 dst_port 15566 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10813 flower src_mac 02:8f:58:8e:06:ff dst_mac 02:64:32:08:57:71 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10814 flower src_mac 02:29:b1:38:70:ff dst_mac 02:82:f3:ae:58:7d vlan_id 1652 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10815 flower src_mac 02:82:e9:bc:58:f4 dst_mac 02:2d:a5:2c:82:d8 vlan_id 979 vlan_ethtype ipv4 src_ip 38.228.167.171 dst_ip 12.220.97.12 ip_proto tcp src_port 20612 dst_port 60113 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10816 flower src_mac 02:ab:b2:2a:0f:37 dst_mac 02:03:95:10:9b:59 vlan_id 2101 vlan_ethtype ipv4 src_ip 115.70.93.91 dst_ip 37.186.87.99 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10817 flower src_mac 02:74:6a:78:87:55 dst_mac 02:b8:fd:d9:bb:17 vlan_id 1406 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10818 flower src_mac 02:e0:1c:ba:8a:9d dst_mac 02:f8:db:b4:ab:e5 vlan_id 2738 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10819 flower src_mac 02:df:b2:27:5c:c3 dst_mac 02:d2:e2:3f:59:5d vlan_id 3370 vlan_ethtype ip src_ip 13.103.94.190 dst_ip 38.109.230.156 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10820 flower src_mac 02:3f:a3:69:3d:7a dst_mac 02:f9:38:a5:45:06 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10821 flower src_mac 02:6e:77:c6:e2:38 dst_mac 02:5e:5a:1a:3f:8f vlan_id 1291 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10822 flower src_mac 02:2d:b0:88:73:e1 dst_mac 02:fd:f9:25:7e:4d vlan_id 447 vlan_ethtype ip src_ip 53.68.176.146 dst_ip 111.138.116.185 ip_proto udp src_port 60717 dst_port 38744 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10823 flower src_mac 02:96:22:16:9e:6c dst_mac 02:89:e1:94:a7:ea action pass && tc filter add dev swp1 ingress protocol ip pref 10824 flower src_mac 02:a6:d4:bf:96:4d dst_mac 02:36:a8:e6:0a:bc src_ip 79.138.174.215 dst_ip 14.188.110.47 ip_proto udp src_port 62857 dst_port 43870 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10825 flower src_mac 02:f9:8a:b6:24:0e dst_mac 02:d9:3f:05:43:ca src_ip 34.178.211.229 dst_ip 58.63.246.199 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10826 flower src_mac 02:ae:cf:0e:66:56 dst_mac 02:91:14:6b:db:ec vlan_id 2453 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10827 flower src_mac 02:7d:e4:13:98:44 dst_mac 02:d0:6a:9d:1e:5f vlan_id 3177 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ip pref 10828 flower src_mac 02:ff:d0:49:94:76 dst_mac 02:7d:a8:16:b1:01 src_ip 81.142.119.239 dst_ip 80.20.48.164 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10829 flower src_mac 02:c5:3e:42:02:7d dst_mac 02:c7:72:56:6a:52 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10830 flower src_mac 02:49:63:f6:21:8e dst_mac 02:34:e0:7d:81:0d vlan_id 1931 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ip pref 10831 flower src_mac 02:e5:85:48:08:da dst_mac 02:3a:84:1b:68:c5 src_ip 84.107.101.243 dst_ip 33.195.122.59 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10832 flower src_mac 02:c4:a6:35:7b:1b dst_mac 02:c0:08:78:7e:27 vlan_id 2304 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10833 flower src_mac 02:39:6c:a0:28:df dst_mac 02:5e:64:a2:3c:21 vlan_id 618 vlan_ethtype 0x0800 src_ip 43.86.46.5 dst_ip 16.144.30.23 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10834 flower src_mac 02:7f:0b:dc:ed:89 dst_mac 02:e6:6f:8c:c5:30 src_ip 51.250.128.113 dst_ip 90.31.77.1 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10835 flower src_mac 02:24:e5:06:38:e7 dst_mac 02:60:c5:f9:dd:b9 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10836 flower src_mac 02:15:d6:bd:a2:5a dst_mac 02:20:c4:8f:0d:ee src_ip 81.9.21.242 dst_ip 109.31.143.226 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10837 flower src_mac 02:5b:0d:1f:fa:c1 dst_mac 02:b3:b4:d1:0a:a2 vlan_id 3470 vlan_ethtype ipv4 src_ip 35.41.12.178 dst_ip 110.152.178.176 ip_proto tcp src_port 8541 dst_port 50460 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10838 flower src_mac 02:de:84:46:4e:4d dst_mac 02:a8:00:3c:bb:8b vlan_id 1608 vlan_ethtype 0x0800 src_ip 77.158.116.234 dst_ip 68.165.80.138 ip_proto udp src_port 45496 dst_port 32856 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10839 flower src_mac 02:b0:df:c8:1a:ae dst_mac 02:e0:ce:fe:86:5b vlan_id 1788 vlan_ethtype ip src_ip 27.117.187.162 dst_ip 90.116.111.130 ip_proto tcp src_port 57347 dst_port 37399 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10840 flower src_mac 02:ca:47:c3:3e:a9 dst_mac 02:b1:30:5d:cb:fe action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10841 flower src_mac 02:54:f1:0a:72:e0 dst_mac 02:5f:66:82:c3:c2 src_ip 97.234.154.247 dst_ip 19.213.160.8 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10842 flower src_mac 02:9f:42:66:11:5d dst_mac 02:32:f1:dd:fd:c9 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10843 flower src_mac 02:ca:4f:f2:a6:7b dst_mac 02:fe:9c:4d:e2:7b src_ip 64.176.130.146 dst_ip 41.144.212.183 ip_proto icmp code 61 type 0 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10844 flower src_mac 02:f1:0f:36:a5:19 dst_mac 02:a6:cd:05:7b:78 vlan_id 3776 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10845 flower src_mac 02:ef:d1:bc:67:24 dst_mac 02:2d:a3:72:0b:67 vlan_id 3508 vlan_ethtype ipv4 src_ip 18.153.77.164 dst_ip 124.132.162.107 ip_proto tcp src_port 61907 dst_port 13453 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10846 flower src_mac 02:5e:22:ba:97:d4 dst_mac 02:3b:2d:d1:86:bb action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10847 flower src_mac 02:94:56:9d:a5:4f dst_mac 02:d5:ce:5c:7e:a6 vlan_id 1356 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10848 flower src_mac 02:a4:92:d3:21:76 dst_mac 02:00:04:79:91:ab action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10849 flower src_mac 02:64:04:4c:d2:18 dst_mac 02:67:63:77:66:36 action trap && tc filter add dev swp1 ingress protocol ip pref 10850 flower src_mac 02:b1:38:1d:5b:2b dst_mac 02:45:c3:84:16:bc src_ip 108.187.28.186 dst_ip 100.220.223.240 ip_proto udp src_port 30103 dst_port 53241 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10851 flower src_mac 02:04:6a:4d:f9:57 dst_mac 02:1c:ca:e6:75:fe action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10852 flower src_mac 02:ee:04:e1:3c:69 dst_mac 02:45:da:bb:de:6a action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10853 flower src_mac 02:6b:15:16:64:ed dst_mac 02:46:94:d9:d7:5f vlan_id 874 vlan_ethtype ipv4 src_ip 90.189.224.229 dst_ip 44.58.48.178 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10854 flower src_mac 02:45:8a:04:b7:47 dst_mac 02:d2:5d:ad:c7:0e vlan_id 3642 vlan_ethtype 0x0800 src_ip 63.212.72.110 dst_ip 34.54.179.110 ip_proto tcp src_port 61040 dst_port 55831 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10855 flower src_mac 02:d4:bd:80:cc:d8 dst_mac 02:47:99:3d:81:bd vlan_id 1262 vlan_ethtype ip src_ip 89.250.142.164 dst_ip 66.134.255.166 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10856 flower src_mac 02:db:b6:e0:df:1b dst_mac 02:e1:72:56:9f:4c action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10857 flower src_mac 02:8a:9d:fc:69:17 dst_mac 02:64:1f:20:b7:35 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10858 flower src_mac 02:81:16:32:77:1c dst_mac 02:cc:0c:83:07:b1 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10859 flower src_mac 02:c4:6d:82:93:d1 dst_mac 02:4b:d5:de:ae:4a vlan_id 1671 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10860 flower src_mac 02:51:5c:6d:ee:e8 dst_mac 02:e4:8e:4a:35:6a vlan_id 3416 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10861 flower src_mac 02:64:56:23:22:93 dst_mac 02:66:84:d1:ce:06 vlan_id 962 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10862 flower src_mac 02:d2:67:1a:34:85 dst_mac 02:d2:e7:53:34:14 vlan_id 270 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10863 flower src_mac 02:d2:ff:a3:40:37 dst_mac 02:67:95:8e:40:aa vlan_id 125 vlan_ethtype ip src_ip 32.96.202.4 dst_ip 95.60.38.244 ip_proto tcp src_port 33983 dst_port 51548 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10864 flower src_mac 02:e1:71:69:41:e1 dst_mac 02:b4:77:f6:e1:13 vlan_id 3357 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10865 flower src_mac 02:38:fa:be:9e:3c dst_mac 02:50:d2:00:57:40 vlan_id 2370 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10866 flower src_mac 02:36:80:f7:22:5d dst_mac 02:d7:4c:5f:b8:5a action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10867 flower src_mac 02:e9:64:7a:f0:05 dst_mac 02:37:17:d0:8e:5a action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10868 flower src_mac 02:b7:2a:35:cd:52 dst_mac 02:f0:80:61:35:06 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10869 flower src_mac 02:02:42:5a:1d:d7 dst_mac 02:5e:8d:6f:74:ae src_ip 12.171.177.24 dst_ip 101.136.111.248 ip_proto icmp code 54 type 18 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10870 flower src_mac 02:8e:c7:23:c8:b4 dst_mac 02:dd:cc:78:83:ad vlan_id 3984 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10871 flower src_mac 02:a7:1d:38:f6:53 dst_mac 02:03:77:12:da:99 src_ip 78.208.82.240 dst_ip 124.86.169.113 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10872 flower src_mac 02:c1:5e:49:91:31 dst_mac 02:a7:06:d1:62:be action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10873 flower src_mac 02:9e:52:a8:fc:14 dst_mac 02:4d:5d:be:de:4c src_ip 18.69.46.44 dst_ip 106.173.117.247 ip_proto udp src_port 64703 dst_port 21796 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10874 flower src_mac 02:88:3e:e0:39:5b dst_mac 02:53:b0:e8:fa:d0 vlan_id 146 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10875 flower src_mac 02:17:da:92:67:8c dst_mac 02:a5:50:74:6b:7e action drop && tc filter add dev swp1 ingress protocol ip pref 10876 flower src_mac 02:a1:c6:87:a5:ed dst_mac 02:04:90:35:53:77 src_ip 38.122.212.155 dst_ip 88.146.222.124 ip_proto icmp code 211 type 0 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10877 flower src_mac 02:93:77:3e:47:62 dst_mac 02:ce:47:24:be:61 vlan_id 3694 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10878 flower src_mac 02:35:5f:bb:8e:ed dst_mac 02:d3:be:f6:04:50 vlan_id 1202 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10879 flower src_mac 02:2c:a7:36:fb:2d dst_mac 02:88:ed:aa:eb:06 vlan_id 1458 vlan_ethtype ip src_ip 29.128.67.109 dst_ip 104.120.206.232 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10880 flower src_mac 02:7a:15:cb:00:bb dst_mac 02:6c:41:c7:76:ae vlan_id 2032 vlan_ethtype ipv4 src_ip 93.225.235.128 dst_ip 109.212.11.113 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10881 flower src_mac 02:89:48:31:19:97 dst_mac 02:03:29:c5:23:f8 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10882 flower src_mac 02:69:25:1b:02:ae dst_mac 02:4a:61:57:06:89 src_ip 72.147.184.17 dst_ip 85.145.60.166 ip_proto tcp src_port 56660 dst_port 55707 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10883 flower src_mac 02:ac:af:08:b3:cd dst_mac 02:54:09:c3:c1:51 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10884 flower src_mac 02:9f:1f:30:ef:70 dst_mac 02:1e:40:88:bb:e2 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10885 flower src_mac 02:51:dd:4b:02:66 dst_mac 02:7f:db:ae:83:57 vlan_id 3844 vlan_ethtype 0x0800 src_ip 89.112.245.3 dst_ip 48.106.184.61 action pass && tc filter add dev swp1 ingress protocol ip pref 10886 flower src_mac 02:f1:cf:d2:35:75 dst_mac 02:8d:25:bb:0e:4d src_ip 14.163.192.188 dst_ip 111.40.181.206 ip_proto tcp src_port 49431 dst_port 27899 action pass && tc filter add dev swp1 ingress protocol ip pref 10887 flower src_mac 02:2e:83:5e:40:56 dst_mac 02:29:e7:a0:ce:07 src_ip 12.207.207.130 dst_ip 47.85.47.13 ip_proto tcp src_port 52632 dst_port 33778 action pass && tc filter add dev swp1 ingress protocol ip pref 10888 flower src_mac 02:80:90:aa:7c:fa dst_mac 02:7a:bf:38:2a:6e src_ip 63.228.82.167 dst_ip 28.62.220.190 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10889 flower src_mac 02:0d:fa:b4:50:d7 dst_mac 02:c6:03:b3:7e:15 src_ip 38.14.9.91 dst_ip 107.199.180.201 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10890 flower src_mac 02:7e:f2:cb:b1:47 dst_mac 02:90:b5:ad:39:3d src_ip 11.165.181.49 dst_ip 22.29.193.131 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10891 flower src_mac 02:77:b3:fc:fa:04 dst_mac 02:dd:2a:a0:20:9b action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10892 flower src_mac 02:7b:3e:f7:85:e0 dst_mac 02:c9:15:f3:de:e3 vlan_id 2734 vlan_ethtype ip src_ip 117.137.139.160 dst_ip 20.58.6.75 ip_proto udp src_port 30981 dst_port 6789 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10893 flower src_mac 02:3e:2e:61:f0:ff dst_mac 02:f4:7e:8f:15:06 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10894 flower src_mac 02:e2:59:e9:f0:d2 dst_mac 02:b3:10:83:f9:16 src_ip 34.82.79.236 dst_ip 49.89.6.240 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10895 flower src_mac 02:f6:74:8d:42:ea dst_mac 02:4b:dc:5e:d6:ee action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10896 flower src_mac 02:a4:6e:d1:b8:8e dst_mac 02:82:6f:91:cf:fc action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10897 flower src_mac 02:2b:c2:6f:bb:48 dst_mac 02:ac:a5:db:f4:4a src_ip 40.230.35.161 dst_ip 68.250.31.161 ip_proto tcp src_port 10005 dst_port 42549 action drop && tc filter add dev swp1 ingress protocol ip pref 10898 flower src_mac 02:c7:4e:81:42:78 dst_mac 02:d5:e0:03:c6:63 src_ip 118.31.86.55 dst_ip 124.185.38.145 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10899 flower src_mac 02:55:05:0a:67:16 dst_mac 02:fa:5b:19:e9:1a src_ip 87.150.189.110 dst_ip 90.163.0.238 ip_proto tcp src_port 45169 dst_port 36039 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10900 flower src_mac 02:c3:4c:8d:25:fb dst_mac 02:15:d4:f6:8c:b3 vlan_id 3928 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10901 flower src_mac 02:8f:5d:61:1e:66 dst_mac 02:85:94:c4:d7:1c action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10902 flower src_mac 02:e7:d3:07:bd:bb dst_mac 02:61:c6:a1:dc:02 src_ip 122.217.154.181 dst_ip 102.247.251.223 ip_proto udp src_port 53185 dst_port 2887 action drop && tc filter add dev swp1 ingress protocol ip pref 10903 flower src_mac 02:2d:f2:3a:cb:66 dst_mac 02:ad:e4:fd:a7:94 src_ip 12.211.123.221 dst_ip 115.154.169.190 ip_proto icmp code 143 type 12 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10904 flower src_mac 02:96:a8:e6:35:aa dst_mac 02:68:38:af:75:44 vlan_id 3262 vlan_ethtype ipv4 src_ip 24.141.243.28 dst_ip 72.58.219.134 ip_proto tcp src_port 49744 dst_port 20331 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10905 flower src_mac 02:15:ff:df:b8:47 dst_mac 02:4e:d1:29:b7:59 vlan_id 1473 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10906 flower src_mac 02:89:02:d5:75:ba dst_mac 02:db:84:4e:c7:1d vlan_id 1280 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10907 flower src_mac 02:aa:8c:08:f8:8d dst_mac 02:06:8b:4a:e8:f6 vlan_id 340 vlan_ethtype ipv4 src_ip 126.177.213.118 dst_ip 56.201.189.140 ip_proto udp src_port 8009 dst_port 51773 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10908 flower src_mac 02:61:ba:db:55:44 dst_mac 02:3a:f5:fc:64:f3 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10909 flower src_mac 02:a3:1f:f6:37:5c dst_mac 02:6b:d5:95:ad:0e vlan_id 3049 vlan_ethtype ipv4 src_ip 50.227.171.107 dst_ip 62.204.50.2 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10910 flower src_mac 02:e7:ea:d8:89:02 dst_mac 02:e4:e9:14:8b:09 vlan_id 774 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10911 flower src_mac 02:18:df:57:07:cf dst_mac 02:5a:9e:19:31:b0 vlan_id 1377 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10912 flower src_mac 02:af:9b:75:8f:70 dst_mac 02:0c:1e:ec:58:ba vlan_id 2907 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10913 flower src_mac 02:e0:b4:cd:04:df dst_mac 02:7d:01:d6:68:e4 vlan_id 3211 vlan_ethtype ipv4 src_ip 50.203.192.40 dst_ip 17.19.188.16 ip_proto udp src_port 37168 dst_port 31819 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10914 flower src_mac 02:a5:41:28:78:ea dst_mac 02:ff:59:d8:51:2e src_ip 69.125.119.198 dst_ip 48.32.140.219 action pass && tc filter add dev swp1 ingress protocol ip pref 10915 flower src_mac 02:fe:7b:7d:05:f0 dst_mac 02:b1:2e:33:6e:42 src_ip 114.60.162.86 dst_ip 63.31.33.228 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10916 flower src_mac 02:4d:46:1d:51:3e dst_mac 02:ec:cd:3e:07:85 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10917 flower src_mac 02:67:53:3c:66:22 dst_mac 02:47:37:cf:0f:43 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10918 flower src_mac 02:e8:e9:52:e7:63 dst_mac 02:9d:74:cb:ef:17 vlan_id 399 vlan_ethtype ip src_ip 49.197.115.209 dst_ip 13.88.107.83 ip_proto tcp src_port 7828 dst_port 18782 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10919 flower src_mac 02:c3:ca:2c:16:60 dst_mac 02:01:67:f4:10:2e vlan_id 890 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10920 flower src_mac 02:99:e6:44:46:d3 dst_mac 02:de:1f:69:47:bb action drop && tc filter add dev swp1 ingress protocol ip pref 10921 flower src_mac 02:03:5b:a1:3b:94 dst_mac 02:ea:d6:91:02:da src_ip 106.167.96.122 dst_ip 40.176.115.140 ip_proto udp src_port 24352 dst_port 9567 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10922 flower src_mac 02:78:cd:22:5a:5a dst_mac 02:9f:5a:eb:0b:35 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10923 flower src_mac 02:d6:5c:5d:08:ec dst_mac 02:ac:e1:ec:9a:ec action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10924 flower src_mac 02:9f:fa:1d:e3:1f dst_mac 02:8f:a6:38:d2:3c action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10925 flower src_mac 02:ae:1b:3c:c0:96 dst_mac 02:be:1f:e7:22:49 vlan_id 2988 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10926 flower src_mac 02:00:b9:57:bb:e2 dst_mac 02:a7:7b:46:1a:f3 vlan_id 2552 vlan_ethtype 0x0800 src_ip 88.37.114.103 dst_ip 82.230.48.4 action drop && tc filter add dev swp1 ingress protocol ip pref 10927 flower src_mac 02:97:55:57:55:ec dst_mac 02:51:1c:34:3c:2b src_ip 61.241.156.225 dst_ip 108.249.3.1 ip_proto udp src_port 60161 dst_port 44843 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10928 flower src_mac 02:05:65:cb:23:d8 dst_mac 02:e7:1b:e5:fd:05 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10929 flower src_mac 02:34:41:15:20:11 dst_mac 02:70:a9:ac:51:c4 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10930 flower src_mac 02:a3:f5:ac:e4:1b dst_mac 02:dd:c4:b2:34:a7 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10931 flower src_mac 02:e4:b3:c9:b2:e1 dst_mac 02:32:2d:87:2d:6a vlan_id 2333 vlan_ethtype ip src_ip 15.74.116.9 dst_ip 20.217.49.162 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10932 flower src_mac 02:81:01:dc:dd:6b dst_mac 02:1a:21:57:90:f7 vlan_id 355 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10933 flower src_mac 02:65:af:42:f2:f3 dst_mac 02:a3:4a:32:26:92 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10934 flower src_mac 02:a0:26:d9:8c:7e dst_mac 02:67:33:1a:57:d6 vlan_id 1086 vlan_ethtype ipv4 src_ip 18.91.234.96 dst_ip 57.229.182.37 ip_proto udp src_port 46233 dst_port 42401 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10935 flower src_mac 02:9d:4d:14:ba:74 dst_mac 02:e9:c3:b6:79:21 src_ip 122.26.196.211 dst_ip 88.66.250.124 ip_proto udp src_port 21405 dst_port 29460 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10936 flower src_mac 02:56:6d:fd:52:df dst_mac 02:44:87:11:88:65 vlan_id 661 vlan_ethtype ip src_ip 50.38.229.68 dst_ip 53.71.213.249 ip_proto tcp src_port 45927 dst_port 63555 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10937 flower src_mac 02:5a:e4:b1:6b:88 dst_mac 02:eb:7a:9b:b7:2d vlan_id 3839 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10938 flower src_mac 02:d2:58:85:1e:97 dst_mac 02:15:69:a4:8c:c2 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10939 flower src_mac 02:d3:cc:91:7c:53 dst_mac 02:b7:f9:ed:47:af vlan_id 929 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10940 flower src_mac 02:d7:80:c2:25:c0 dst_mac 02:64:f4:01:75:f3 vlan_id 1048 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10941 flower src_mac 02:25:8e:cd:ed:de dst_mac 02:8e:c2:ec:75:e9 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10942 flower src_mac 02:e1:29:78:ab:8d dst_mac 02:a0:28:0e:2d:6c vlan_id 659 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10943 flower src_mac 02:15:de:a3:bd:ee dst_mac 02:3a:ca:d5:28:03 src_ip 62.79.139.31 dst_ip 79.84.138.70 ip_proto udp src_port 62074 dst_port 12844 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10944 flower src_mac 02:02:3c:68:2d:cf dst_mac 02:2e:00:33:92:a1 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10945 flower src_mac 02:1b:dc:cd:37:ef dst_mac 02:81:1f:9e:de:c4 vlan_id 3727 vlan_ethtype ip src_ip 72.106.164.186 dst_ip 115.226.167.58 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10946 flower src_mac 02:51:a1:c9:af:72 dst_mac 02:fc:41:38:76:d0 src_ip 40.229.34.213 dst_ip 68.126.148.49 ip_proto tcp src_port 40657 dst_port 59781 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10947 flower src_mac 02:6e:58:c8:ac:b0 dst_mac 02:dd:77:f7:45:25 vlan_id 2573 vlan_ethtype ip src_ip 25.115.183.43 dst_ip 20.157.21.28 ip_proto udp src_port 21954 dst_port 12959 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10948 flower src_mac 02:cc:c8:af:53:21 dst_mac 02:fe:ed:f1:3c:b1 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10949 flower src_mac 02:35:03:be:e0:ce dst_mac 02:f8:69:a7:78:9b vlan_id 1662 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ip pref 10950 flower src_mac 02:2e:75:77:78:dd dst_mac 02:5f:36:27:ca:fe src_ip 111.14.109.130 dst_ip 55.18.111.241 ip_proto icmp code 164 type 18 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10951 flower src_mac 02:76:eb:ba:52:cf dst_mac 02:81:6e:5b:48:14 action drop && tc filter add dev swp1 ingress protocol ip pref 10952 flower src_mac 02:22:b5:14:1d:83 dst_mac 02:6f:29:28:d4:53 src_ip 61.175.43.28 dst_ip 54.20.190.147 ip_proto udp src_port 18641 dst_port 28204 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10953 flower src_mac 02:3b:e3:d5:23:ff dst_mac 02:64:7b:7c:1d:69 vlan_id 1953 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10954 flower src_mac 02:27:49:74:e3:b1 dst_mac 02:a4:3f:e2:d5:f8 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10955 flower src_mac 02:8d:d5:53:f5:37 dst_mac 02:e8:9c:b4:9e:a7 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10956 flower src_mac 02:70:48:79:33:79 dst_mac 02:b1:47:2b:31:59 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10957 flower src_mac 02:f4:63:a8:94:54 dst_mac 02:be:62:85:a5:e3 src_ip 59.154.76.66 dst_ip 29.91.37.19 ip_proto tcp src_port 26834 dst_port 21820 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10958 flower src_mac 02:60:68:e1:6d:c5 dst_mac 02:2e:66:a1:c8:91 vlan_id 3992 vlan_ethtype ip src_ip 36.246.10.110 dst_ip 56.87.213.158 ip_proto udp src_port 18437 dst_port 3522 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10959 flower src_mac 02:ef:df:48:9e:55 dst_mac 02:b1:a0:e2:12:30 src_ip 42.20.13.214 dst_ip 35.219.220.152 ip_proto udp src_port 45617 dst_port 18935 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10960 flower src_mac 02:2f:b7:2e:b2:b5 dst_mac 02:4a:48:92:b2:77 vlan_id 117 vlan_ethtype 0x0800 src_ip 102.58.179.230 dst_ip 27.117.248.176 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10961 flower src_mac 02:60:be:fe:60:44 dst_mac 02:37:5c:d4:da:0b vlan_id 1783 vlan_ethtype ip src_ip 119.40.63.238 dst_ip 96.51.112.142 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10962 flower src_mac 02:28:5b:34:6a:dc dst_mac 02:2a:73:64:22:d1 src_ip 107.16.104.67 dst_ip 112.62.192.167 ip_proto icmp code 4 type 12 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10963 flower src_mac 02:69:4a:a6:5d:5a dst_mac 02:31:13:a1:27:ce vlan_id 3211 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10964 flower src_mac 02:84:7b:29:af:c6 dst_mac 02:4b:3c:19:64:4e vlan_id 3301 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10965 flower src_mac 02:32:f3:ed:b0:89 dst_mac 02:cb:d9:5a:8e:2a vlan_id 29 vlan_ethtype ipv4 src_ip 33.198.168.159 dst_ip 46.227.127.244 ip_proto tcp src_port 50831 dst_port 19130 action drop && tc filter add dev swp1 ingress protocol ip pref 10966 flower src_mac 02:7e:c4:81:f7:e6 dst_mac 02:a5:e7:6c:e1:6b src_ip 121.111.64.151 dst_ip 80.224.91.38 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10967 flower src_mac 02:c7:d4:d7:3d:e0 dst_mac 02:fb:7f:31:4a:24 src_ip 86.103.2.132 dst_ip 69.252.192.43 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10968 flower src_mac 02:c7:4f:c4:ef:65 dst_mac 02:02:f0:1c:fc:04 vlan_id 2174 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10969 flower src_mac 02:86:be:18:30:37 dst_mac 02:9b:b3:1e:95:a9 vlan_id 22 vlan_ethtype ip src_ip 36.107.104.108 dst_ip 26.178.119.179 ip_proto udp src_port 18564 dst_port 3300 action pass && tc filter add dev swp1 ingress protocol ip pref 10970 flower src_mac 02:88:7f:64:52:a4 dst_mac 02:e3:7b:97:9a:35 src_ip 35.43.97.185 dst_ip 13.172.136.61 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10971 flower src_mac 02:44:45:c7:05:88 dst_mac 02:49:96:87:1a:b1 src_ip 42.63.64.103 dst_ip 58.223.160.204 ip_proto tcp src_port 37504 dst_port 43268 action pass && tc filter add dev swp1 ingress protocol ip pref 10972 flower src_mac 02:de:bb:77:ff:56 dst_mac 02:8a:c9:c0:f6:32 src_ip 34.227.40.231 dst_ip 21.94.81.170 ip_proto icmp code 95 type 13 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10973 flower src_mac 02:ec:94:f9:a7:12 dst_mac 02:6f:f8:0d:87:15 vlan_id 1938 vlan_ethtype ipv4 src_ip 118.82.159.135 dst_ip 91.252.195.221 ip_proto udp src_port 6092 dst_port 9374 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10974 flower src_mac 02:f5:f4:46:34:a8 dst_mac 02:65:ca:13:a4:ae src_ip 73.178.242.152 dst_ip 30.82.113.45 ip_proto udp src_port 8444 dst_port 700 action drop && tc filter add dev swp1 ingress protocol ip pref 10975 flower src_mac 02:52:7a:2c:92:8c dst_mac 02:bb:26:82:55:da src_ip 64.71.182.56 dst_ip 122.211.237.80 ip_proto tcp src_port 50273 dst_port 24480 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10976 flower src_mac 02:9d:ba:9a:80:eb dst_mac 02:3f:40:40:d9:7e src_ip 104.12.27.182 dst_ip 82.133.242.47 ip_proto icmp code 97 type 3 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10977 flower src_mac 02:1a:1e:fe:2f:81 dst_mac 02:60:73:bc:e0:f3 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10978 flower src_mac 02:a4:61:90:38:4c dst_mac 02:93:80:c9:94:20 vlan_id 2565 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10979 flower src_mac 02:34:b4:eb:0f:50 dst_mac 02:b2:6c:7a:3d:21 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10980 flower src_mac 02:83:04:33:72:62 dst_mac 02:50:1e:bf:78:23 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10981 flower src_mac 02:0b:d2:e7:c5:25 dst_mac 02:53:70:b5:cc:8a vlan_id 417 vlan_ethtype ipv4 src_ip 54.218.228.131 dst_ip 65.174.233.75 ip_proto udp src_port 47729 dst_port 14113 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10982 flower src_mac 02:8a:8f:6a:24:82 dst_mac 02:78:a5:d8:ee:4f action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10983 flower src_mac 02:7f:c0:0e:f5:b7 dst_mac 02:58:93:81:76:d3 vlan_id 419 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10984 flower src_mac 02:f3:f7:61:50:44 dst_mac 02:3a:7f:08:18:6d vlan_id 397 vlan_ethtype ipv4 src_ip 121.223.155.245 dst_ip 75.213.54.8 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10985 flower src_mac 02:2f:f6:6c:1b:7f dst_mac 02:f3:cb:77:f9:86 vlan_id 3352 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10986 flower src_mac 02:c4:b0:d1:9c:b9 dst_mac 02:65:cc:53:f6:75 vlan_id 3828 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10987 flower src_mac 02:2f:a6:85:54:b7 dst_mac 02:29:98:d6:e7:e8 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10988 flower src_mac 02:ad:e2:7c:c6:fb dst_mac 02:8f:91:b4:3e:00 vlan_id 2174 vlan_ethtype 0x0800 src_ip 80.231.39.236 dst_ip 43.83.63.92 ip_proto udp src_port 63920 dst_port 21395 action pass && tc filter add dev swp1 ingress protocol ip pref 10989 flower src_mac 02:a7:4d:37:55:ae dst_mac 02:fb:33:3a:68:3e src_ip 123.97.55.233 dst_ip 51.105.146.189 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10990 flower src_mac 02:de:14:0d:10:47 dst_mac 02:b1:fb:79:ac:e9 vlan_id 3709 vlan_ethtype 0x0800 src_ip 23.198.47.58 dst_ip 43.13.117.226 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10991 flower src_mac 02:46:b5:31:7f:74 dst_mac 02:eb:b0:0f:0e:a3 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10992 flower src_mac 02:56:ab:78:37:54 dst_mac 02:8e:db:ee:4d:f3 src_ip 44.163.130.205 dst_ip 85.29.43.108 ip_proto tcp src_port 37497 dst_port 44824 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10993 flower src_mac 02:57:f7:ac:2c:5b dst_mac 02:27:91:03:e8:6e vlan_id 1836 vlan_ethtype ip src_ip 18.70.133.193 dst_ip 15.155.17.187 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10994 flower src_mac 02:1a:7c:40:9f:b1 dst_mac 02:2e:98:2b:dc:61 vlan_id 181 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10995 flower src_mac 02:ff:48:4a:5a:91 dst_mac 02:29:95:7f:31:e9 vlan_id 108 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10996 flower src_mac 02:0c:35:7f:22:33 dst_mac 02:86:02:6f:7c:cd vlan_id 1919 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10997 flower src_mac 02:45:e7:ea:a8:f5 dst_mac 02:99:42:71:33:b8 vlan_id 274 vlan_ethtype 0x0800 src_ip 62.65.53.135 dst_ip 11.188.88.149 ip_proto tcp src_port 25191 dst_port 43359 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10998 flower src_mac 02:f2:13:a2:28:c4 dst_mac 02:fc:0b:24:90:c1 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10999 flower src_mac 02:1c:53:35:e9:51 dst_mac 02:3a:7f:3c:4f:83 vlan_id 3699 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11000 flower src_mac 02:9a:18:dd:4e:64 dst_mac 02:eb:cb:89:6a:25 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11001 flower src_mac 02:09:57:77:7f:73 dst_mac 02:37:33:5c:e8:6f action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11002 flower src_mac 02:91:6a:e9:bb:55 dst_mac 02:b3:75:e1:bf:75 vlan_id 1887 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11003 flower src_mac 02:61:c4:49:19:ba dst_mac 02:cd:a6:77:1a:ab vlan_id 967 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11004 flower src_mac 02:63:23:4d:44:36 dst_mac 02:20:1a:b5:74:55 vlan_id 3440 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11005 flower src_mac 02:84:56:aa:7b:ec dst_mac 02:79:41:50:29:d4 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11006 flower src_mac 02:10:d9:0c:67:98 dst_mac 02:46:fe:5c:c2:50 src_ip 117.157.176.108 dst_ip 12.4.228.141 ip_proto tcp src_port 40037 dst_port 37958 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11007 flower src_mac 02:85:73:55:59:05 dst_mac 02:2e:c1:32:34:3a vlan_id 2533 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11008 flower src_mac 02:18:46:73:3e:b5 dst_mac 02:bd:5f:17:f4:42 src_ip 62.99.231.142 dst_ip 38.19.218.5 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11009 flower src_mac 02:f5:cc:ef:8a:e3 dst_mac 02:a5:c5:88:2f:e0 vlan_id 95 vlan_ethtype ipv4 src_ip 54.14.60.5 dst_ip 23.111.95.7 ip_proto tcp src_port 55962 dst_port 57705 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11010 flower src_mac 02:d3:4f:fc:96:8d dst_mac 02:8f:29:29:d2:fe vlan_id 2266 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11011 flower src_mac 02:fa:86:19:e2:8c dst_mac 02:ff:89:b5:18:8a src_ip 19.48.253.231 dst_ip 44.242.160.105 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11012 flower src_mac 02:30:34:e8:e1:ff dst_mac 02:1e:67:79:dc:bf vlan_id 2898 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11013 flower src_mac 02:c0:a4:c9:fe:c3 dst_mac 02:1c:22:78:3e:79 src_ip 90.212.15.233 dst_ip 89.25.218.223 ip_proto icmp code 200 type 15 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11014 flower src_mac 02:e7:e7:ab:74:c9 dst_mac 02:59:27:bb:0c:0c src_ip 98.223.116.153 dst_ip 87.144.15.45 ip_proto icmp code 59 type 16 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11015 flower src_mac 02:cd:a3:58:70:86 dst_mac 02:12:4e:23:1f:f4 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11016 flower src_mac 02:e6:96:8e:b1:5f dst_mac 02:a8:d1:a4:b0:e9 src_ip 63.179.118.153 dst_ip 38.83.65.44 ip_proto tcp src_port 48867 dst_port 63813 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11017 flower src_mac 02:cd:be:62:36:20 dst_mac 02:18:99:59:85:10 vlan_id 2681 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11018 flower src_mac 02:c7:ce:93:f2:26 dst_mac 02:df:e5:11:15:ff action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11019 flower src_mac 02:a7:4b:09:51:7b dst_mac 02:b9:66:d0:8c:23 vlan_id 3737 vlan_ethtype ip src_ip 62.244.214.87 dst_ip 88.14.218.212 ip_proto tcp src_port 49466 dst_port 54766 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11020 flower src_mac 02:ea:59:33:c4:6c dst_mac 02:6c:8c:df:7a:eb action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11021 flower src_mac 02:df:39:46:18:a1 dst_mac 02:1a:7f:33:1c:e6 vlan_id 1867 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11022 flower src_mac 02:82:e2:4d:f3:ff dst_mac 02:34:ac:3f:21:56 vlan_id 3065 vlan_ethtype ip src_ip 94.0.119.156 dst_ip 46.146.246.14 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11023 flower src_mac 02:8b:bb:12:54:28 dst_mac 02:ef:ac:4c:03:e8 vlan_id 2402 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11024 flower src_mac 02:71:c3:a4:aa:5a dst_mac 02:d4:74:4b:b3:9b action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11025 flower src_mac 02:f0:d6:1c:56:4e dst_mac 02:f7:13:90:a5:18 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11026 flower src_mac 02:d5:01:a8:c9:99 dst_mac 02:60:c8:84:35:32 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11027 flower src_mac 02:81:84:c7:59:18 dst_mac 02:3a:9a:07:01:8a action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11028 flower src_mac 02:89:e2:00:e7:5c dst_mac 02:ea:6d:c8:d4:36 src_ip 91.11.2.103 dst_ip 83.92.138.182 ip_proto udp src_port 53093 dst_port 20364 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11029 flower src_mac 02:f8:3b:a6:37:75 dst_mac 02:a9:be:b8:de:e2 vlan_id 1619 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11030 flower src_mac 02:52:72:c2:b2:a8 dst_mac 02:bf:da:14:22:f6 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11031 flower src_mac 02:ae:00:26:63:d8 dst_mac 02:f5:de:3f:30:26 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11032 flower src_mac 02:89:50:ec:b8:51 dst_mac 02:1d:83:5b:18:71 vlan_id 1508 vlan_ethtype 0x0800 src_ip 45.245.63.104 dst_ip 110.82.19.124 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11033 flower src_mac 02:1c:87:8e:af:39 dst_mac 02:68:40:62:55:e1 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11034 flower src_mac 02:d4:b6:a8:22:71 dst_mac 02:2c:78:d4:1f:93 vlan_id 700 vlan_ethtype 0x0800 src_ip 73.21.143.95 dst_ip 81.160.174.163 ip_proto udp src_port 27986 dst_port 37467 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11035 flower src_mac 02:a2:5a:85:0c:ce dst_mac 02:2b:d9:67:b5:72 vlan_id 2752 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ip pref 11036 flower src_mac 02:69:3f:ea:c1:72 dst_mac 02:4a:52:6b:5e:c9 src_ip 113.94.169.227 dst_ip 52.162.109.6 ip_proto icmp code 182 type 17 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11037 flower src_mac 02:2a:8c:85:15:a0 dst_mac 02:3d:57:dd:6d:8f action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11038 flower src_mac 02:91:0a:db:0e:5e dst_mac 02:ed:fe:8d:3a:ff action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11039 flower src_mac 02:d9:95:cd:9c:c7 dst_mac 02:fe:64:d6:60:b0 action drop && tc filter add dev swp1 ingress protocol ip pref 11040 flower src_mac 02:a7:c2:44:13:3d dst_mac 02:73:7c:cb:8d:4a src_ip 121.23.12.8 dst_ip 71.83.7.104 ip_proto tcp src_port 49104 dst_port 27722 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11041 flower src_mac 02:28:81:6b:2a:44 dst_mac 02:26:bc:41:ab:fc vlan_id 1942 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11042 flower src_mac 02:5c:e1:01:dd:1c dst_mac 02:12:a8:db:39:df vlan_id 1357 vlan_ethtype 0x0800 src_ip 75.223.96.124 dst_ip 106.196.144.38 action drop && tc filter add dev swp1 ingress protocol ip pref 11043 flower src_mac 02:6b:8b:08:a5:cf dst_mac 02:33:44:b1:49:74 src_ip 89.186.215.231 dst_ip 32.206.65.89 ip_proto icmp code 94 type 0 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11044 flower src_mac 02:7f:17:bc:8f:51 dst_mac 02:9f:0e:13:84:b5 vlan_id 3804 vlan_ethtype ipv4 src_ip 124.61.115.168 dst_ip 68.159.22.230 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11045 flower src_mac 02:15:b4:72:18:0d dst_mac 02:d7:0f:60:1b:33 vlan_id 364 vlan_ethtype 0x0800 src_ip 54.76.72.22 dst_ip 126.79.136.207 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11046 flower src_mac 02:b7:de:4e:e7:10 dst_mac 02:0f:ff:19:82:ef vlan_id 3888 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11047 flower src_mac 02:4c:9d:02:1b:d9 dst_mac 02:53:1f:1e:c1:cc vlan_id 3335 vlan_ethtype ip src_ip 24.56.195.183 dst_ip 14.140.119.198 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11048 flower src_mac 02:e3:bb:ab:66:b7 dst_mac 02:9f:71:e3:56:d2 vlan_id 3141 vlan_ethtype ipv4 src_ip 22.244.26.67 dst_ip 22.86.43.145 action trap && tc filter add dev swp1 ingress protocol ip pref 11049 flower src_mac 02:01:90:80:cb:a3 dst_mac 02:d6:ba:65:9f:af src_ip 16.51.84.169 dst_ip 86.6.92.14 ip_proto udp src_port 5766 dst_port 48923 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11050 flower src_mac 02:95:a4:2a:23:6f dst_mac 02:a7:0a:d6:4f:2d vlan_id 1512 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11051 flower src_mac 02:eb:a7:64:33:12 dst_mac 02:c5:fc:66:ba:58 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11052 flower src_mac 02:f6:1c:ef:e9:37 dst_mac 02:f4:49:f6:fa:28 src_ip 38.142.188.148 dst_ip 124.144.236.182 ip_proto icmp code 189 type 5 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11053 flower src_mac 02:e7:2d:09:52:a1 dst_mac 02:16:f7:15:9f:16 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11054 flower src_mac 02:d3:57:9f:72:b2 dst_mac 02:60:8f:93:02:ed action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11055 flower src_mac 02:e9:d7:c2:e7:62 dst_mac 02:e9:ea:1d:67:36 vlan_id 3550 vlan_ethtype 0x0800 src_ip 43.130.182.224 dst_ip 68.250.36.55 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11056 flower src_mac 02:0e:72:14:1a:3b dst_mac 02:08:1c:74:0d:62 vlan_id 2364 vlan_ethtype ip src_ip 21.172.73.236 dst_ip 11.1.97.230 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11057 flower src_mac 02:79:ea:e8:e0:e9 dst_mac 02:f7:56:3f:44:6b src_ip 52.190.125.41 dst_ip 23.110.183.147 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11058 flower src_mac 02:01:5d:32:5f:70 dst_mac 02:0a:6a:b8:bb:9f src_ip 39.152.202.131 dst_ip 82.205.48.75 ip_proto icmp code 104 type 18 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11059 flower src_mac 02:09:c6:aa:87:18 dst_mac 02:2f:67:85:be:b7 src_ip 24.111.74.171 dst_ip 66.161.31.35 ip_proto tcp src_port 8578 dst_port 33016 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11060 flower src_mac 02:4a:c4:52:7b:a3 dst_mac 02:5d:38:91:73:30 src_ip 101.74.148.215 dst_ip 41.66.247.139 ip_proto icmp code 248 type 8 action pass && tc filter add dev swp1 ingress protocol ip pref 11061 flower src_mac 02:63:16:0d:fd:4f dst_mac 02:2a:ae:cb:29:d4 src_ip 103.101.105.89 dst_ip 55.0.182.6 ip_proto icmp code 172 type 15 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11062 flower src_mac 02:87:5b:65:ab:4f dst_mac 02:fa:f1:0d:a4:69 vlan_id 845 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11063 flower src_mac 02:27:af:19:19:4b dst_mac 02:86:a0:7e:f4:ed action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11064 flower src_mac 02:cb:d9:a4:77:c7 dst_mac 02:d7:23:2f:70:62 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11065 flower src_mac 02:47:44:02:8a:30 dst_mac 02:72:9d:94:5a:03 vlan_id 2585 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11066 flower src_mac 02:f7:b0:d0:ae:8e dst_mac 02:d6:ff:ed:b4:fa vlan_id 526 vlan_ethtype 0x0800 src_ip 17.60.110.43 dst_ip 119.246.157.37 ip_proto udp src_port 49329 dst_port 9536 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11067 flower src_mac 02:c6:0d:54:17:22 dst_mac 02:74:f1:82:1b:0a vlan_id 1814 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11068 flower src_mac 02:2c:b9:04:92:bc dst_mac 02:37:ab:67:5b:29 vlan_id 326 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11069 flower src_mac 02:98:a4:25:7f:de dst_mac 02:6d:6a:13:0f:45 vlan_id 486 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11070 flower src_mac 02:3a:13:9d:40:d2 dst_mac 02:76:0f:19:7d:8d vlan_id 1498 vlan_ethtype ipv4 src_ip 79.15.3.17 dst_ip 100.99.105.99 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11071 flower src_mac 02:81:3b:b0:50:17 dst_mac 02:8e:43:70:2c:5b action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11072 flower src_mac 02:5a:35:48:6b:72 dst_mac 02:62:68:89:5d:5e src_ip 42.0.17.224 dst_ip 65.208.124.179 ip_proto udp src_port 55657 dst_port 56926 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11073 flower src_mac 02:93:7f:a6:de:2d dst_mac 02:a0:90:6c:cd:70 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11074 flower src_mac 02:66:ca:59:e4:af dst_mac 02:b6:64:f8:39:5e action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11075 flower src_mac 02:2c:8b:ef:30:b5 dst_mac 02:73:37:51:97:52 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11076 flower src_mac 02:a6:8e:39:a6:1c dst_mac 02:e8:55:33:29:32 src_ip 83.57.2.228 dst_ip 89.213.104.92 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11077 flower src_mac 02:df:98:01:81:a4 dst_mac 02:43:c7:3c:b5:ae vlan_id 2879 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11078 flower src_mac 02:c9:08:0c:52:9b dst_mac 02:58:d9:e6:6d:37 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11079 flower src_mac 02:82:25:cd:c1:14 dst_mac 02:c9:27:be:e0:7b action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11080 flower src_mac 02:54:86:aa:38:1b dst_mac 02:40:7d:07:d0:e5 vlan_id 1641 vlan_ethtype ipv4 src_ip 65.236.10.116 dst_ip 88.197.177.193 ip_proto tcp src_port 33500 dst_port 9664 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11081 flower src_mac 02:fa:08:e9:e9:3b dst_mac 02:7d:1d:8f:d9:a7 src_ip 95.155.29.58 dst_ip 45.199.114.249 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11082 flower src_mac 02:cd:fc:02:03:81 dst_mac 02:d0:8a:58:8e:a9 src_ip 21.78.251.101 dst_ip 114.206.150.81 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11083 flower src_mac 02:82:c1:9d:09:10 dst_mac 02:8d:f2:8d:4e:a2 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11084 flower src_mac 02:b0:32:c0:b6:3e dst_mac 02:17:8b:d7:bf:f7 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11085 flower src_mac 02:17:30:e3:4e:8e dst_mac 02:ee:aa:52:e4:2c action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11086 flower src_mac 02:79:e6:57:d5:7e dst_mac 02:cd:3f:55:98:36 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11087 flower src_mac 02:38:d1:a3:97:40 dst_mac 02:1b:79:9a:07:e0 vlan_id 3925 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ip pref 11088 flower src_mac 02:2a:fe:07:f6:f0 dst_mac 02:4d:fe:85:39:9a src_ip 73.134.93.196 dst_ip 107.17.199.24 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11089 flower src_mac 02:22:72:c1:88:12 dst_mac 02:d2:b3:06:81:94 vlan_id 450 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11090 flower src_mac 02:62:18:0d:b8:aa dst_mac 02:f5:53:2c:f3:f4 vlan_id 3220 vlan_ethtype ip src_ip 74.213.201.168 dst_ip 12.185.53.82 ip_proto tcp src_port 18372 dst_port 62000 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11091 flower src_mac 02:47:46:4a:3a:3c dst_mac 02:08:65:73:b7:b9 vlan_id 911 vlan_ethtype 0x0800 src_ip 80.213.177.107 dst_ip 89.25.112.195 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11092 flower src_mac 02:12:8c:8d:90:17 dst_mac 02:26:2a:9b:eb:51 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11093 flower src_mac 02:56:2f:84:a7:80 dst_mac 02:78:ba:7d:37:3e action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11094 flower src_mac 02:d5:25:ae:ec:14 dst_mac 02:02:be:2e:88:86 src_ip 61.213.98.206 dst_ip 11.212.52.56 ip_proto udp src_port 56689 dst_port 14184 action trap && tc filter add dev swp1 ingress protocol ip pref 11095 flower src_mac 02:62:c9:d6:d2:fd dst_mac 02:cf:60:2d:c0:39 src_ip 34.185.223.115 dst_ip 11.205.36.148 ip_proto udp src_port 30951 dst_port 7740 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11096 flower src_mac 02:50:58:fb:1f:74 dst_mac 02:52:83:26:f6:51 vlan_id 3792 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11097 flower src_mac 02:ec:d1:bf:40:5b dst_mac 02:62:51:ea:ab:ae src_ip 29.243.41.172 dst_ip 89.90.103.57 ip_proto tcp src_port 57947 dst_port 9232 action pass && tc filter add dev swp1 ingress protocol ip pref 11098 flower src_mac 02:e2:52:ff:88:cb dst_mac 02:4e:5f:f8:9f:9e src_ip 49.201.200.211 dst_ip 50.101.59.16 ip_proto icmp code 12 type 13 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11099 flower src_mac 02:80:42:bb:79:6b dst_mac 02:f2:db:ec:1c:ff action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11100 flower src_mac 02:df:be:b5:16:b7 dst_mac 02:95:41:2a:46:13 vlan_id 1957 vlan_ethtype ipv4 src_ip 47.88.174.45 dst_ip 51.202.173.235 action trap && tc filter add dev swp1 ingress protocol ip pref 11101 flower src_mac 02:2b:61:97:8d:0c dst_mac 02:f4:cc:9f:0d:a8 src_ip 55.75.238.110 dst_ip 102.137.197.127 ip_proto icmp code 191 type 4 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11102 flower src_mac 02:60:65:7e:00:9d dst_mac 02:ea:55:f0:64:b3 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11103 flower src_mac 02:5d:12:1c:20:cc dst_mac 02:2b:45:b9:cd:4b vlan_id 1725 vlan_ethtype ipv4 src_ip 114.109.82.198 dst_ip 19.249.106.35 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11104 flower src_mac 02:ef:38:4d:b8:97 dst_mac 02:95:9d:6d:eb:35 vlan_id 426 vlan_ethtype ip src_ip 99.9.87.147 dst_ip 85.126.54.60 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11105 flower src_mac 02:0b:b0:39:b2:7d dst_mac 02:ee:7a:a5:75:fa action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11106 flower src_mac 02:6b:19:de:b4:22 dst_mac 02:db:75:34:a8:e8 vlan_id 3686 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11107 flower src_mac 02:b6:fb:a1:11:e9 dst_mac 02:a7:b7:78:f7:af vlan_id 427 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11108 flower src_mac 02:67:b8:56:ed:9d dst_mac 02:11:ea:40:07:fd vlan_id 3900 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11109 flower src_mac 02:c2:e2:02:25:d4 dst_mac 02:58:15:44:0c:44 action pass && tc filter add dev swp1 ingress protocol ip pref 11110 flower src_mac 02:af:30:c4:bb:e8 dst_mac 02:05:09:44:14:bb src_ip 80.58.193.50 dst_ip 25.98.24.70 ip_proto tcp src_port 19999 dst_port 54213 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11111 flower src_mac 02:d0:8f:c8:3a:a9 dst_mac 02:6f:49:a0:3d:96 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11112 flower src_mac 02:a1:a3:f9:07:84 dst_mac 02:53:d1:44:c3:e3 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11113 flower src_mac 02:b3:13:80:35:56 dst_mac 02:30:3d:55:c1:60 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11114 flower src_mac 02:9c:ff:42:a7:18 dst_mac 02:09:cf:f3:ba:d4 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11115 flower src_mac 02:05:71:8c:4e:64 dst_mac 02:1d:8f:97:f3:c6 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11116 flower src_mac 02:8d:32:3c:63:02 dst_mac 02:5d:83:a1:02:39 vlan_id 561 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11117 flower src_mac 02:5f:9c:f5:80:93 dst_mac 02:e7:7a:de:9d:ed vlan_id 3840 vlan_ethtype ip src_ip 105.80.57.100 dst_ip 80.134.213.249 action pass && tc filter add dev swp1 ingress protocol ip pref 11118 flower src_mac 02:ab:0f:a5:73:6a dst_mac 02:73:b6:f8:93:2a src_ip 77.30.149.90 dst_ip 64.249.12.195 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11119 flower src_mac 02:72:94:db:84:be dst_mac 02:7a:34:78:37:22 vlan_id 1369 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11120 flower src_mac 02:62:a4:3b:8d:e0 dst_mac 02:bc:51:70:c9:df action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11121 flower src_mac 02:21:a7:39:90:98 dst_mac 02:f0:bb:a2:3e:d6 vlan_id 705 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11122 flower src_mac 02:19:97:66:77:f3 dst_mac 02:50:d3:cb:a8:d0 src_ip 97.141.163.218 dst_ip 61.64.130.82 ip_proto tcp src_port 21931 dst_port 50409 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11123 flower src_mac 02:67:90:d2:d7:43 dst_mac 02:d8:98:e1:55:fc vlan_id 3123 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11124 flower src_mac 02:09:f1:02:3d:8c dst_mac 02:57:d1:7f:c4:49 src_ip 55.80.81.224 dst_ip 99.203.98.131 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11125 flower src_mac 02:ca:49:a3:86:8b dst_mac 02:6b:ef:94:71:73 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11126 flower src_mac 02:e4:ab:68:1d:ae dst_mac 02:0a:35:40:62:66 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11127 flower src_mac 02:de:fa:16:75:71 dst_mac 02:41:8a:b5:e3:88 vlan_id 1800 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11128 flower src_mac 02:e1:29:6a:f4:a0 dst_mac 02:b5:59:be:c7:de src_ip 91.251.153.21 dst_ip 115.20.246.47 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11129 flower src_mac 02:dc:e4:7c:a9:e7 dst_mac 02:85:62:29:2e:a7 vlan_id 3898 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11130 flower src_mac 02:b4:29:d2:7e:83 dst_mac 02:e1:56:02:d7:f4 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11131 flower src_mac 02:9a:3b:ad:ca:05 dst_mac 02:9f:14:21:49:3e action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11132 flower src_mac 02:bc:53:8e:73:b0 dst_mac 02:5e:fc:f9:bb:4b vlan_id 90 vlan_ethtype ipv4 src_ip 56.43.196.105 dst_ip 100.119.251.107 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11133 flower src_mac 02:55:22:ef:6c:e4 dst_mac 02:29:7b:45:60:7c src_ip 62.88.163.189 dst_ip 74.43.165.86 ip_proto tcp src_port 7100 dst_port 2932 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11134 flower src_mac 02:7d:83:8e:53:d7 dst_mac 02:83:d9:e9:00:c9 src_ip 40.188.73.102 dst_ip 82.53.118.128 ip_proto tcp src_port 12423 dst_port 52548 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11135 flower src_mac 02:6c:b4:c5:2a:f7 dst_mac 02:0b:89:17:5d:ef src_ip 13.130.177.87 dst_ip 70.246.119.135 ip_proto tcp src_port 34808 dst_port 6038 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11136 flower src_mac 02:1c:19:a1:c1:df dst_mac 02:ed:6f:70:44:cf vlan_id 867 vlan_ethtype ipv4 src_ip 71.105.196.142 dst_ip 33.100.114.183 ip_proto tcp src_port 42287 dst_port 61796 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11137 flower src_mac 02:aa:71:bc:d3:f6 dst_mac 02:7c:67:59:d6:0f src_ip 67.25.6.52 dst_ip 77.31.142.100 ip_proto tcp src_port 23750 dst_port 14507 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11138 flower src_mac 02:7b:06:0a:52:e2 dst_mac 02:bf:64:7f:86:75 vlan_id 2184 vlan_ethtype ipv4 src_ip 104.65.45.3 dst_ip 41.227.70.230 ip_proto tcp src_port 54103 dst_port 63563 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11139 flower src_mac 02:35:8b:dd:c9:f9 dst_mac 02:b3:bd:00:89:e4 vlan_id 551 vlan_ethtype ipv4 src_ip 114.225.221.77 dst_ip 59.251.39.138 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11140 flower src_mac 02:1f:df:30:65:11 dst_mac 02:b4:29:3a:cd:6a vlan_id 838 vlan_ethtype ip src_ip 62.79.244.238 dst_ip 82.129.201.97 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11141 flower src_mac 02:b2:01:61:39:b9 dst_mac 02:84:e3:8e:6d:fb vlan_id 3905 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11142 flower src_mac 02:10:2a:50:9b:c1 dst_mac 02:59:0a:dc:69:ae action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11143 flower src_mac 02:73:6a:ba:a3:1f dst_mac 02:53:e8:67:37:96 vlan_id 3534 vlan_ethtype ipv4 src_ip 48.172.79.70 dst_ip 53.190.75.205 ip_proto tcp src_port 36123 dst_port 48410 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11144 flower src_mac 02:1b:f8:57:4e:3c dst_mac 02:5b:ec:86:dc:82 vlan_id 4006 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11145 flower src_mac 02:9b:30:d0:9a:bf dst_mac 02:bf:20:f4:44:85 src_ip 44.6.217.125 dst_ip 89.17.147.95 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11146 flower src_mac 02:c2:21:17:aa:b2 dst_mac 02:e0:5b:05:33:92 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11147 flower src_mac 02:c7:10:d9:08:4f dst_mac 02:db:7e:7d:f5:2c action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11148 flower src_mac 02:1c:0e:e2:94:5c dst_mac 02:2f:e0:0c:65:c1 vlan_id 3784 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11149 flower src_mac 02:ba:0f:55:ac:a4 dst_mac 02:a8:7d:f5:7c:17 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11150 flower src_mac 02:f6:17:5a:af:04 dst_mac 02:d1:b1:a3:97:56 vlan_id 3866 vlan_ethtype 0x0800 src_ip 35.165.131.15 dst_ip 27.218.74.16 ip_proto tcp src_port 42157 dst_port 19527 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11151 flower src_mac 02:23:2c:c2:8e:0d dst_mac 02:64:79:5d:63:92 vlan_id 759 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11152 flower src_mac 02:28:9b:b6:48:47 dst_mac 02:e9:ca:74:d5:6f vlan_id 707 vlan_ethtype 0x0800 src_ip 50.220.54.132 dst_ip 83.94.217.66 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11153 flower src_mac 02:96:1a:9d:c7:cb dst_mac 02:8f:e2:7b:cb:5a vlan_id 212 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11154 flower src_mac 02:b7:6c:99:bd:c1 dst_mac 02:5f:5e:94:d3:3a src_ip 44.48.203.19 dst_ip 108.108.165.31 ip_proto tcp src_port 37259 dst_port 4314 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11155 flower src_mac 02:6a:82:ce:48:06 dst_mac 02:70:e6:87:79:9e vlan_id 2505 vlan_ethtype ipv4 src_ip 118.70.128.169 dst_ip 124.169.197.175 ip_proto tcp src_port 37062 dst_port 57682 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11156 flower src_mac 02:0e:87:64:44:1e dst_mac 02:89:0b:42:70:48 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11157 flower src_mac 02:c0:77:61:3b:ff dst_mac 02:5d:d6:3c:f3:94 src_ip 81.218.195.65 dst_ip 65.161.69.153 ip_proto udp src_port 29296 dst_port 6040 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11158 flower src_mac 02:c4:52:ee:b8:52 dst_mac 02:6e:01:18:d7:e4 vlan_id 192 vlan_ethtype ip src_ip 12.225.136.247 dst_ip 103.208.111.101 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11159 flower src_mac 02:54:cc:fb:b9:d1 dst_mac 02:f3:77:53:f8:f9 vlan_id 456 vlan_ethtype 0x0800 src_ip 46.41.76.2 dst_ip 27.29.147.2 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11160 flower src_mac 02:b3:fe:3b:30:8a dst_mac 02:b6:db:df:20:68 vlan_id 3367 vlan_ethtype ipv4 src_ip 11.230.178.66 dst_ip 82.207.222.176 ip_proto udp src_port 57857 dst_port 64148 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11161 flower src_mac 02:26:ca:34:16:04 dst_mac 02:c1:c4:8a:36:35 vlan_id 913 vlan_ethtype ipv4 src_ip 118.156.16.126 dst_ip 19.53.93.237 ip_proto udp src_port 23767 dst_port 17448 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11162 flower src_mac 02:cc:9f:c2:9c:93 dst_mac 02:9b:21:13:92:fc vlan_id 36 vlan_ethtype ipv4 src_ip 105.250.110.180 dst_ip 61.87.39.52 ip_proto tcp src_port 54528 dst_port 31044 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11163 flower src_mac 02:57:bb:27:41:a0 dst_mac 02:c0:e0:c9:29:b6 vlan_id 3588 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ip pref 11164 flower src_mac 02:f8:5d:c0:0e:4d dst_mac 02:23:0f:68:a5:0e src_ip 20.196.130.100 dst_ip 58.147.27.113 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11165 flower src_mac 02:14:d0:85:a3:30 dst_mac 02:c9:db:ce:26:b9 src_ip 114.220.235.229 dst_ip 68.202.217.48 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11166 flower src_mac 02:69:c9:7f:92:76 dst_mac 02:2f:c3:19:d3:7b vlan_id 312 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11167 flower src_mac 02:d7:53:14:d6:54 dst_mac 02:7b:53:f6:27:50 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11168 flower src_mac 02:d1:16:b9:ce:87 dst_mac 02:38:81:ba:63:ae vlan_id 3272 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ip pref 11169 flower src_mac 02:06:e2:43:7a:6d dst_mac 02:f5:cd:91:1f:a7 src_ip 111.71.75.146 dst_ip 82.35.243.109 ip_proto udp src_port 35047 dst_port 38595 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11170 flower src_mac 02:b9:d9:e5:fc:56 dst_mac 02:a7:50:70:2f:77 vlan_id 1931 vlan_ethtype ip src_ip 12.251.254.196 dst_ip 115.213.210.67 ip_proto udp src_port 18219 dst_port 33953 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11171 flower src_mac 02:31:4b:b5:0e:7b dst_mac 02:71:4f:73:e6:bc vlan_id 184 vlan_ethtype 0x0800 src_ip 105.54.39.43 dst_ip 80.122.13.58 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11172 flower src_mac 02:8f:66:ef:b4:1e dst_mac 02:d1:d4:a7:a5:c1 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11173 flower src_mac 02:ca:88:b4:5e:52 dst_mac 02:22:54:2f:80:fe vlan_id 3627 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11174 flower src_mac 02:1b:36:f3:b8:b6 dst_mac 02:e5:d2:bd:f6:e6 src_ip 73.33.121.124 dst_ip 64.165.221.48 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11175 flower src_mac 02:8d:11:67:9f:98 dst_mac 02:65:c1:40:8b:78 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11176 flower src_mac 02:35:82:3f:7f:9a dst_mac 02:e5:5e:b3:ad:5d vlan_id 324 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11177 flower src_mac 02:04:e0:d4:7a:37 dst_mac 02:e7:2a:9f:3d:f9 vlan_id 1529 vlan_ethtype 0x0800 src_ip 58.239.161.151 dst_ip 123.25.72.239 ip_proto udp src_port 12284 dst_port 10052 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11178 flower src_mac 02:c4:0d:f6:91:4f dst_mac 02:2e:d1:93:16:69 vlan_id 277 vlan_ethtype 0x0800 src_ip 97.103.187.92 dst_ip 55.90.68.139 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11179 flower src_mac 02:88:5e:16:0f:65 dst_mac 02:b7:26:4e:55:94 vlan_id 1626 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11180 flower src_mac 02:e7:b7:70:83:5c dst_mac 02:f9:bd:3e:d4:f1 vlan_id 2500 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11181 flower src_mac 02:22:46:8a:c0:57 dst_mac 02:7c:fe:69:ee:31 vlan_id 3604 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11182 flower src_mac 02:2e:e2:6f:76:04 dst_mac 02:c3:c9:c3:31:60 vlan_id 967 vlan_ethtype ip src_ip 89.125.58.226 dst_ip 98.233.110.78 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11183 flower src_mac 02:0d:53:65:72:72 dst_mac 02:e1:19:a3:9a:0c src_ip 111.79.161.31 dst_ip 76.55.229.95 ip_proto tcp src_port 56633 dst_port 6405 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11184 flower src_mac 02:45:e6:9f:b7:fa dst_mac 02:b1:66:bf:87:b2 vlan_id 1586 vlan_ethtype ipv4 src_ip 38.33.196.96 dst_ip 79.1.11.186 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11185 flower src_mac 02:6e:49:4f:7a:cc dst_mac 02:7e:35:13:ed:71 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11186 flower src_mac 02:3d:e2:01:a4:66 dst_mac 02:74:09:14:a3:56 src_ip 92.249.198.142 dst_ip 62.31.64.97 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11187 flower src_mac 02:d5:a7:07:30:7a dst_mac 02:a0:51:0e:b9:98 vlan_id 437 vlan_ethtype ip src_ip 28.29.198.72 dst_ip 56.218.130.61 ip_proto tcp src_port 42233 dst_port 10001 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11188 flower src_mac 02:0c:6b:11:c7:4e dst_mac 02:3d:05:ad:87:9e action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11189 flower src_mac 02:81:92:45:55:24 dst_mac 02:32:39:af:48:9b vlan_id 2851 vlan_ethtype ipv4 src_ip 107.132.4.76 dst_ip 66.186.228.4 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11190 flower src_mac 02:57:c0:47:6a:1a dst_mac 02:83:77:56:53:5f action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11191 flower src_mac 02:7c:e3:88:b5:7a dst_mac 02:c9:e6:e3:45:a6 vlan_id 1241 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11192 flower src_mac 02:be:f6:94:f7:70 dst_mac 02:10:c6:9a:a3:46 vlan_id 2798 vlan_ethtype 0x0800 src_ip 119.67.151.21 dst_ip 72.112.89.248 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11193 flower src_mac 02:b2:c6:d0:72:0a dst_mac 02:e8:70:91:40:4a src_ip 120.222.178.97 dst_ip 41.178.2.116 ip_proto icmp code 139 type 14 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11194 flower src_mac 02:d2:9e:da:13:01 dst_mac 02:cc:bd:0d:be:1d action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11195 flower src_mac 02:fb:3d:24:7c:df dst_mac 02:f6:bd:80:af:83 src_ip 79.34.148.161 dst_ip 66.29.64.237 ip_proto icmp code 228 type 14 action pass && tc filter add dev swp1 ingress protocol ip pref 11196 flower src_mac 02:b1:aa:8c:e1:d0 dst_mac 02:61:fa:14:08:56 src_ip 25.223.157.240 dst_ip 37.200.111.64 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11197 flower src_mac 02:02:c0:74:bb:6b dst_mac 02:e9:6f:35:2a:52 action trap && tc filter add dev swp1 ingress protocol ip pref 11198 flower src_mac 02:2e:77:3c:5a:2d dst_mac 02:00:12:1c:7d:c8 src_ip 117.17.242.96 dst_ip 19.93.36.75 ip_proto tcp src_port 60591 dst_port 9193 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11199 flower src_mac 02:2e:c7:a4:6e:55 dst_mac 02:8f:5f:17:fd:9a src_ip 107.183.10.230 dst_ip 87.231.37.238 ip_proto udp src_port 24680 dst_port 19149 action drop INFO asyncssh:logging.py:92 [conn=24, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=8] Command: tc filter add dev swp1 ingress protocol 802.1q pref 10800 flower src_mac 02:5f:f2:28:2f:40 dst_mac 02:08:f9:56:eb:43 vlan_id 2104 vlan_ethtype ip src_ip 47.54.21.57 dst_ip 47.92.99.106 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10801 flower src_mac 02:c5:57:73:52:da dst_mac 02:20:02:73:fa:a2 action trap && tc filter add dev swp1 ingress protocol ip pref 10802 flower src_mac 02:c2:75:e3:c2:17 dst_mac 02:56:e6:8c:ed:59 src_ip 76.147.135.137 dst_ip 81.178.110.158 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10803 flower src_mac 02:e4:58:8f:69:b8 dst_mac 02:74:3c:d7:99:5f action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10804 flower src_mac 02:b1:74:5c:24:97 dst_mac 02:4c:0a:55:ab:5f vlan_id 1924 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10805 flower src_mac 02:a1:a3:16:50:a7 dst_mac 02:c7:cb:eb:b2:7a action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10806 flower src_mac 02:ff:1a:96:ff:98 dst_mac 02:08:ac:8e:d5:77 vlan_id 3106 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10807 flower src_mac 02:3e:e7:18:a7:25 dst_mac 02:54:c8:b0:f8:93 src_ip 97.221.4.5 dst_ip 120.187.47.37 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10808 flower src_mac 02:9e:80:f8:82:d9 dst_mac 02:67:89:49:29:be vlan_id 2682 vlan_ethtype ip src_ip 94.77.189.71 dst_ip 105.137.217.202 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10809 flower src_mac 02:46:4b:a1:5c:02 dst_mac 02:bc:30:92:df:77 src_ip 97.44.213.232 dst_ip 126.160.60.29 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10810 flower src_mac 02:f0:b9:92:77:f4 dst_mac 02:53:87:d0:93:8e action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10811 flower src_mac 02:c5:1a:f9:b1:be dst_mac 02:81:70:a0:a6:1c vlan_id 3081 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10812 flower src_mac 02:f0:f8:c1:fe:91 dst_mac 02:9e:9f:b0:63:10 src_ip 104.59.160.52 dst_ip 118.55.235.171 ip_proto tcp src_port 38218 dst_port 15566 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10813 flower src_mac 02:8f:58:8e:06:ff dst_mac 02:64:32:08:57:71 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10814 flower src_mac 02:29:b1:38:70:ff dst_mac 02:82:f3:ae:58:7d vlan_id 1652 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10815 flower src_mac 02:82:e9:bc:58:f4 dst_mac 02:2d:a5:2c:82:d8 vlan_id 979 vlan_ethtype ipv4 src_ip 38.228.167.171 dst_ip 12.220.97.12 ip_proto tcp src_port 20612 dst_port 60113 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10816 flower src_mac 02:ab:b2:2a:0f:37 dst_mac 02:03:95:10:9b:59 vlan_id 2101 vlan_ethtype ipv4 src_ip 115.70.93.91 dst_ip 37.186.87.99 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10817 flower src_mac 02:74:6a:78:87:55 dst_mac 02:b8:fd:d9:bb:17 vlan_id 1406 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10818 flower src_mac 02:e0:1c:ba:8a:9d dst_mac 02:f8:db:b4:ab:e5 vlan_id 2738 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10819 flower src_mac 02:df:b2:27:5c:c3 dst_mac 02:d2:e2:3f:59:5d vlan_id 3370 vlan_ethtype ip src_ip 13.103.94.190 dst_ip 38.109.230.156 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10820 flower src_mac 02:3f:a3:69:3d:7a dst_mac 02:f9:38:a5:45:06 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10821 flower src_mac 02:6e:77:c6:e2:38 dst_mac 02:5e:5a:1a:3f:8f vlan_id 1291 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10822 flower src_mac 02:2d:b0:88:73:e1 dst_mac 02:fd:f9:25:7e:4d vlan_id 447 vlan_ethtype ip src_ip 53.68.176.146 dst_ip 111.138.116.185 ip_proto udp src_port 60717 dst_port 38744 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10823 flower src_mac 02:96:22:16:9e:6c dst_mac 02:89:e1:94:a7:ea action pass && tc filter add dev swp1 ingress protocol ip pref 10824 flower src_mac 02:a6:d4:bf:96:4d dst_mac 02:36:a8:e6:0a:bc src_ip 79.138.174.215 dst_ip 14.188.110.47 ip_proto udp src_port 62857 dst_port 43870 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10825 flower src_mac 02:f9:8a:b6:24:0e dst_mac 02:d9:3f:05:43:ca src_ip 34.178.211.229 dst_ip 58.63.246.199 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10826 flower src_mac 02:ae:cf:0e:66:56 dst_mac 02:91:14:6b:db:ec vlan_id 2453 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10827 flower src_mac 02:7d:e4:13:98:44 dst_mac 02:d0:6a:9d:1e:5f vlan_id 3177 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ip pref 10828 flower src_mac 02:ff:d0:49:94:76 dst_mac 02:7d:a8:16:b1:01 src_ip 81.142.119.239 dst_ip 80.20.48.164 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10829 flower src_mac 02:c5:3e:42:02:7d dst_mac 02:c7:72:56:6a:52 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10830 flower src_mac 02:49:63:f6:21:8e dst_mac 02:34:e0:7d:81:0d vlan_id 1931 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ip pref 10831 flower src_mac 02:e5:85:48:08:da dst_mac 02:3a:84:1b:68:c5 src_ip 84.107.101.243 dst_ip 33.195.122.59 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10832 flower src_mac 02:c4:a6:35:7b:1b dst_mac 02:c0:08:78:7e:27 vlan_id 2304 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10833 flower src_mac 02:39:6c:a0:28:df dst_mac 02:5e:64:a2:3c:21 vlan_id 618 vlan_ethtype 0x0800 src_ip 43.86.46.5 dst_ip 16.144.30.23 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10834 flower src_mac 02:7f:0b:dc:ed:89 dst_mac 02:e6:6f:8c:c5:30 src_ip 51.250.128.113 dst_ip 90.31.77.1 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10835 flower src_mac 02:24:e5:06:38:e7 dst_mac 02:60:c5:f9:dd:b9 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10836 flower src_mac 02:15:d6:bd:a2:5a dst_mac 02:20:c4:8f:0d:ee src_ip 81.9.21.242 dst_ip 109.31.143.226 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10837 flower src_mac 02:5b:0d:1f:fa:c1 dst_mac 02:b3:b4:d1:0a:a2 vlan_id 3470 vlan_ethtype ipv4 src_ip 35.41.12.178 dst_ip 110.152.178.176 ip_proto tcp src_port 8541 dst_port 50460 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10838 flower src_mac 02:de:84:46:4e:4d dst_mac 02:a8:00:3c:bb:8b vlan_id 1608 vlan_ethtype 0x0800 src_ip 77.158.116.234 dst_ip 68.165.80.138 ip_proto udp src_port 45496 dst_port 32856 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10839 flower src_mac 02:b0:df:c8:1a:ae dst_mac 02:e0:ce:fe:86:5b vlan_id 1788 vlan_ethtype ip src_ip 27.117.187.162 dst_ip 90.116.111.130 ip_proto tcp src_port 57347 dst_port 37399 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10840 flower src_mac 02:ca:47:c3:3e:a9 dst_mac 02:b1:30:5d:cb:fe action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10841 flower src_mac 02:54:f1:0a:72:e0 dst_mac 02:5f:66:82:c3:c2 src_ip 97.234.154.247 dst_ip 19.213.160.8 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10842 flower src_mac 02:9f:42:66:11:5d dst_mac 02:32:f1:dd:fd:c9 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10843 flower src_mac 02:ca:4f:f2:a6:7b dst_mac 02:fe:9c:4d:e2:7b src_ip 64.176.130.146 dst_ip 41.144.212.183 ip_proto icmp code 61 type 0 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10844 flower src_mac 02:f1:0f:36:a5:19 dst_mac 02:a6:cd:05:7b:78 vlan_id 3776 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10845 flower src_mac 02:ef:d1:bc:67:24 dst_mac 02:2d:a3:72:0b:67 vlan_id 3508 vlan_ethtype ipv4 src_ip 18.153.77.164 dst_ip 124.132.162.107 ip_proto tcp src_port 61907 dst_port 13453 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10846 flower src_mac 02:5e:22:ba:97:d4 dst_mac 02:3b:2d:d1:86:bb action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10847 flower src_mac 02:94:56:9d:a5:4f dst_mac 02:d5:ce:5c:7e:a6 vlan_id 1356 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10848 flower src_mac 02:a4:92:d3:21:76 dst_mac 02:00:04:79:91:ab action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10849 flower src_mac 02:64:04:4c:d2:18 dst_mac 02:67:63:77:66:36 action trap && tc filter add dev swp1 ingress protocol ip pref 10850 flower src_mac 02:b1:38:1d:5b:2b dst_mac 02:45:c3:84:16:bc src_ip 108.187.28.186 dst_ip 100.220.223.240 ip_proto udp src_port 30103 dst_port 53241 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10851 flower src_mac 02:04:6a:4d:f9:57 dst_mac 02:1c:ca:e6:75:fe action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10852 flower src_mac 02:ee:04:e1:3c:69 dst_mac 02:45:da:bb:de:6a action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10853 flower src_mac 02:6b:15:16:64:ed dst_mac 02:46:94:d9:d7:5f vlan_id 874 vlan_ethtype ipv4 src_ip 90.189.224.229 dst_ip 44.58.48.178 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10854 flower src_mac 02:45:8a:04:b7:47 dst_mac 02:d2:5d:ad:c7:0e vlan_id 3642 vlan_ethtype 0x0800 src_ip 63.212.72.110 dst_ip 34.54.179.110 ip_proto tcp src_port 61040 dst_port 55831 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10855 flower src_mac 02:d4:bd:80:cc:d8 dst_mac 02:47:99:3d:81:bd vlan_id 1262 vlan_ethtype ip src_ip 89.250.142.164 dst_ip 66.134.255.166 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10856 flower src_mac 02:db:b6:e0:df:1b dst_mac 02:e1:72:56:9f:4c action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10857 flower src_mac 02:8a:9d:fc:69:17 dst_mac 02:64:1f:20:b7:35 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10858 flower src_mac 02:81:16:32:77:1c dst_mac 02:cc:0c:83:07:b1 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10859 flower src_mac 02:c4:6d:82:93:d1 dst_mac 02:4b:d5:de:ae:4a vlan_id 1671 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10860 flower src_mac 02:51:5c:6d:ee:e8 dst_mac 02:e4:8e:4a:35:6a vlan_id 3416 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10861 flower src_mac 02:64:56:23:22:93 dst_mac 02:66:84:d1:ce:06 vlan_id 962 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10862 flower src_mac 02:d2:67:1a:34:85 dst_mac 02:d2:e7:53:34:14 vlan_id 270 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10863 flower src_mac 02:d2:ff:a3:40:37 dst_mac 02:67:95:8e:40:aa vlan_id 125 vlan_ethtype ip src_ip 32.96.202.4 dst_ip 95.60.38.244 ip_proto tcp src_port 33983 dst_port 51548 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10864 flower src_mac 02:e1:71:69:41:e1 dst_mac 02:b4:77:f6:e1:13 vlan_id 3357 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10865 flower src_mac 02:38:fa:be:9e:3c dst_mac 02:50:d2:00:57:40 vlan_id 2370 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10866 flower src_mac 02:36:80:f7:22:5d dst_mac 02:d7:4c:5f:b8:5a action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10867 flower src_mac 02:e9:64:7a:f0:05 dst_mac 02:37:17:d0:8e:5a action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10868 flower src_mac 02:b7:2a:35:cd:52 dst_mac 02:f0:80:61:35:06 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10869 flower src_mac 02:02:42:5a:1d:d7 dst_mac 02:5e:8d:6f:74:ae src_ip 12.171.177.24 dst_ip 101.136.111.248 ip_proto icmp code 54 type 18 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10870 flower src_mac 02:8e:c7:23:c8:b4 dst_mac 02:dd:cc:78:83:ad vlan_id 3984 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10871 flower src_mac 02:a7:1d:38:f6:53 dst_mac 02:03:77:12:da:99 src_ip 78.208.82.240 dst_ip 124.86.169.113 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10872 flower src_mac 02:c1:5e:49:91:31 dst_mac 02:a7:06:d1:62:be action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10873 flower src_mac 02:9e:52:a8:fc:14 dst_mac 02:4d:5d:be:de:4c src_ip 18.69.46.44 dst_ip 106.173.117.247 ip_proto udp src_port 64703 dst_port 21796 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10874 flower src_mac 02:88:3e:e0:39:5b dst_mac 02:53:b0:e8:fa:d0 vlan_id 146 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10875 flower src_mac 02:17:da:92:67:8c dst_mac 02:a5:50:74:6b:7e action drop && tc filter add dev swp1 ingress protocol ip pref 10876 flower src_mac 02:a1:c6:87:a5:ed dst_mac 02:04:90:35:53:77 src_ip 38.122.212.155 dst_ip 88.146.222.124 ip_proto icmp code 211 type 0 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10877 flower src_mac 02:93:77:3e:47:62 dst_mac 02:ce:47:24:be:61 vlan_id 3694 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10878 flower src_mac 02:35:5f:bb:8e:ed dst_mac 02:d3:be:f6:04:50 vlan_id 1202 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10879 flower src_mac 02:2c:a7:36:fb:2d dst_mac 02:88:ed:aa:eb:06 vlan_id 1458 vlan_ethtype ip src_ip 29.128.67.109 dst_ip 104.120.206.232 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10880 flower src_mac 02:7a:15:cb:00:bb dst_mac 02:6c:41:c7:76:ae vlan_id 2032 vlan_ethtype ipv4 src_ip 93.225.235.128 dst_ip 109.212.11.113 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10881 flower src_mac 02:89:48:31:19:97 dst_mac 02:03:29:c5:23:f8 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10882 flower src_mac 02:69:25:1b:02:ae dst_mac 02:4a:61:57:06:89 src_ip 72.147.184.17 dst_ip 85.145.60.166 ip_proto tcp src_port 56660 dst_port 55707 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10883 flower src_mac 02:ac:af:08:b3:cd dst_mac 02:54:09:c3:c1:51 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10884 flower src_mac 02:9f:1f:30:ef:70 dst_mac 02:1e:40:88:bb:e2 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10885 flower src_mac 02:51:dd:4b:02:66 dst_mac 02:7f:db:ae:83:57 vlan_id 3844 vlan_ethtype 0x0800 src_ip 89.112.245.3 dst_ip 48.106.184.61 action pass && tc filter add dev swp1 ingress protocol ip pref 10886 flower src_mac 02:f1:cf:d2:35:75 dst_mac 02:8d:25:bb:0e:4d src_ip 14.163.192.188 dst_ip 111.40.181.206 ip_proto tcp src_port 49431 dst_port 27899 action pass && tc filter add dev swp1 ingress protocol ip pref 10887 flower src_mac 02:2e:83:5e:40:56 dst_mac 02:29:e7:a0:ce:07 src_ip 12.207.207.130 dst_ip 47.85.47.13 ip_proto tcp src_port 52632 dst_port 33778 action pass && tc filter add dev swp1 ingress protocol ip pref 10888 flower src_mac 02:80:90:aa:7c:fa dst_mac 02:7a:bf:38:2a:6e src_ip 63.228.82.167 dst_ip 28.62.220.190 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10889 flower src_mac 02:0d:fa:b4:50:d7 dst_mac 02:c6:03:b3:7e:15 src_ip 38.14.9.91 dst_ip 107.199.180.201 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10890 flower src_mac 02:7e:f2:cb:b1:47 dst_mac 02:90:b5:ad:39:3d src_ip 11.165.181.49 dst_ip 22.29.193.131 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10891 flower src_mac 02:77:b3:fc:fa:04 dst_mac 02:dd:2a:a0:20:9b action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10892 flower src_mac 02:7b:3e:f7:85:e0 dst_mac 02:c9:15:f3:de:e3 vlan_id 2734 vlan_ethtype ip src_ip 117.137.139.160 dst_ip 20.58.6.75 ip_proto udp src_port 30981 dst_port 6789 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10893 flower src_mac 02:3e:2e:61:f0:ff dst_mac 02:f4:7e:8f:15:06 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10894 flower src_mac 02:e2:59:e9:f0:d2 dst_mac 02:b3:10:83:f9:16 src_ip 34.82.79.236 dst_ip 49.89.6.240 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10895 flower src_mac 02:f6:74:8d:42:ea dst_mac 02:4b:dc:5e:d6:ee action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10896 flower src_mac 02:a4:6e:d1:b8:8e dst_mac 02:82:6f:91:cf:fc action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10897 flower src_mac 02:2b:c2:6f:bb:48 dst_mac 02:ac:a5:db:f4:4a src_ip 40.230.35.161 dst_ip 68.250.31.161 ip_proto tcp src_port 10005 dst_port 42549 action drop && tc filter add dev swp1 ingress protocol ip pref 10898 flower src_mac 02:c7:4e:81:42:78 dst_mac 02:d5:e0:03:c6:63 src_ip 118.31.86.55 dst_ip 124.185.38.145 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10899 flower src_mac 02:55:05:0a:67:16 dst_mac 02:fa:5b:19:e9:1a src_ip 87.150.189.110 dst_ip 90.163.0.238 ip_proto tcp src_port 45169 dst_port 36039 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10900 flower src_mac 02:c3:4c:8d:25:fb dst_mac 02:15:d4:f6:8c:b3 vlan_id 3928 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10901 flower src_mac 02:8f:5d:61:1e:66 dst_mac 02:85:94:c4:d7:1c action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10902 flower src_mac 02:e7:d3:07:bd:bb dst_mac 02:61:c6:a1:dc:02 src_ip 122.217.154.181 dst_ip 102.247.251.223 ip_proto udp src_port 53185 dst_port 2887 action drop && tc filter add dev swp1 ingress protocol ip pref 10903 flower src_mac 02:2d:f2:3a:cb:66 dst_mac 02:ad:e4:fd:a7:94 src_ip 12.211.123.221 dst_ip 115.154.169.190 ip_proto icmp code 143 type 12 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10904 flower src_mac 02:96:a8:e6:35:aa dst_mac 02:68:38:af:75:44 vlan_id 3262 vlan_ethtype ipv4 src_ip 24.141.243.28 dst_ip 72.58.219.134 ip_proto tcp src_port 49744 dst_port 20331 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10905 flower src_mac 02:15:ff:df:b8:47 dst_mac 02:4e:d1:29:b7:59 vlan_id 1473 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10906 flower src_mac 02:89:02:d5:75:ba dst_mac 02:db:84:4e:c7:1d vlan_id 1280 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10907 flower src_mac 02:aa:8c:08:f8:8d dst_mac 02:06:8b:4a:e8:f6 vlan_id 340 vlan_ethtype ipv4 src_ip 126.177.213.118 dst_ip 56.201.189.140 ip_proto udp src_port 8009 dst_port 51773 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10908 flower src_mac 02:61:ba:db:55:44 dst_mac 02:3a:f5:fc:64:f3 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10909 flower src_mac 02:a3:1f:f6:37:5c dst_mac 02:6b:d5:95:ad:0e vlan_id 3049 vlan_ethtype ipv4 src_ip 50.227.171.107 dst_ip 62.204.50.2 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10910 flower src_mac 02:e7:ea:d8:89:02 dst_mac 02:e4:e9:14:8b:09 vlan_id 774 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10911 flower src_mac 02:18:df:57:07:cf dst_mac 02:5a:9e:19:31:b0 vlan_id 1377 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10912 flower src_mac 02:af:9b:75:8f:70 dst_mac 02:0c:1e:ec:58:ba vlan_id 2907 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10913 flower src_mac 02:e0:b4:cd:04:df dst_mac 02:7d:01:d6:68:e4 vlan_id 3211 vlan_ethtype ipv4 src_ip 50.203.192.40 dst_ip 17.19.188.16 ip_proto udp src_port 37168 dst_port 31819 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10914 flower src_mac 02:a5:41:28:78:ea dst_mac 02:ff:59:d8:51:2e src_ip 69.125.119.198 dst_ip 48.32.140.219 action pass && tc filter add dev swp1 ingress protocol ip pref 10915 flower src_mac 02:fe:7b:7d:05:f0 dst_mac 02:b1:2e:33:6e:42 src_ip 114.60.162.86 dst_ip 63.31.33.228 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10916 flower src_mac 02:4d:46:1d:51:3e dst_mac 02:ec:cd:3e:07:85 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10917 flower src_mac 02:67:53:3c:66:22 dst_mac 02:47:37:cf:0f:43 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10918 flower src_mac 02:e8:e9:52:e7:63 dst_mac 02:9d:74:cb:ef:17 vlan_id 399 vlan_ethtype ip src_ip 49.197.115.209 dst_ip 13.88.107.83 ip_proto tcp src_port 7828 dst_port 18782 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10919 flower src_mac 02:c3:ca:2c:16:60 dst_mac 02:01:67:f4:10:2e vlan_id 890 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10920 flower src_mac 02:99:e6:44:46:d3 dst_mac 02:de:1f:69:47:bb action drop && tc filter add dev swp1 ingress protocol ip pref 10921 flower src_mac 02:03:5b:a1:3b:94 dst_mac 02:ea:d6:91:02:da src_ip 106.167.96.122 dst_ip 40.176.115.140 ip_proto udp src_port 24352 dst_port 9567 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10922 flower src_mac 02:78:cd:22:5a:5a dst_mac 02:9f:5a:eb:0b:35 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10923 flower src_mac 02:d6:5c:5d:08:ec dst_mac 02:ac:e1:ec:9a:ec action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10924 flower src_mac 02:9f:fa:1d:e3:1f dst_mac 02:8f:a6:38:d2:3c action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10925 flower src_mac 02:ae:1b:3c:c0:96 dst_mac 02:be:1f:e7:22:49 vlan_id 2988 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10926 flower src_mac 02:00:b9:57:bb:e2 dst_mac 02:a7:7b:46:1a:f3 vlan_id 2552 vlan_ethtype 0x0800 src_ip 88.37.114.103 dst_ip 82.230.48.4 action drop && tc filter add dev swp1 ingress protocol ip pref 10927 flower src_mac 02:97:55:57:55:ec dst_mac 02:51:1c:34:3c:2b src_ip 61.241.156.225 dst_ip 108.249.3.1 ip_proto udp src_port 60161 dst_port 44843 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10928 flower src_mac 02:05:65:cb:23:d8 dst_mac 02:e7:1b:e5:fd:05 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10929 flower src_mac 02:34:41:15:20:11 dst_mac 02:70:a9:ac:51:c4 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10930 flower src_mac 02:a3:f5:ac:e4:1b dst_mac 02:dd:c4:b2:34:a7 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10931 flower src_mac 02:e4:b3:c9:b2:e1 dst_mac 02:32:2d:87:2d:6a vlan_id 2333 vlan_ethtype ip src_ip 15.74.116.9 dst_ip 20.217.49.162 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10932 flower src_mac 02:81:01:dc:dd:6b dst_mac 02:1a:21:57:90:f7 vlan_id 355 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10933 flower src_mac 02:65:af:42:f2:f3 dst_mac 02:a3:4a:32:26:92 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10934 flower src_mac 02:a0:26:d9:8c:7e dst_mac 02:67:33:1a:57:d6 vlan_id 1086 vlan_ethtype ipv4 src_ip 18.91.234.96 dst_ip 57.229.182.37 ip_proto udp src_port 46233 dst_port 42401 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10935 flower src_mac 02:9d:4d:14:ba:74 dst_mac 02:e9:c3:b6:79:21 src_ip 122.26.196.211 dst_ip 88.66.250.124 ip_proto udp src_port 21405 dst_port 29460 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10936 flower src_mac 02:56:6d:fd:52:df dst_mac 02:44:87:11:88:65 vlan_id 661 vlan_ethtype ip src_ip 50.38.229.68 dst_ip 53.71.213.249 ip_proto tcp src_port 45927 dst_port 63555 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10937 flower src_mac 02:5a:e4:b1:6b:88 dst_mac 02:eb:7a:9b:b7:2d vlan_id 3839 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10938 flower src_mac 02:d2:58:85:1e:97 dst_mac 02:15:69:a4:8c:c2 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10939 flower src_mac 02:d3:cc:91:7c:53 dst_mac 02:b7:f9:ed:47:af vlan_id 929 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10940 flower src_mac 02:d7:80:c2:25:c0 dst_mac 02:64:f4:01:75:f3 vlan_id 1048 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10941 flower src_mac 02:25:8e:cd:ed:de dst_mac 02:8e:c2:ec:75:e9 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10942 flower src_mac 02:e1:29:78:ab:8d dst_mac 02:a0:28:0e:2d:6c vlan_id 659 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10943 flower src_mac 02:15:de:a3:bd:ee dst_mac 02:3a:ca:d5:28:03 src_ip 62.79.139.31 dst_ip 79.84.138.70 ip_proto udp src_port 62074 dst_port 12844 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10944 flower src_mac 02:02:3c:68:2d:cf dst_mac 02:2e:00:33:92:a1 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10945 flower src_mac 02:1b:dc:cd:37:ef dst_mac 02:81:1f:9e:de:c4 vlan_id 3727 vlan_ethtype ip src_ip 72.106.164.186 dst_ip 115.226.167.58 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10946 flower src_mac 02:51:a1:c9:af:72 dst_mac 02:fc:41:38:76:d0 src_ip 40.229.34.213 dst_ip 68.126.148.49 ip_proto tcp src_port 40657 dst_port 59781 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10947 flower src_mac 02:6e:58:c8:ac:b0 dst_mac 02:dd:77:f7:45:25 vlan_id 2573 vlan_ethtype ip src_ip 25.115.183.43 dst_ip 20.157.21.28 ip_proto udp src_port 21954 dst_port 12959 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10948 flower src_mac 02:cc:c8:af:53:21 dst_mac 02:fe:ed:f1:3c:b1 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10949 flower src_mac 02:35:03:be:e0:ce dst_mac 02:f8:69:a7:78:9b vlan_id 1662 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ip pref 10950 flower src_mac 02:2e:75:77:78:dd dst_mac 02:5f:36:27:ca:fe src_ip 111.14.109.130 dst_ip 55.18.111.241 ip_proto icmp code 164 type 18 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10951 flower src_mac 02:76:eb:ba:52:cf dst_mac 02:81:6e:5b:48:14 action drop && tc filter add dev swp1 ingress protocol ip pref 10952 flower src_mac 02:22:b5:14:1d:83 dst_mac 02:6f:29:28:d4:53 src_ip 61.175.43.28 dst_ip 54.20.190.147 ip_proto udp src_port 18641 dst_port 28204 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10953 flower src_mac 02:3b:e3:d5:23:ff dst_mac 02:64:7b:7c:1d:69 vlan_id 1953 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10954 flower src_mac 02:27:49:74:e3:b1 dst_mac 02:a4:3f:e2:d5:f8 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10955 flower src_mac 02:8d:d5:53:f5:37 dst_mac 02:e8:9c:b4:9e:a7 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10956 flower src_mac 02:70:48:79:33:79 dst_mac 02:b1:47:2b:31:59 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10957 flower src_mac 02:f4:63:a8:94:54 dst_mac 02:be:62:85:a5:e3 src_ip 59.154.76.66 dst_ip 29.91.37.19 ip_proto tcp src_port 26834 dst_port 21820 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10958 flower src_mac 02:60:68:e1:6d:c5 dst_mac 02:2e:66:a1:c8:91 vlan_id 3992 vlan_ethtype ip src_ip 36.246.10.110 dst_ip 56.87.213.158 ip_proto udp src_port 18437 dst_port 3522 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10959 flower src_mac 02:ef:df:48:9e:55 dst_mac 02:b1:a0:e2:12:30 src_ip 42.20.13.214 dst_ip 35.219.220.152 ip_proto udp src_port 45617 dst_port 18935 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10960 flower src_mac 02:2f:b7:2e:b2:b5 dst_mac 02:4a:48:92:b2:77 vlan_id 117 vlan_ethtype 0x0800 src_ip 102.58.179.230 dst_ip 27.117.248.176 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10961 flower src_mac 02:60:be:fe:60:44 dst_mac 02:37:5c:d4:da:0b vlan_id 1783 vlan_ethtype ip src_ip 119.40.63.238 dst_ip 96.51.112.142 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10962 flower src_mac 02:28:5b:34:6a:dc dst_mac 02:2a:73:64:22:d1 src_ip 107.16.104.67 dst_ip 112.62.192.167 ip_proto icmp code 4 type 12 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10963 flower src_mac 02:69:4a:a6:5d:5a dst_mac 02:31:13:a1:27:ce vlan_id 3211 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10964 flower src_mac 02:84:7b:29:af:c6 dst_mac 02:4b:3c:19:64:4e vlan_id 3301 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10965 flower src_mac 02:32:f3:ed:b0:89 dst_mac 02:cb:d9:5a:8e:2a vlan_id 29 vlan_ethtype ipv4 src_ip 33.198.168.159 dst_ip 46.227.127.244 ip_proto tcp src_port 50831 dst_port 19130 action drop && tc filter add dev swp1 ingress protocol ip pref 10966 flower src_mac 02:7e:c4:81:f7:e6 dst_mac 02:a5:e7:6c:e1:6b src_ip 121.111.64.151 dst_ip 80.224.91.38 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10967 flower src_mac 02:c7:d4:d7:3d:e0 dst_mac 02:fb:7f:31:4a:24 src_ip 86.103.2.132 dst_ip 69.252.192.43 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10968 flower src_mac 02:c7:4f:c4:ef:65 dst_mac 02:02:f0:1c:fc:04 vlan_id 2174 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10969 flower src_mac 02:86:be:18:30:37 dst_mac 02:9b:b3:1e:95:a9 vlan_id 22 vlan_ethtype ip src_ip 36.107.104.108 dst_ip 26.178.119.179 ip_proto udp src_port 18564 dst_port 3300 action pass && tc filter add dev swp1 ingress protocol ip pref 10970 flower src_mac 02:88:7f:64:52:a4 dst_mac 02:e3:7b:97:9a:35 src_ip 35.43.97.185 dst_ip 13.172.136.61 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10971 flower src_mac 02:44:45:c7:05:88 dst_mac 02:49:96:87:1a:b1 src_ip 42.63.64.103 dst_ip 58.223.160.204 ip_proto tcp src_port 37504 dst_port 43268 action pass && tc filter add dev swp1 ingress protocol ip pref 10972 flower src_mac 02:de:bb:77:ff:56 dst_mac 02:8a:c9:c0:f6:32 src_ip 34.227.40.231 dst_ip 21.94.81.170 ip_proto icmp code 95 type 13 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10973 flower src_mac 02:ec:94:f9:a7:12 dst_mac 02:6f:f8:0d:87:15 vlan_id 1938 vlan_ethtype ipv4 src_ip 118.82.159.135 dst_ip 91.252.195.221 ip_proto udp src_port 6092 dst_port 9374 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10974 flower src_mac 02:f5:f4:46:34:a8 dst_mac 02:65:ca:13:a4:ae src_ip 73.178.242.152 dst_ip 30.82.113.45 ip_proto udp src_port 8444 dst_port 700 action drop && tc filter add dev swp1 ingress protocol ip pref 10975 flower src_mac 02:52:7a:2c:92:8c dst_mac 02:bb:26:82:55:da src_ip 64.71.182.56 dst_ip 122.211.237.80 ip_proto tcp src_port 50273 dst_port 24480 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10976 flower src_mac 02:9d:ba:9a:80:eb dst_mac 02:3f:40:40:d9:7e src_ip 104.12.27.182 dst_ip 82.133.242.47 ip_proto icmp code 97 type 3 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10977 flower src_mac 02:1a:1e:fe:2f:81 dst_mac 02:60:73:bc:e0:f3 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10978 flower src_mac 02:a4:61:90:38:4c dst_mac 02:93:80:c9:94:20 vlan_id 2565 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10979 flower src_mac 02:34:b4:eb:0f:50 dst_mac 02:b2:6c:7a:3d:21 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10980 flower src_mac 02:83:04:33:72:62 dst_mac 02:50:1e:bf:78:23 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10981 flower src_mac 02:0b:d2:e7:c5:25 dst_mac 02:53:70:b5:cc:8a vlan_id 417 vlan_ethtype ipv4 src_ip 54.218.228.131 dst_ip 65.174.233.75 ip_proto udp src_port 47729 dst_port 14113 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10982 flower src_mac 02:8a:8f:6a:24:82 dst_mac 02:78:a5:d8:ee:4f action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10983 flower src_mac 02:7f:c0:0e:f5:b7 dst_mac 02:58:93:81:76:d3 vlan_id 419 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10984 flower src_mac 02:f3:f7:61:50:44 dst_mac 02:3a:7f:08:18:6d vlan_id 397 vlan_ethtype ipv4 src_ip 121.223.155.245 dst_ip 75.213.54.8 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10985 flower src_mac 02:2f:f6:6c:1b:7f dst_mac 02:f3:cb:77:f9:86 vlan_id 3352 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10986 flower src_mac 02:c4:b0:d1:9c:b9 dst_mac 02:65:cc:53:f6:75 vlan_id 3828 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10987 flower src_mac 02:2f:a6:85:54:b7 dst_mac 02:29:98:d6:e7:e8 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10988 flower src_mac 02:ad:e2:7c:c6:fb dst_mac 02:8f:91:b4:3e:00 vlan_id 2174 vlan_ethtype 0x0800 src_ip 80.231.39.236 dst_ip 43.83.63.92 ip_proto udp src_port 63920 dst_port 21395 action pass && tc filter add dev swp1 ingress protocol ip pref 10989 flower src_mac 02:a7:4d:37:55:ae dst_mac 02:fb:33:3a:68:3e src_ip 123.97.55.233 dst_ip 51.105.146.189 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10990 flower src_mac 02:de:14:0d:10:47 dst_mac 02:b1:fb:79:ac:e9 vlan_id 3709 vlan_ethtype 0x0800 src_ip 23.198.47.58 dst_ip 43.13.117.226 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10991 flower src_mac 02:46:b5:31:7f:74 dst_mac 02:eb:b0:0f:0e:a3 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10992 flower src_mac 02:56:ab:78:37:54 dst_mac 02:8e:db:ee:4d:f3 src_ip 44.163.130.205 dst_ip 85.29.43.108 ip_proto tcp src_port 37497 dst_port 44824 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10993 flower src_mac 02:57:f7:ac:2c:5b dst_mac 02:27:91:03:e8:6e vlan_id 1836 vlan_ethtype ip src_ip 18.70.133.193 dst_ip 15.155.17.187 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10994 flower src_mac 02:1a:7c:40:9f:b1 dst_mac 02:2e:98:2b:dc:61 vlan_id 181 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10995 flower src_mac 02:ff:48:4a:5a:91 dst_mac 02:29:95:7f:31:e9 vlan_id 108 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10996 flower src_mac 02:0c:35:7f:22:33 dst_mac 02:86:02:6f:7c:cd vlan_id 1919 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10997 flower src_mac 02:45:e7:ea:a8:f5 dst_mac 02:99:42:71:33:b8 vlan_id 274 vlan_ethtype 0x0800 src_ip 62.65.53.135 dst_ip 11.188.88.149 ip_proto tcp src_port 25191 dst_port 43359 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10998 flower src_mac 02:f2:13:a2:28:c4 dst_mac 02:fc:0b:24:90:c1 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10999 flower src_mac 02:1c:53:35:e9:51 dst_mac 02:3a:7f:3c:4f:83 vlan_id 3699 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11000 flower src_mac 02:9a:18:dd:4e:64 dst_mac 02:eb:cb:89:6a:25 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11001 flower src_mac 02:09:57:77:7f:73 dst_mac 02:37:33:5c:e8:6f action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11002 flower src_mac 02:91:6a:e9:bb:55 dst_mac 02:b3:75:e1:bf:75 vlan_id 1887 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11003 flower src_mac 02:61:c4:49:19:ba dst_mac 02:cd:a6:77:1a:ab vlan_id 967 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11004 flower src_mac 02:63:23:4d:44:36 dst_mac 02:20:1a:b5:74:55 vlan_id 3440 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11005 flower src_mac 02:84:56:aa:7b:ec dst_mac 02:79:41:50:29:d4 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11006 flower src_mac 02:10:d9:0c:67:98 dst_mac 02:46:fe:5c:c2:50 src_ip 117.157.176.108 dst_ip 12.4.228.141 ip_proto tcp src_port 40037 dst_port 37958 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11007 flower src_mac 02:85:73:55:59:05 dst_mac 02:2e:c1:32:34:3a vlan_id 2533 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11008 flower src_mac 02:18:46:73:3e:b5 dst_mac 02:bd:5f:17:f4:42 src_ip 62.99.231.142 dst_ip 38.19.218.5 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11009 flower src_mac 02:f5:cc:ef:8a:e3 dst_mac 02:a5:c5:88:2f:e0 vlan_id 95 vlan_ethtype ipv4 src_ip 54.14.60.5 dst_ip 23.111.95.7 ip_proto tcp src_port 55962 dst_port 57705 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11010 flower src_mac 02:d3:4f:fc:96:8d dst_mac 02:8f:29:29:d2:fe vlan_id 2266 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11011 flower src_mac 02:fa:86:19:e2:8c dst_mac 02:ff:89:b5:18:8a src_ip 19.48.253.231 dst_ip 44.242.160.105 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11012 flower src_mac 02:30:34:e8:e1:ff dst_mac 02:1e:67:79:dc:bf vlan_id 2898 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11013 flower src_mac 02:c0:a4:c9:fe:c3 dst_mac 02:1c:22:78:3e:79 src_ip 90.212.15.233 dst_ip 89.25.218.223 ip_proto icmp code 200 type 15 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11014 flower src_mac 02:e7:e7:ab:74:c9 dst_mac 02:59:27:bb:0c:0c src_ip 98.223.116.153 dst_ip 87.144.15.45 ip_proto icmp code 59 type 16 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11015 flower src_mac 02:cd:a3:58:70:86 dst_mac 02:12:4e:23:1f:f4 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11016 flower src_mac 02:e6:96:8e:b1:5f dst_mac 02:a8:d1:a4:b0:e9 src_ip 63.179.118.153 dst_ip 38.83.65.44 ip_proto tcp src_port 48867 dst_port 63813 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11017 flower src_mac 02:cd:be:62:36:20 dst_mac 02:18:99:59:85:10 vlan_id 2681 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11018 flower src_mac 02:c7:ce:93:f2:26 dst_mac 02:df:e5:11:15:ff action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11019 flower src_mac 02:a7:4b:09:51:7b dst_mac 02:b9:66:d0:8c:23 vlan_id 3737 vlan_ethtype ip src_ip 62.244.214.87 dst_ip 88.14.218.212 ip_proto tcp src_port 49466 dst_port 54766 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11020 flower src_mac 02:ea:59:33:c4:6c dst_mac 02:6c:8c:df:7a:eb action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11021 flower src_mac 02:df:39:46:18:a1 dst_mac 02:1a:7f:33:1c:e6 vlan_id 1867 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11022 flower src_mac 02:82:e2:4d:f3:ff dst_mac 02:34:ac:3f:21:56 vlan_id 3065 vlan_ethtype ip src_ip 94.0.119.156 dst_ip 46.146.246.14 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11023 flower src_mac 02:8b:bb:12:54:28 dst_mac 02:ef:ac:4c:03:e8 vlan_id 2402 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11024 flower src_mac 02:71:c3:a4:aa:5a dst_mac 02:d4:74:4b:b3:9b action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11025 flower src_mac 02:f0:d6:1c:56:4e dst_mac 02:f7:13:90:a5:18 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11026 flower src_mac 02:d5:01:a8:c9:99 dst_mac 02:60:c8:84:35:32 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11027 flower src_mac 02:81:84:c7:59:18 dst_mac 02:3a:9a:07:01:8a action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11028 flower src_mac 02:89:e2:00:e7:5c dst_mac 02:ea:6d:c8:d4:36 src_ip 91.11.2.103 dst_ip 83.92.138.182 ip_proto udp src_port 53093 dst_port 20364 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11029 flower src_mac 02:f8:3b:a6:37:75 dst_mac 02:a9:be:b8:de:e2 vlan_id 1619 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11030 flower src_mac 02:52:72:c2:b2:a8 dst_mac 02:bf:da:14:22:f6 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11031 flower src_mac 02:ae:00:26:63:d8 dst_mac 02:f5:de:3f:30:26 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11032 flower src_mac 02:89:50:ec:b8:51 dst_mac 02:1d:83:5b:18:71 vlan_id 1508 vlan_ethtype 0x0800 src_ip 45.245.63.104 dst_ip 110.82.19.124 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11033 flower src_mac 02:1c:87:8e:af:39 dst_mac 02:68:40:62:55:e1 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11034 flower src_mac 02:d4:b6:a8:22:71 dst_mac 02:2c:78:d4:1f:93 vlan_id 700 vlan_ethtype 0x0800 src_ip 73.21.143.95 dst_ip 81.160.174.163 ip_proto udp src_port 27986 dst_port 37467 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11035 flower src_mac 02:a2:5a:85:0c:ce dst_mac 02:2b:d9:67:b5:72 vlan_id 2752 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ip pref 11036 flower src_mac 02:69:3f:ea:c1:72 dst_mac 02:4a:52:6b:5e:c9 src_ip 113.94.169.227 dst_ip 52.162.109.6 ip_proto icmp code 182 type 17 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11037 flower src_mac 02:2a:8c:85:15:a0 dst_mac 02:3d:57:dd:6d:8f action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11038 flower src_mac 02:91:0a:db:0e:5e dst_mac 02:ed:fe:8d:3a:ff action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11039 flower src_mac 02:d9:95:cd:9c:c7 dst_mac 02:fe:64:d6:60:b0 action drop && tc filter add dev swp1 ingress protocol ip pref 11040 flower src_mac 02:a7:c2:44:13:3d dst_mac 02:73:7c:cb:8d:4a src_ip 121.23.12.8 dst_ip 71.83.7.104 ip_proto tcp src_port 49104 dst_port 27722 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11041 flower src_mac 02:28:81:6b:2a:44 dst_mac 02:26:bc:41:ab:fc vlan_id 1942 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11042 flower src_mac 02:5c:e1:01:dd:1c dst_mac 02:12:a8:db:39:df vlan_id 1357 vlan_ethtype 0x0800 src_ip 75.223.96.124 dst_ip 106.196.144.38 action drop && tc filter add dev swp1 ingress protocol ip pref 11043 flower src_mac 02:6b:8b:08:a5:cf dst_mac 02:33:44:b1:49:74 src_ip 89.186.215.231 dst_ip 32.206.65.89 ip_proto icmp code 94 type 0 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11044 flower src_mac 02:7f:17:bc:8f:51 dst_mac 02:9f:0e:13:84:b5 vlan_id 3804 vlan_ethtype ipv4 src_ip 124.61.115.168 dst_ip 68.159.22.230 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11045 flower src_mac 02:15:b4:72:18:0d dst_mac 02:d7:0f:60:1b:33 vlan_id 364 vlan_ethtype 0x0800 src_ip 54.76.72.22 dst_ip 126.79.136.207 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11046 flower src_mac 02:b7:de:4e:e7:10 dst_mac 02:0f:ff:19:82:ef vlan_id 3888 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11047 flower src_mac 02:4c:9d:02:1b:d9 dst_mac 02:53:1f:1e:c1:cc vlan_id 3335 vlan_ethtype ip src_ip 24.56.195.183 dst_ip 14.140.119.198 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11048 flower src_mac 02:e3:bb:ab:66:b7 dst_mac 02:9f:71:e3:56:d2 vlan_id 3141 vlan_ethtype ipv4 src_ip 22.244.26.67 dst_ip 22.86.43.145 action trap && tc filter add dev swp1 ingress protocol ip pref 11049 flower src_mac 02:01:90:80:cb:a3 dst_mac 02:d6:ba:65:9f:af src_ip 16.51.84.169 dst_ip 86.6.92.14 ip_proto udp src_port 5766 dst_port 48923 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11050 flower src_mac 02:95:a4:2a:23:6f dst_mac 02:a7:0a:d6:4f:2d vlan_id 1512 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11051 flower src_mac 02:eb:a7:64:33:12 dst_mac 02:c5:fc:66:ba:58 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11052 flower src_mac 02:f6:1c:ef:e9:37 dst_mac 02:f4:49:f6:fa:28 src_ip 38.142.188.148 dst_ip 124.144.236.182 ip_proto icmp code 189 type 5 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11053 flower src_mac 02:e7:2d:09:52:a1 dst_mac 02:16:f7:15:9f:16 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11054 flower src_mac 02:d3:57:9f:72:b2 dst_mac 02:60:8f:93:02:ed action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11055 flower src_mac 02:e9:d7:c2:e7:62 dst_mac 02:e9:ea:1d:67:36 vlan_id 3550 vlan_ethtype 0x0800 src_ip 43.130.182.224 dst_ip 68.250.36.55 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11056 flower src_mac 02:0e:72:14:1a:3b dst_mac 02:08:1c:74:0d:62 vlan_id 2364 vlan_ethtype ip src_ip 21.172.73.236 dst_ip 11.1.97.230 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11057 flower src_mac 02:79:ea:e8:e0:e9 dst_mac 02:f7:56:3f:44:6b src_ip 52.190.125.41 dst_ip 23.110.183.147 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11058 flower src_mac 02:01:5d:32:5f:70 dst_mac 02:0a:6a:b8:bb:9f src_ip 39.152.202.131 dst_ip 82.205.48.75 ip_proto icmp code 104 type 18 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11059 flower src_mac 02:09:c6:aa:87:18 dst_mac 02:2f:67:85:be:b7 src_ip 24.111.74.171 dst_ip 66.161.31.35 ip_proto tcp src_port 8578 dst_port 33016 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11060 flower src_mac 02:4a:c4:52:7b:a3 dst_mac 02:5d:38:91:73:30 src_ip 101.74.148.215 dst_ip 41.66.247.139 ip_proto icmp code 248 type 8 action pass && tc filter add dev swp1 ingress protocol ip pref 11061 flower src_mac 02:63:16:0d:fd:4f dst_mac 02:2a:ae:cb:29:d4 src_ip 103.101.105.89 dst_ip 55.0.182.6 ip_proto icmp code 172 type 15 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11062 flower src_mac 02:87:5b:65:ab:4f dst_mac 02:fa:f1:0d:a4:69 vlan_id 845 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11063 flower src_mac 02:27:af:19:19:4b dst_mac 02:86:a0:7e:f4:ed action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11064 flower src_mac 02:cb:d9:a4:77:c7 dst_mac 02:d7:23:2f:70:62 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11065 flower src_mac 02:47:44:02:8a:30 dst_mac 02:72:9d:94:5a:03 vlan_id 2585 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11066 flower src_mac 02:f7:b0:d0:ae:8e dst_mac 02:d6:ff:ed:b4:fa vlan_id 526 vlan_ethtype 0x0800 src_ip 17.60.110.43 dst_ip 119.246.157.37 ip_proto udp src_port 49329 dst_port 9536 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11067 flower src_mac 02:c6:0d:54:17:22 dst_mac 02:74:f1:82:1b:0a vlan_id 1814 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11068 flower src_mac 02:2c:b9:04:92:bc dst_mac 02:37:ab:67:5b:29 vlan_id 326 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11069 flower src_mac 02:98:a4:25:7f:de dst_mac 02:6d:6a:13:0f:45 vlan_id 486 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11070 flower src_mac 02:3a:13:9d:40:d2 dst_mac 02:76:0f:19:7d:8d vlan_id 1498 vlan_ethtype ipv4 src_ip 79.15.3.17 dst_ip 100.99.105.99 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11071 flower src_mac 02:81:3b:b0:50:17 dst_mac 02:8e:43:70:2c:5b action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11072 flower src_mac 02:5a:35:48:6b:72 dst_mac 02:62:68:89:5d:5e src_ip 42.0.17.224 dst_ip 65.208.124.179 ip_proto udp src_port 55657 dst_port 56926 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11073 flower src_mac 02:93:7f:a6:de:2d dst_mac 02:a0:90:6c:cd:70 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11074 flower src_mac 02:66:ca:59:e4:af dst_mac 02:b6:64:f8:39:5e action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11075 flower src_mac 02:2c:8b:ef:30:b5 dst_mac 02:73:37:51:97:52 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11076 flower src_mac 02:a6:8e:39:a6:1c dst_mac 02:e8:55:33:29:32 src_ip 83.57.2.228 dst_ip 89.213.104.92 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11077 flower src_mac 02:df:98:01:81:a4 dst_mac 02:43:c7:3c:b5:ae vlan_id 2879 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11078 flower src_mac 02:c9:08:0c:52:9b dst_mac 02:58:d9:e6:6d:37 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11079 flower src_mac 02:82:25:cd:c1:14 dst_mac 02:c9:27:be:e0:7b action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11080 flower src_mac 02:54:86:aa:38:1b dst_mac 02:40:7d:07:d0:e5 vlan_id 1641 vlan_ethtype ipv4 src_ip 65.236.10.116 dst_ip 88.197.177.193 ip_proto tcp src_port 33500 dst_port 9664 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11081 flower src_mac 02:fa:08:e9:e9:3b dst_mac 02:7d:1d:8f:d9:a7 src_ip 95.155.29.58 dst_ip 45.199.114.249 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11082 flower src_mac 02:cd:fc:02:03:81 dst_mac 02:d0:8a:58:8e:a9 src_ip 21.78.251.101 dst_ip 114.206.150.81 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11083 flower src_mac 02:82:c1:9d:09:10 dst_mac 02:8d:f2:8d:4e:a2 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11084 flower src_mac 02:b0:32:c0:b6:3e dst_mac 02:17:8b:d7:bf:f7 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11085 flower src_mac 02:17:30:e3:4e:8e dst_mac 02:ee:aa:52:e4:2c action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11086 flower src_mac 02:79:e6:57:d5:7e dst_mac 02:cd:3f:55:98:36 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11087 flower src_mac 02:38:d1:a3:97:40 dst_mac 02:1b:79:9a:07:e0 vlan_id 3925 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ip pref 11088 flower src_mac 02:2a:fe:07:f6:f0 dst_mac 02:4d:fe:85:39:9a src_ip 73.134.93.196 dst_ip 107.17.199.24 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11089 flower src_mac 02:22:72:c1:88:12 dst_mac 02:d2:b3:06:81:94 vlan_id 450 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11090 flower src_mac 02:62:18:0d:b8:aa dst_mac 02:f5:53:2c:f3:f4 vlan_id 3220 vlan_ethtype ip src_ip 74.213.201.168 dst_ip 12.185.53.82 ip_proto tcp src_port 18372 dst_port 62000 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11091 flower src_mac 02:47:46:4a:3a:3c dst_mac 02:08:65:73:b7:b9 vlan_id 911 vlan_ethtype 0x0800 src_ip 80.213.177.107 dst_ip 89.25.112.195 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11092 flower src_mac 02:12:8c:8d:90:17 dst_mac 02:26:2a:9b:eb:51 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11093 flower src_mac 02:56:2f:84:a7:80 dst_mac 02:78:ba:7d:37:3e action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11094 flower src_mac 02:d5:25:ae:ec:14 dst_mac 02:02:be:2e:88:86 src_ip 61.213.98.206 dst_ip 11.212.52.56 ip_proto udp src_port 56689 dst_port 14184 action trap && tc filter add dev swp1 ingress protocol ip pref 11095 flower src_mac 02:62:c9:d6:d2:fd dst_mac 02:cf:60:2d:c0:39 src_ip 34.185.223.115 dst_ip 11.205.36.148 ip_proto udp src_port 30951 dst_port 7740 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11096 flower src_mac 02:50:58:fb:1f:74 dst_mac 02:52:83:26:f6:51 vlan_id 3792 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11097 flower src_mac 02:ec:d1:bf:40:5b dst_mac 02:62:51:ea:ab:ae src_ip 29.243.41.172 dst_ip 89.90.103.57 ip_proto tcp src_port 57947 dst_port 9232 action pass && tc filter add dev swp1 ingress protocol ip pref 11098 flower src_mac 02:e2:52:ff:88:cb dst_mac 02:4e:5f:f8:9f:9e src_ip 49.201.200.211 dst_ip 50.101.59.16 ip_proto icmp code 12 type 13 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11099 flower src_mac 02:80:42:bb:79:6b dst_mac 02:f2:db:ec:1c:ff action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11100 flower src_mac 02:df:be:b5:16:b7 dst_mac 02:95:41:2a:46:13 vlan_id 1957 vlan_ethtype ipv4 src_ip 47.88.174.45 dst_ip 51.202.173.235 action trap && tc filter add dev swp1 ingress protocol ip pref 11101 flower src_mac 02:2b:61:97:8d:0c dst_mac 02:f4:cc:9f:0d:a8 src_ip 55.75.238.110 dst_ip 102.137.197.127 ip_proto icmp code 191 type 4 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11102 flower src_mac 02:60:65:7e:00:9d dst_mac 02:ea:55:f0:64:b3 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11103 flower src_mac 02:5d:12:1c:20:cc dst_mac 02:2b:45:b9:cd:4b vlan_id 1725 vlan_ethtype ipv4 src_ip 114.109.82.198 dst_ip 19.249.106.35 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11104 flower src_mac 02:ef:38:4d:b8:97 dst_mac 02:95:9d:6d:eb:35 vlan_id 426 vlan_ethtype ip src_ip 99.9.87.147 dst_ip 85.126.54.60 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11105 flower src_mac 02:0b:b0:39:b2:7d dst_mac 02:ee:7a:a5:75:fa action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11106 flower src_mac 02:6b:19:de:b4:22 dst_mac 02:db:75:34:a8:e8 vlan_id 3686 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11107 flower src_mac 02:b6:fb:a1:11:e9 dst_mac 02:a7:b7:78:f7:af vlan_id 427 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11108 flower src_mac 02:67:b8:56:ed:9d dst_mac 02:11:ea:40:07:fd vlan_id 3900 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11109 flower src_mac 02:c2:e2:02:25:d4 dst_mac 02:58:15:44:0c:44 action pass && tc filter add dev swp1 ingress protocol ip pref 11110 flower src_mac 02:af:30:c4:bb:e8 dst_mac 02:05:09:44:14:bb src_ip 80.58.193.50 dst_ip 25.98.24.70 ip_proto tcp src_port 19999 dst_port 54213 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11111 flower src_mac 02:d0:8f:c8:3a:a9 dst_mac 02:6f:49:a0:3d:96 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11112 flower src_mac 02:a1:a3:f9:07:84 dst_mac 02:53:d1:44:c3:e3 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11113 flower src_mac 02:b3:13:80:35:56 dst_mac 02:30:3d:55:c1:60 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11114 flower src_mac 02:9c:ff:42:a7:18 dst_mac 02:09:cf:f3:ba:d4 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11115 flower src_mac 02:05:71:8c:4e:64 dst_mac 02:1d:8f:97:f3:c6 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11116 flower src_mac 02:8d:32:3c:63:02 dst_mac 02:5d:83:a1:02:39 vlan_id 561 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11117 flower src_mac 02:5f:9c:f5:80:93 dst_mac 02:e7:7a:de:9d:ed vlan_id 3840 vlan_ethtype ip src_ip 105.80.57.100 dst_ip 80.134.213.249 action pass && tc filter add dev swp1 ingress protocol ip pref 11118 flower src_mac 02:ab:0f:a5:73:6a dst_mac 02:73:b6:f8:93:2a src_ip 77.30.149.90 dst_ip 64.249.12.195 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11119 flower src_mac 02:72:94:db:84:be dst_mac 02:7a:34:78:37:22 vlan_id 1369 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11120 flower src_mac 02:62:a4:3b:8d:e0 dst_mac 02:bc:51:70:c9:df action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11121 flower src_mac 02:21:a7:39:90:98 dst_mac 02:f0:bb:a2:3e:d6 vlan_id 705 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11122 flower src_mac 02:19:97:66:77:f3 dst_mac 02:50:d3:cb:a8:d0 src_ip 97.141.163.218 dst_ip 61.64.130.82 ip_proto tcp src_port 21931 dst_port 50409 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11123 flower src_mac 02:67:90:d2:d7:43 dst_mac 02:d8:98:e1:55:fc vlan_id 3123 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11124 flower src_mac 02:09:f1:02:3d:8c dst_mac 02:57:d1:7f:c4:49 src_ip 55.80.81.224 dst_ip 99.203.98.131 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11125 flower src_mac 02:ca:49:a3:86:8b dst_mac 02:6b:ef:94:71:73 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11126 flower src_mac 02:e4:ab:68:1d:ae dst_mac 02:0a:35:40:62:66 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11127 flower src_mac 02:de:fa:16:75:71 dst_mac 02:41:8a:b5:e3:88 vlan_id 1800 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11128 flower src_mac 02:e1:29:6a:f4:a0 dst_mac 02:b5:59:be:c7:de src_ip 91.251.153.21 dst_ip 115.20.246.47 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11129 flower src_mac 02:dc:e4:7c:a9:e7 dst_mac 02:85:62:29:2e:a7 vlan_id 3898 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11130 flower src_mac 02:b4:29:d2:7e:83 dst_mac 02:e1:56:02:d7:f4 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11131 flower src_mac 02:9a:3b:ad:ca:05 dst_mac 02:9f:14:21:49:3e action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11132 flower src_mac 02:bc:53:8e:73:b0 dst_mac 02:5e:fc:f9:bb:4b vlan_id 90 vlan_ethtype ipv4 src_ip 56.43.196.105 dst_ip 100.119.251.107 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11133 flower src_mac 02:55:22:ef:6c:e4 dst_mac 02:29:7b:45:60:7c src_ip 62.88.163.189 dst_ip 74.43.165.86 ip_proto tcp src_port 7100 dst_port 2932 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11134 flower src_mac 02:7d:83:8e:53:d7 dst_mac 02:83:d9:e9:00:c9 src_ip 40.188.73.102 dst_ip 82.53.118.128 ip_proto tcp src_port 12423 dst_port 52548 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11135 flower src_mac 02:6c:b4:c5:2a:f7 dst_mac 02:0b:89:17:5d:ef src_ip 13.130.177.87 dst_ip 70.246.119.135 ip_proto tcp src_port 34808 dst_port 6038 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11136 flower src_mac 02:1c:19:a1:c1:df dst_mac 02:ed:6f:70:44:cf vlan_id 867 vlan_ethtype ipv4 src_ip 71.105.196.142 dst_ip 33.100.114.183 ip_proto tcp src_port 42287 dst_port 61796 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11137 flower src_mac 02:aa:71:bc:d3:f6 dst_mac 02:7c:67:59:d6:0f src_ip 67.25.6.52 dst_ip 77.31.142.100 ip_proto tcp src_port 23750 dst_port 14507 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11138 flower src_mac 02:7b:06:0a:52:e2 dst_mac 02:bf:64:7f:86:75 vlan_id 2184 vlan_ethtype ipv4 src_ip 104.65.45.3 dst_ip 41.227.70.230 ip_proto tcp src_port 54103 dst_port 63563 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11139 flower src_mac 02:35:8b:dd:c9:f9 dst_mac 02:b3:bd:00:89:e4 vlan_id 551 vlan_ethtype ipv4 src_ip 114.225.221.77 dst_ip 59.251.39.138 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11140 flower src_mac 02:1f:df:30:65:11 dst_mac 02:b4:29:3a:cd:6a vlan_id 838 vlan_ethtype ip src_ip 62.79.244.238 dst_ip 82.129.201.97 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11141 flower src_mac 02:b2:01:61:39:b9 dst_mac 02:84:e3:8e:6d:fb vlan_id 3905 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11142 flower src_mac 02:10:2a:50:9b:c1 dst_mac 02:59:0a:dc:69:ae action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11143 flower src_mac 02:73:6a:ba:a3:1f dst_mac 02:53:e8:67:37:96 vlan_id 3534 vlan_ethtype ipv4 src_ip 48.172.79.70 dst_ip 53.190.75.205 ip_proto tcp src_port 36123 dst_port 48410 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11144 flower src_mac 02:1b:f8:57:4e:3c dst_mac 02:5b:ec:86:dc:82 vlan_id 4006 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11145 flower src_mac 02:9b:30:d0:9a:bf dst_mac 02:bf:20:f4:44:85 src_ip 44.6.217.125 dst_ip 89.17.147.95 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11146 flower src_mac 02:c2:21:17:aa:b2 dst_mac 02:e0:5b:05:33:92 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11147 flower src_mac 02:c7:10:d9:08:4f dst_mac 02:db:7e:7d:f5:2c action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11148 flower src_mac 02:1c:0e:e2:94:5c dst_mac 02:2f:e0:0c:65:c1 vlan_id 3784 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11149 flower src_mac 02:ba:0f:55:ac:a4 dst_mac 02:a8:7d:f5:7c:17 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11150 flower src_mac 02:f6:17:5a:af:04 dst_mac 02:d1:b1:a3:97:56 vlan_id 3866 vlan_ethtype 0x0800 src_ip 35.165.131.15 dst_ip 27.218.74.16 ip_proto tcp src_port 42157 dst_port 19527 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11151 flower src_mac 02:23:2c:c2:8e:0d dst_mac 02:64:79:5d:63:92 vlan_id 759 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11152 flower src_mac 02:28:9b:b6:48:47 dst_mac 02:e9:ca:74:d5:6f vlan_id 707 vlan_ethtype 0x0800 src_ip 50.220.54.132 dst_ip 83.94.217.66 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11153 flower src_mac 02:96:1a:9d:c7:cb dst_mac 02:8f:e2:7b:cb:5a vlan_id 212 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11154 flower src_mac 02:b7:6c:99:bd:c1 dst_mac 02:5f:5e:94:d3:3a src_ip 44.48.203.19 dst_ip 108.108.165.31 ip_proto tcp src_port 37259 dst_port 4314 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11155 flower src_mac 02:6a:82:ce:48:06 dst_mac 02:70:e6:87:79:9e vlan_id 2505 vlan_ethtype ipv4 src_ip 118.70.128.169 dst_ip 124.169.197.175 ip_proto tcp src_port 37062 dst_port 57682 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11156 flower src_mac 02:0e:87:64:44:1e dst_mac 02:89:0b:42:70:48 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11157 flower src_mac 02:c0:77:61:3b:ff dst_mac 02:5d:d6:3c:f3:94 src_ip 81.218.195.65 dst_ip 65.161.69.153 ip_proto udp src_port 29296 dst_port 6040 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11158 flower src_mac 02:c4:52:ee:b8:52 dst_mac 02:6e:01:18:d7:e4 vlan_id 192 vlan_ethtype ip src_ip 12.225.136.247 dst_ip 103.208.111.101 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11159 flower src_mac 02:54:cc:fb:b9:d1 dst_mac 02:f3:77:53:f8:f9 vlan_id 456 vlan_ethtype 0x0800 src_ip 46.41.76.2 dst_ip 27.29.147.2 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11160 flower src_mac 02:b3:fe:3b:30:8a dst_mac 02:b6:db:df:20:68 vlan_id 3367 vlan_ethtype ipv4 src_ip 11.230.178.66 dst_ip 82.207.222.176 ip_proto udp src_port 57857 dst_port 64148 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11161 flower src_mac 02:26:ca:34:16:04 dst_mac 02:c1:c4:8a:36:35 vlan_id 913 vlan_ethtype ipv4 src_ip 118.156.16.126 dst_ip 19.53.93.237 ip_proto udp src_port 23767 dst_port 17448 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11162 flower src_mac 02:cc:9f:c2:9c:93 dst_mac 02:9b:21:13:92:fc vlan_id 36 vlan_ethtype ipv4 src_ip 105.250.110.180 dst_ip 61.87.39.52 ip_proto tcp src_port 54528 dst_port 31044 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11163 flower src_mac 02:57:bb:27:41:a0 dst_mac 02:c0:e0:c9:29:b6 vlan_id 3588 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ip pref 11164 flower src_mac 02:f8:5d:c0:0e:4d dst_mac 02:23:0f:68:a5:0e src_ip 20.196.130.100 dst_ip 58.147.27.113 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11165 flower src_mac 02:14:d0:85:a3:30 dst_mac 02:c9:db:ce:26:b9 src_ip 114.220.235.229 dst_ip 68.202.217.48 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11166 flower src_mac 02:69:c9:7f:92:76 dst_mac 02:2f:c3:19:d3:7b vlan_id 312 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11167 flower src_mac 02:d7:53:14:d6:54 dst_mac 02:7b:53:f6:27:50 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11168 flower src_mac 02:d1:16:b9:ce:87 dst_mac 02:38:81:ba:63:ae vlan_id 3272 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ip pref 11169 flower src_mac 02:06:e2:43:7a:6d dst_mac 02:f5:cd:91:1f:a7 src_ip 111.71.75.146 dst_ip 82.35.243.109 ip_proto udp src_port 35047 dst_port 38595 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11170 flower src_mac 02:b9:d9:e5:fc:56 dst_mac 02:a7:50:70:2f:77 vlan_id 1931 vlan_ethtype ip src_ip 12.251.254.196 dst_ip 115.213.210.67 ip_proto udp src_port 18219 dst_port 33953 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11171 flower src_mac 02:31:4b:b5:0e:7b dst_mac 02:71:4f:73:e6:bc vlan_id 184 vlan_ethtype 0x0800 src_ip 105.54.39.43 dst_ip 80.122.13.58 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11172 flower src_mac 02:8f:66:ef:b4:1e dst_mac 02:d1:d4:a7:a5:c1 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11173 flower src_mac 02:ca:88:b4:5e:52 dst_mac 02:22:54:2f:80:fe vlan_id 3627 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11174 flower src_mac 02:1b:36:f3:b8:b6 dst_mac 02:e5:d2:bd:f6:e6 src_ip 73.33.121.124 dst_ip 64.165.221.48 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11175 flower src_mac 02:8d:11:67:9f:98 dst_mac 02:65:c1:40:8b:78 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11176 flower src_mac 02:35:82:3f:7f:9a dst_mac 02:e5:5e:b3:ad:5d vlan_id 324 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11177 flower src_mac 02:04:e0:d4:7a:37 dst_mac 02:e7:2a:9f:3d:f9 vlan_id 1529 vlan_ethtype 0x0800 src_ip 58.239.161.151 dst_ip 123.25.72.239 ip_proto udp src_port 12284 dst_port 10052 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11178 flower src_mac 02:c4:0d:f6:91:4f dst_mac 02:2e:d1:93:16:69 vlan_id 277 vlan_ethtype 0x0800 src_ip 97.103.187.92 dst_ip 55.90.68.139 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11179 flower src_mac 02:88:5e:16:0f:65 dst_mac 02:b7:26:4e:55:94 vlan_id 1626 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11180 flower src_mac 02:e7:b7:70:83:5c dst_mac 02:f9:bd:3e:d4:f1 vlan_id 2500 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11181 flower src_mac 02:22:46:8a:c0:57 dst_mac 02:7c:fe:69:ee:31 vlan_id 3604 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11182 flower src_mac 02:2e:e2:6f:76:04 dst_mac 02:c3:c9:c3:31:60 vlan_id 967 vlan_ethtype ip src_ip 89.125.58.226 dst_ip 98.233.110.78 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11183 flower src_mac 02:0d:53:65:72:72 dst_mac 02:e1:19:a3:9a:0c src_ip 111.79.161.31 dst_ip 76.55.229.95 ip_proto tcp src_port 56633 dst_port 6405 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11184 flower src_mac 02:45:e6:9f:b7:fa dst_mac 02:b1:66:bf:87:b2 vlan_id 1586 vlan_ethtype ipv4 src_ip 38.33.196.96 dst_ip 79.1.11.186 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11185 flower src_mac 02:6e:49:4f:7a:cc dst_mac 02:7e:35:13:ed:71 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11186 flower src_mac 02:3d:e2:01:a4:66 dst_mac 02:74:09:14:a3:56 src_ip 92.249.198.142 dst_ip 62.31.64.97 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11187 flower src_mac 02:d5:a7:07:30:7a dst_mac 02:a0:51:0e:b9:98 vlan_id 437 vlan_ethtype ip src_ip 28.29.198.72 dst_ip 56.218.130.61 ip_proto tcp src_port 42233 dst_port 10001 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11188 flower src_mac 02:0c:6b:11:c7:4e dst_mac 02:3d:05:ad:87:9e action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11189 flower src_mac 02:81:92:45:55:24 dst_mac 02:32:39:af:48:9b vlan_id 2851 vlan_ethtype ipv4 src_ip 107.132.4.76 dst_ip 66.186.228.4 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11190 flower src_mac 02:57:c0:47:6a:1a dst_mac 02:83:77:56:53:5f action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11191 flower src_mac 02:7c:e3:88:b5:7a dst_mac 02:c9:e6:e3:45:a6 vlan_id 1241 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11192 flower src_mac 02:be:f6:94:f7:70 dst_mac 02:10:c6:9a:a3:46 vlan_id 2798 vlan_ethtype 0x0800 src_ip 119.67.151.21 dst_ip 72.112.89.248 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11193 flower src_mac 02:b2:c6:d0:72:0a dst_mac 02:e8:70:91:40:4a src_ip 120.222.178.97 dst_ip 41.178.2.116 ip_proto icmp code 139 type 14 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11194 flower src_mac 02:d2:9e:da:13:01 dst_mac 02:cc:bd:0d:be:1d action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11195 flower src_mac 02:fb:3d:24:7c:df dst_mac 02:f6:bd:80:af:83 src_ip 79.34.148.161 dst_ip 66.29.64.237 ip_proto icmp code 228 type 14 action pass && tc filter add dev swp1 ingress protocol ip pref 11196 flower src_mac 02:b1:aa:8c:e1:d0 dst_mac 02:61:fa:14:08:56 src_ip 25.223.157.240 dst_ip 37.200.111.64 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11197 flower src_mac 02:02:c0:74:bb:6b dst_mac 02:e9:6f:35:2a:52 action trap && tc filter add dev swp1 ingress protocol ip pref 11198 flower src_mac 02:2e:77:3c:5a:2d dst_mac 02:00:12:1c:7d:c8 src_ip 117.17.242.96 dst_ip 19.93.36.75 ip_proto tcp src_port 60591 dst_port 9193 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11199 flower src_mac 02:2e:c7:a4:6e:55 dst_mac 02:8f:5f:17:fd:9a src_ip 107.183.10.230 dst_ip 87.231.37.238 ip_proto udp src_port 24680 dst_port 19149 action drop INFO asyncssh:logging.py:92 [conn=24, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x9100 pref 11200 flower src_mac 02:77:d8:1a:bf:f5 dst_mac 02:ac:d8:91:23:6b action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11201 flower src_mac 02:06:7c:04:0c:48 dst_mac 02:af:0c:16:b3:66 vlan_id 482 vlan_ethtype ipv4 src_ip 77.145.58.122 dst_ip 50.155.191.40 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11202 flower src_mac 02:ca:21:98:b0:1c dst_mac 02:93:e8:22:14:56 vlan_id 3333 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ip pref 11203 flower src_mac 02:90:b2:e3:13:cb dst_mac 02:19:ab:57:94:d7 src_ip 78.150.247.232 dst_ip 103.203.136.196 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11204 flower src_mac 02:ac:fd:da:4d:f3 dst_mac 02:55:5f:33:78:79 vlan_id 2205 vlan_ethtype 0x0800 src_ip 41.112.173.191 dst_ip 42.211.103.179 ip_proto tcp src_port 11619 dst_port 38978 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11205 flower src_mac 02:74:05:6f:02:b7 dst_mac 02:87:92:e9:45:95 vlan_id 2681 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11206 flower src_mac 02:58:c2:36:66:91 dst_mac 02:68:ac:b0:2a:41 src_ip 14.122.204.50 dst_ip 106.227.15.141 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11207 flower src_mac 02:a3:d2:10:8e:dc dst_mac 02:7a:26:c8:78:e8 vlan_id 1039 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol ip pref 11208 flower src_mac 02:af:a9:1a:c0:d6 dst_mac 02:34:46:6c:24:cc src_ip 124.251.218.88 dst_ip 51.205.222.87 ip_proto icmp code 73 type 8 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11209 flower src_mac 02:e4:60:8c:ee:7b dst_mac 02:85:b1:a7:72:e1 vlan_id 2708 vlan_ethtype ipv4 src_ip 108.189.71.81 dst_ip 59.99.90.147 ip_proto udp src_port 13340 dst_port 42804 action drop && tc filter add dev swp1 ingress protocol ip pref 11210 flower src_mac 02:66:16:f6:2d:39 dst_mac 02:5d:5d:e3:9d:c9 src_ip 109.109.117.107 dst_ip 14.187.141.41 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11211 flower src_mac 02:3c:02:9f:44:d9 dst_mac 02:e6:f9:a9:62:bc action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11212 flower src_mac 02:6a:db:c0:52:dd dst_mac 02:26:ee:41:64:67 vlan_id 3958 vlan_ethtype ipv4 src_ip 50.87.31.221 dst_ip 104.89.130.159 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11213 flower src_mac 02:66:d6:fb:26:a1 dst_mac 02:a5:6b:38:52:8f action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11214 flower src_mac 02:3b:7d:d4:21:a7 dst_mac 02:d2:a2:eb:9c:54 src_ip 66.184.33.196 dst_ip 93.130.52.111 ip_proto tcp src_port 9303 dst_port 43349 action drop && tc filter add dev swp1 ingress protocol ip pref 11215 flower src_mac 02:97:9f:e6:ba:b1 dst_mac 02:ea:69:78:82:e1 src_ip 46.100.211.211 dst_ip 94.165.243.226 ip_proto tcp src_port 63953 dst_port 490 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11216 flower src_mac 02:b8:06:25:8c:10 dst_mac 02:4a:c2:b3:6e:67 vlan_id 436 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11217 flower src_mac 02:63:f2:a1:c7:d0 dst_mac 02:f8:82:29:70:02 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11218 flower src_mac 02:8e:43:d4:5c:19 dst_mac 02:34:94:27:be:7e src_ip 114.217.205.200 dst_ip 48.212.68.205 ip_proto icmp code 232 type 16 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11219 flower src_mac 02:bc:ff:54:1d:f8 dst_mac 02:ae:e8:bc:a9:32 vlan_id 1230 vlan_ethtype ipv4 src_ip 114.135.136.217 dst_ip 89.140.157.228 ip_proto tcp src_port 59468 dst_port 15310 action trap && tc filter add dev swp1 ingress protocol ip pref 11220 flower src_mac 02:a5:54:ed:11:dd dst_mac 02:6c:7b:b4:22:14 src_ip 102.150.233.19 dst_ip 102.196.255.105 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11221 flower src_mac 02:01:38:6f:7e:3d dst_mac 02:c1:48:f7:a2:be action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11222 flower src_mac 02:61:55:83:b9:5d dst_mac 02:c2:c9:9d:94:ba src_ip 51.227.213.63 dst_ip 101.68.32.127 ip_proto icmp code 206 type 14 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11223 flower src_mac 02:f5:68:81:bc:93 dst_mac 02:7e:d3:3f:2f:7a vlan_id 286 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11224 flower src_mac 02:9c:b6:e8:d4:9c dst_mac 02:d5:c1:28:a9:81 vlan_id 1482 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11225 flower src_mac 02:e7:c7:f7:36:90 dst_mac 02:1b:b0:6b:de:c8 vlan_id 347 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11226 flower src_mac 02:f8:cc:0f:b4:2b dst_mac 02:79:17:ae:27:fb src_ip 32.85.6.204 dst_ip 82.8.215.187 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11227 flower src_mac 02:7e:01:c0:58:0d dst_mac 02:dc:22:b3:74:f0 src_ip 13.100.125.41 dst_ip 97.222.139.227 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11228 flower src_mac 02:db:c5:0b:c9:6f dst_mac 02:6b:75:06:96:9f action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11229 flower src_mac 02:70:e1:a9:79:cb dst_mac 02:56:7e:10:b9:7d vlan_id 689 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11230 flower src_mac 02:6e:fd:0b:8b:85 dst_mac 02:a1:01:d7:d8:6c vlan_id 3435 vlan_ethtype ip src_ip 68.253.60.162 dst_ip 99.151.5.242 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11231 flower src_mac 02:7c:52:cb:35:63 dst_mac 02:81:25:c8:e3:60 vlan_id 3237 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11232 flower src_mac 02:fc:cf:3f:f0:a3 dst_mac 02:1b:5c:e7:d0:f0 vlan_id 2022 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ip pref 11233 flower src_mac 02:e2:11:c0:b7:de dst_mac 02:92:c5:9c:56:51 src_ip 76.80.81.223 dst_ip 21.43.96.196 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11234 flower src_mac 02:fd:6c:4d:60:e4 dst_mac 02:d8:14:24:94:ea vlan_id 1296 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11235 flower src_mac 02:39:71:7d:ea:a1 dst_mac 02:40:05:23:a5:f7 src_ip 113.153.175.215 dst_ip 56.65.149.198 ip_proto icmp code 166 type 4 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11236 flower src_mac 02:89:5d:37:79:04 dst_mac 02:4a:09:9b:ae:de action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11237 flower src_mac 02:16:9b:3c:c1:ac dst_mac 02:67:ad:b8:44:e0 vlan_id 3934 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11238 flower src_mac 02:36:ac:ce:d0:38 dst_mac 02:e6:17:67:aa:56 vlan_id 3137 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11239 flower src_mac 02:ae:73:41:35:f2 dst_mac 02:f7:68:6d:e7:94 vlan_id 3605 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11240 flower src_mac 02:c6:a7:42:9b:f2 dst_mac 02:e2:0f:0a:7d:a5 src_ip 123.34.214.223 dst_ip 121.233.151.8 ip_proto tcp src_port 16975 dst_port 29032 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11241 flower src_mac 02:01:47:e0:30:ca dst_mac 02:27:d9:24:a8:1f vlan_id 3384 vlan_ethtype 0x0800 src_ip 87.165.137.246 dst_ip 109.224.36.175 ip_proto tcp src_port 13109 dst_port 36577 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11242 flower src_mac 02:4b:56:f1:5d:d9 dst_mac 02:0b:d1:db:1a:f8 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11243 flower src_mac 02:86:26:f7:86:9d dst_mac 02:3f:73:ec:7a:e5 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11244 flower src_mac 02:0f:89:ab:6e:f0 dst_mac 02:ba:89:99:e2:08 vlan_id 1430 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11245 flower src_mac 02:6b:da:d2:7c:76 dst_mac 02:3b:5f:0d:da:e6 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11246 flower src_mac 02:a5:f2:6c:f4:ab dst_mac 02:17:f7:08:ed:af action drop && tc filter add dev swp1 ingress protocol ip pref 11247 flower src_mac 02:51:28:8d:50:55 dst_mac 02:de:6d:35:40:7d src_ip 119.129.183.171 dst_ip 80.67.28.72 ip_proto tcp src_port 8735 dst_port 64886 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11248 flower src_mac 02:7c:d2:a5:d2:74 dst_mac 02:a3:10:c0:59:a0 src_ip 56.199.130.188 dst_ip 123.96.193.31 ip_proto udp src_port 60135 dst_port 43847 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11249 flower src_mac 02:bc:29:4d:c8:39 dst_mac 02:25:51:07:f8:1d vlan_id 3846 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11250 flower src_mac 02:a3:dc:ca:f6:d8 dst_mac 02:b8:96:2b:1f:9d action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11251 flower src_mac 02:e7:84:a4:ec:2f dst_mac 02:9b:f4:c7:48:44 vlan_id 2577 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11252 flower src_mac 02:8d:d1:04:a2:df dst_mac 02:b6:f8:e7:54:ab vlan_id 205 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11253 flower src_mac 02:71:d7:d1:c9:68 dst_mac 02:12:a1:ff:e4:4d vlan_id 3344 vlan_ethtype 0x0800 src_ip 114.163.86.16 dst_ip 90.43.114.131 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11254 flower src_mac 02:56:95:f2:54:99 dst_mac 02:6c:7e:81:aa:cd action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11255 flower src_mac 02:57:d7:ad:04:dc dst_mac 02:72:08:1c:9c:64 action trap && tc filter add dev swp1 ingress protocol ip pref 11256 flower src_mac 02:13:f0:e0:57:09 dst_mac 02:60:7f:fc:d8:cf src_ip 56.160.229.226 dst_ip 90.84.89.121 ip_proto tcp src_port 4385 dst_port 19619 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11257 flower src_mac 02:23:4f:79:fd:6f dst_mac 02:d3:22:67:1b:81 src_ip 24.60.152.78 dst_ip 71.117.52.48 ip_proto icmp code 111 type 13 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11258 flower src_mac 02:ed:6f:95:30:6e dst_mac 02:3c:88:af:27:46 vlan_id 1863 vlan_ethtype ipv4 src_ip 99.230.182.229 dst_ip 70.197.91.8 action drop && tc filter add dev swp1 ingress protocol ip pref 11259 flower src_mac 02:2c:94:11:a9:ff dst_mac 02:82:b9:1a:21:ad src_ip 90.173.68.30 dst_ip 33.166.14.100 ip_proto icmp code 116 type 5 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11260 flower src_mac 02:79:52:1f:de:d0 dst_mac 02:14:5b:fc:bd:00 vlan_id 1828 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11261 flower src_mac 02:73:8f:a9:c2:70 dst_mac 02:47:4d:63:8b:24 src_ip 19.195.105.58 dst_ip 49.102.224.186 ip_proto tcp src_port 35065 dst_port 62952 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11262 flower src_mac 02:95:d1:0e:05:c6 dst_mac 02:4c:ff:f8:44:4f src_ip 36.104.249.166 dst_ip 87.208.197.14 ip_proto udp src_port 1612 dst_port 13120 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11263 flower src_mac 02:13:d6:86:82:26 dst_mac 02:ad:aa:1f:fe:34 src_ip 82.230.141.114 dst_ip 46.250.75.95 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11264 flower src_mac 02:6e:df:4a:38:56 dst_mac 02:4c:b5:55:6d:0a src_ip 58.110.196.62 dst_ip 58.169.41.205 ip_proto icmp code 217 type 0 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11265 flower src_mac 02:1f:1c:2e:de:e3 dst_mac 02:11:f1:7c:10:ea vlan_id 3890 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11266 flower src_mac 02:58:70:af:46:ae dst_mac 02:2a:3b:51:26:e8 vlan_id 2558 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11267 flower src_mac 02:68:4b:f0:34:f9 dst_mac 02:27:0d:0a:37:ac action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11268 flower src_mac 02:33:20:dd:d6:5d dst_mac 02:0a:34:cf:c3:ef vlan_id 3095 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11269 flower src_mac 02:de:cc:d7:a6:01 dst_mac 02:a2:52:be:85:25 src_ip 77.133.179.52 dst_ip 86.134.82.150 ip_proto icmp code 71 type 11 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11270 flower src_mac 02:c7:8f:48:85:21 dst_mac 02:12:af:d1:e9:75 vlan_id 1334 vlan_ethtype ip src_ip 21.61.134.188 dst_ip 78.243.49.33 ip_proto udp src_port 19958 dst_port 14665 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11271 flower src_mac 02:d2:42:a2:e7:bf dst_mac 02:99:62:77:53:46 vlan_id 3977 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11272 flower src_mac 02:7d:fd:fc:81:d4 dst_mac 02:93:6e:32:f6:f8 vlan_id 2485 vlan_ethtype 0x0800 src_ip 117.65.220.227 dst_ip 93.193.248.119 ip_proto tcp src_port 8481 dst_port 27586 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11273 flower src_mac 02:ac:f3:c3:18:0b dst_mac 02:c3:5b:ed:a6:32 vlan_id 1174 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11274 flower src_mac 02:f6:c6:b1:e7:0a dst_mac 02:c5:d5:d7:c9:cd action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11275 flower src_mac 02:bc:9a:25:a3:29 dst_mac 02:1b:b1:5a:00:c7 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11276 flower src_mac 02:06:6a:c4:8a:db dst_mac 02:d8:95:1f:ba:98 vlan_id 2999 vlan_ethtype ip src_ip 50.66.42.179 dst_ip 52.107.199.237 ip_proto tcp src_port 25260 dst_port 9513 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11277 flower src_mac 02:41:b8:95:71:dc dst_mac 02:27:e2:2f:b6:27 vlan_id 1804 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11278 flower src_mac 02:e7:da:97:af:20 dst_mac 02:22:31:9a:a4:99 vlan_id 2320 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11279 flower src_mac 02:d0:d8:db:0d:b9 dst_mac 02:ea:bc:f2:15:b3 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11280 flower src_mac 02:f2:ba:5c:cd:a9 dst_mac 02:33:93:85:87:aa src_ip 17.174.63.38 dst_ip 122.199.251.79 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11281 flower src_mac 02:00:93:d0:e2:f7 dst_mac 02:b1:82:c8:2c:7f vlan_id 2496 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11282 flower src_mac 02:e0:51:3b:69:93 dst_mac 02:3f:90:db:ce:f1 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11283 flower src_mac 02:36:e5:b3:b2:d7 dst_mac 02:d6:75:d0:a5:c0 action pass && tc filter add dev swp1 ingress protocol ip pref 11284 flower src_mac 02:43:6e:cc:f9:3b dst_mac 02:23:fe:ca:32:5a src_ip 84.124.92.103 dst_ip 21.76.99.234 ip_proto icmp code 51 type 3 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11285 flower src_mac 02:20:ad:94:fd:c0 dst_mac 02:5d:2d:bc:61:72 vlan_id 3021 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11286 flower src_mac 02:9d:85:14:3e:a7 dst_mac 02:31:4c:5b:ab:b0 vlan_id 2168 vlan_ethtype ipv4 src_ip 20.129.7.223 dst_ip 123.101.6.71 ip_proto tcp src_port 44950 dst_port 34746 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11287 flower src_mac 02:91:49:a1:8b:ce dst_mac 02:8a:bd:b5:84:a5 vlan_id 3671 vlan_ethtype 0x0800 src_ip 120.84.255.201 dst_ip 21.223.129.25 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11288 flower src_mac 02:ea:37:3b:53:87 dst_mac 02:1b:96:5c:bf:6b vlan_id 3852 vlan_ethtype 0x0800 src_ip 119.131.166.90 dst_ip 19.91.247.82 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11289 flower src_mac 02:ec:de:bf:9b:a4 dst_mac 02:15:c7:39:17:b3 vlan_id 252 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11290 flower src_mac 02:dd:6f:f9:15:b5 dst_mac 02:e6:18:fe:d8:da vlan_id 793 vlan_ethtype ipv4 src_ip 51.115.42.12 dst_ip 16.128.194.183 ip_proto udp src_port 45098 dst_port 31303 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11291 flower src_mac 02:66:79:cc:28:53 dst_mac 02:d3:6d:81:7d:30 src_ip 114.93.36.95 dst_ip 19.13.2.127 ip_proto icmp code 181 type 18 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11292 flower src_mac 02:bc:10:22:35:62 dst_mac 02:be:5a:4f:d0:63 vlan_id 787 vlan_ethtype ipv4 src_ip 126.247.7.227 dst_ip 108.62.238.85 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11293 flower src_mac 02:aa:1c:e8:45:d7 dst_mac 02:95:f4:9c:7a:c6 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11294 flower src_mac 02:58:e5:0d:a1:0b dst_mac 02:83:f9:34:80:db src_ip 83.101.65.101 dst_ip 39.182.40.90 ip_proto icmp code 65 type 15 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11295 flower src_mac 02:f5:0e:e8:7d:b3 dst_mac 02:cc:ef:1c:71:a9 vlan_id 1993 vlan_ethtype 0x0800 src_ip 95.91.6.116 dst_ip 93.16.127.94 ip_proto udp src_port 62279 dst_port 34617 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11296 flower src_mac 02:75:be:0b:5d:91 dst_mac 02:e6:e5:78:e3:ce vlan_id 3578 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11297 flower src_mac 02:1f:71:5b:69:67 dst_mac 02:b6:41:66:71:42 src_ip 73.40.111.115 dst_ip 68.170.100.31 ip_proto tcp src_port 6852 dst_port 48124 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11298 flower src_mac 02:ad:0a:4b:04:4e dst_mac 02:fb:17:87:bf:77 src_ip 111.227.157.147 dst_ip 125.236.199.226 ip_proto icmp code 61 type 18 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11299 flower src_mac 02:49:a5:b6:cd:e2 dst_mac 02:31:c8:63:d4:5a action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11300 flower src_mac 02:ce:94:67:0b:f1 dst_mac 02:87:e1:2c:7f:40 vlan_id 4073 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11301 flower src_mac 02:98:a5:e6:59:14 dst_mac 02:48:34:07:bd:60 vlan_id 3465 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11302 flower src_mac 02:c3:af:f8:51:d5 dst_mac 02:32:8b:61:52:9c action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11303 flower src_mac 02:94:25:1f:eb:b6 dst_mac 02:19:50:1c:43:eb vlan_id 3081 vlan_ethtype ipv4 src_ip 72.57.196.41 dst_ip 51.213.173.62 ip_proto tcp src_port 55737 dst_port 60216 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11304 flower src_mac 02:f7:f3:ca:66:23 dst_mac 02:1b:cb:a0:88:3b action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11305 flower src_mac 02:ff:16:43:d2:c7 dst_mac 02:19:78:da:da:c3 src_ip 45.202.81.120 dst_ip 101.236.230.69 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11306 flower src_mac 02:8d:fd:36:ba:14 dst_mac 02:1a:4d:81:a1:e8 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11307 flower src_mac 02:9a:91:e5:41:31 dst_mac 02:64:b1:d7:33:ec vlan_id 1172 vlan_ethtype ip src_ip 56.196.31.89 dst_ip 79.95.71.152 ip_proto udp src_port 17977 dst_port 19962 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11308 flower src_mac 02:65:7f:30:cc:27 dst_mac 02:2a:70:42:10:ad src_ip 19.185.165.204 dst_ip 49.188.44.147 ip_proto tcp src_port 21054 dst_port 22661 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11309 flower src_mac 02:d8:b0:dc:18:7b dst_mac 02:51:ed:73:91:9c src_ip 29.186.21.98 dst_ip 74.196.136.50 ip_proto udp src_port 39756 dst_port 39763 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11310 flower src_mac 02:8b:ab:76:f3:9d dst_mac 02:2c:f3:04:8c:ae action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11311 flower src_mac 02:c1:fe:9f:8e:fd dst_mac 02:8e:8a:82:37:04 src_ip 113.235.123.27 dst_ip 66.238.105.224 ip_proto tcp src_port 56114 dst_port 50878 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11312 flower src_mac 02:33:33:3a:35:11 dst_mac 02:9d:ca:97:da:5f src_ip 18.196.152.240 dst_ip 64.44.240.184 ip_proto tcp src_port 64141 dst_port 42520 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11313 flower src_mac 02:5b:22:23:3b:d0 dst_mac 02:e5:41:f4:5f:8c vlan_id 3830 vlan_ethtype ip src_ip 58.205.86.13 dst_ip 73.222.129.44 ip_proto udp src_port 33067 dst_port 57919 action trap && tc filter add dev swp1 ingress protocol ip pref 11314 flower src_mac 02:a6:fb:b6:33:cc dst_mac 02:af:2a:67:67:3b src_ip 12.29.8.5 dst_ip 74.9.19.110 ip_proto tcp src_port 50769 dst_port 60468 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11315 flower src_mac 02:f2:23:55:cc:84 dst_mac 02:30:de:85:f1:c5 vlan_id 1000 vlan_ethtype 0x0800 src_ip 110.139.53.185 dst_ip 58.232.141.24 ip_proto tcp src_port 61585 dst_port 32084 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11316 flower src_mac 02:1a:80:a8:12:c6 dst_mac 02:93:54:6d:87:80 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11317 flower src_mac 02:58:ba:cf:51:9c dst_mac 02:7e:ec:72:6e:3a vlan_id 2546 vlan_ethtype 0x0800 src_ip 62.124.66.216 dst_ip 29.159.142.50 ip_proto tcp src_port 29890 dst_port 12333 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11318 flower src_mac 02:41:5a:47:49:26 dst_mac 02:9f:76:d1:93:d1 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11319 flower src_mac 02:e2:29:0f:ae:db dst_mac 02:2b:3a:65:1a:d3 vlan_id 2960 vlan_ethtype 0x0800 src_ip 73.171.226.237 dst_ip 68.52.187.18 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11320 flower src_mac 02:c1:1d:e8:5b:9a dst_mac 02:8d:9d:99:f3:28 vlan_id 2833 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11321 flower src_mac 02:64:a4:16:fc:3f dst_mac 02:c1:60:d7:91:0f vlan_id 499 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11322 flower src_mac 02:80:74:e1:b7:b8 dst_mac 02:8d:ae:7b:28:07 vlan_id 1740 vlan_ethtype ipv4 src_ip 111.33.29.234 dst_ip 39.138.15.2 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11323 flower src_mac 02:16:d5:99:8f:be dst_mac 02:a8:29:83:cc:d8 vlan_id 803 vlan_ethtype ipv4 src_ip 68.18.243.31 dst_ip 105.113.190.35 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11324 flower src_mac 02:66:bb:00:1b:ab dst_mac 02:99:87:83:83:82 src_ip 30.70.238.186 dst_ip 105.53.22.235 ip_proto tcp src_port 30783 dst_port 65196 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11325 flower src_mac 02:21:8f:fb:ab:3d dst_mac 02:52:7b:c0:6f:8b src_ip 92.237.78.188 dst_ip 89.171.124.112 ip_proto icmp code 117 type 3 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11326 flower src_mac 02:57:63:b9:84:e8 dst_mac 02:fb:aa:83:61:5f src_ip 61.63.136.160 dst_ip 36.249.78.12 ip_proto udp src_port 54753 dst_port 11761 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11327 flower src_mac 02:3c:e9:99:76:76 dst_mac 02:49:93:28:9f:db action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11328 flower src_mac 02:98:c6:74:34:99 dst_mac 02:03:6c:81:6e:1a action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11329 flower src_mac 02:87:81:6f:6e:87 dst_mac 02:34:0b:a9:54:04 vlan_id 46 vlan_ethtype 0x0800 src_ip 73.227.229.186 dst_ip 39.206.182.21 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11330 flower src_mac 02:9b:6d:24:6f:74 dst_mac 02:77:d6:1d:df:05 vlan_id 662 vlan_ethtype ip src_ip 63.116.84.14 dst_ip 55.39.16.58 ip_proto udp src_port 17446 dst_port 48053 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11331 flower src_mac 02:86:df:8e:04:3f dst_mac 02:11:d6:d4:d0:43 vlan_id 1491 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11332 flower src_mac 02:70:77:6a:a1:9b dst_mac 02:e8:ff:2e:b0:4d vlan_id 3207 vlan_ethtype ipv4 src_ip 38.182.145.204 dst_ip 94.192.112.131 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11333 flower src_mac 02:d6:11:29:5a:2c dst_mac 02:be:42:11:ff:bb src_ip 29.90.9.39 dst_ip 56.222.243.156 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11334 flower src_mac 02:6f:5e:34:95:b1 dst_mac 02:c6:d9:14:ce:03 vlan_id 981 vlan_ethtype ipv4 src_ip 22.81.212.219 dst_ip 102.8.54.222 action drop && tc filter add dev swp1 ingress protocol ip pref 11335 flower src_mac 02:6b:5b:46:db:53 dst_mac 02:27:3d:ab:28:37 src_ip 86.193.160.213 dst_ip 32.101.94.126 ip_proto tcp src_port 35256 dst_port 33206 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11336 flower src_mac 02:14:8a:1e:7f:d4 dst_mac 02:8c:cf:04:90:61 vlan_id 1292 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11337 flower src_mac 02:db:b4:95:66:f3 dst_mac 02:85:fc:4d:0e:f1 vlan_id 2558 vlan_ethtype ip src_ip 86.237.179.82 dst_ip 77.122.32.50 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11338 flower src_mac 02:bf:00:c1:33:f9 dst_mac 02:fb:c6:10:74:58 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11339 flower src_mac 02:7b:58:6b:c9:bb dst_mac 02:e8:6f:98:ef:e5 vlan_id 2063 vlan_ethtype ipv4 src_ip 100.103.46.242 dst_ip 114.10.111.12 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11340 flower src_mac 02:ee:a8:25:01:1f dst_mac 02:ab:ff:89:a9:79 vlan_id 1261 vlan_ethtype ipv4 src_ip 108.35.107.161 dst_ip 94.171.169.87 ip_proto tcp src_port 47667 dst_port 9601 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11341 flower src_mac 02:ff:48:c4:d7:aa dst_mac 02:d6:28:e5:32:13 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11342 flower src_mac 02:dc:7e:e4:ea:6e dst_mac 02:f1:44:e9:50:00 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11343 flower src_mac 02:0b:35:b1:a3:07 dst_mac 02:96:63:6e:a8:c2 vlan_id 1760 vlan_ethtype 0x0800 src_ip 67.192.167.36 dst_ip 79.235.186.247 ip_proto tcp src_port 9365 dst_port 49477 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11344 flower src_mac 02:1b:16:df:30:b6 dst_mac 02:16:ba:16:b5:a5 src_ip 83.14.34.48 dst_ip 95.30.44.152 ip_proto icmp code 111 type 15 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11345 flower src_mac 02:12:a4:1d:28:38 dst_mac 02:43:86:4c:de:50 vlan_id 4002 vlan_ethtype ipv4 src_ip 55.31.17.150 dst_ip 80.25.168.47 ip_proto tcp src_port 64626 dst_port 17990 action trap && tc filter add dev swp1 ingress protocol ip pref 11346 flower src_mac 02:42:6e:a3:7b:81 dst_mac 02:ad:07:21:11:18 src_ip 82.188.167.122 dst_ip 48.241.255.22 ip_proto icmp code 93 type 13 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11347 flower src_mac 02:3d:37:00:b5:5c dst_mac 02:c2:b9:83:ab:9e src_ip 116.133.32.12 dst_ip 98.1.115.242 ip_proto udp src_port 9451 dst_port 50900 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11348 flower src_mac 02:9d:42:84:18:9d dst_mac 02:00:ee:b4:b6:2e action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11349 flower src_mac 02:e3:7e:88:f9:53 dst_mac 02:05:19:86:26:3e vlan_id 3490 vlan_ethtype ip src_ip 105.13.191.37 dst_ip 53.36.253.3 ip_proto tcp src_port 60848 dst_port 9116 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11350 flower src_mac 02:61:ff:c6:d7:28 dst_mac 02:77:a9:43:73:33 src_ip 117.218.29.138 dst_ip 21.75.182.122 ip_proto tcp src_port 46217 dst_port 50621 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11351 flower src_mac 02:22:00:d3:da:02 dst_mac 02:76:6e:a0:34:a0 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11352 flower src_mac 02:27:ac:08:c2:4f dst_mac 02:c1:29:c5:fb:42 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11353 flower src_mac 02:3a:f2:60:86:d4 dst_mac 02:2c:1e:82:a9:4d action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11354 flower src_mac 02:a2:88:22:66:e4 dst_mac 02:5d:68:31:71:31 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11355 flower src_mac 02:7c:a3:a8:97:3a dst_mac 02:d3:ee:08:52:1f vlan_id 1496 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11356 flower src_mac 02:ec:ed:24:c8:f9 dst_mac 02:f6:d4:69:ac:04 vlan_id 72 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11357 flower src_mac 02:0e:d4:95:bb:c9 dst_mac 02:2d:50:a5:47:9a src_ip 87.135.123.147 dst_ip 39.192.203.142 ip_proto icmp code 122 type 5 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11358 flower src_mac 02:b5:41:0e:37:78 dst_mac 02:86:bc:89:f5:27 vlan_id 1771 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11359 flower src_mac 02:d4:31:43:89:ab dst_mac 02:5d:ed:da:2d:18 src_ip 124.72.82.137 dst_ip 108.162.34.23 ip_proto icmp code 209 type 13 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11360 flower src_mac 02:4e:a4:49:86:d8 dst_mac 02:ec:aa:dc:f0:f3 src_ip 35.242.40.167 dst_ip 48.235.174.180 ip_proto udp src_port 15003 dst_port 38073 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11361 flower src_mac 02:04:6d:97:35:f4 dst_mac 02:13:27:aa:a6:76 vlan_id 2766 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11362 flower src_mac 02:35:75:0e:9d:c1 dst_mac 02:9d:71:19:e2:ed src_ip 119.72.227.235 dst_ip 85.159.201.72 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11363 flower src_mac 02:a1:5d:6e:6e:ee dst_mac 02:31:11:29:35:9f src_ip 76.144.126.152 dst_ip 76.22.87.183 ip_proto tcp src_port 3337 dst_port 60399 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11364 flower src_mac 02:ca:af:db:0d:5d dst_mac 02:0c:13:90:98:58 action pass && tc filter add dev swp1 ingress protocol ip pref 11365 flower src_mac 02:b6:2a:97:4f:0f dst_mac 02:bb:89:54:72:27 src_ip 13.194.162.210 dst_ip 113.163.57.84 ip_proto icmp code 3 type 4 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11366 flower src_mac 02:9f:82:72:f5:b4 dst_mac 02:e5:21:68:f4:56 vlan_id 1622 vlan_ethtype ip src_ip 52.232.233.48 dst_ip 49.225.6.103 ip_proto tcp src_port 3481 dst_port 19540 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11367 flower src_mac 02:7b:a0:19:90:64 dst_mac 02:27:48:86:bc:a1 vlan_id 1482 vlan_ethtype 0x0800 src_ip 50.188.49.72 dst_ip 35.182.109.19 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11368 flower src_mac 02:69:89:57:dc:69 dst_mac 02:06:62:f4:0b:e4 vlan_id 3646 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11369 flower src_mac 02:b0:3f:c5:e1:96 dst_mac 02:32:e2:11:94:a1 vlan_id 3829 vlan_ethtype ip src_ip 89.78.91.154 dst_ip 17.63.172.21 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11370 flower src_mac 02:7c:7f:16:3f:30 dst_mac 02:4a:7d:76:d0:5e vlan_id 166 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11371 flower src_mac 02:37:c5:bc:b3:80 dst_mac 02:6f:5d:76:e7:83 vlan_id 3911 vlan_ethtype 0x0800 src_ip 21.191.167.177 dst_ip 122.100.23.239 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11372 flower src_mac 02:1f:de:3b:d4:f2 dst_mac 02:2c:39:0f:02:4c src_ip 59.23.21.126 dst_ip 77.132.17.45 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11373 flower src_mac 02:02:cb:4f:8a:33 dst_mac 02:47:fb:d6:34:48 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11374 flower src_mac 02:0e:6f:df:3f:e0 dst_mac 02:7c:44:ad:79:d0 vlan_id 1007 vlan_ethtype ip src_ip 64.135.47.26 dst_ip 106.114.174.147 action drop && tc filter add dev swp1 ingress protocol ip pref 11375 flower src_mac 02:97:89:7a:06:9d dst_mac 02:34:09:1c:f0:6a src_ip 66.83.155.178 dst_ip 100.45.174.44 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11376 flower src_mac 02:92:67:40:80:d0 dst_mac 02:5d:9c:3e:3a:a9 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11377 flower src_mac 02:95:2b:26:ac:9a dst_mac 02:d0:e2:ba:53:56 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11378 flower src_mac 02:47:1e:11:7f:f2 dst_mac 02:97:3b:7a:0a:c1 vlan_id 3039 vlan_ethtype ip src_ip 79.240.204.102 dst_ip 62.96.93.10 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11379 flower src_mac 02:71:9e:d8:38:cc dst_mac 02:73:3a:f1:5f:3f vlan_id 3153 vlan_ethtype ip src_ip 35.32.126.97 dst_ip 31.250.33.79 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11380 flower src_mac 02:c4:3f:98:ff:f9 dst_mac 02:71:87:f4:f8:39 src_ip 118.54.102.22 dst_ip 115.12.45.29 ip_proto tcp src_port 6858 dst_port 670 action pass && tc filter add dev swp1 ingress protocol ip pref 11381 flower src_mac 02:9b:cc:78:8c:5e dst_mac 02:4e:23:9d:a9:c8 src_ip 116.112.215.72 dst_ip 78.124.231.55 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11382 flower src_mac 02:9d:8c:af:f8:96 dst_mac 02:79:37:ff:2f:02 vlan_id 1812 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11383 flower src_mac 02:f7:69:b1:dd:c1 dst_mac 02:67:78:a8:11:f6 vlan_id 3060 vlan_ethtype ipv4 src_ip 64.139.176.126 dst_ip 35.216.0.17 ip_proto udp src_port 59383 dst_port 487 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11384 flower src_mac 02:0d:33:2e:eb:ac dst_mac 02:d4:a5:bd:d4:84 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11385 flower src_mac 02:68:c0:b9:19:b1 dst_mac 02:3c:31:72:2d:9d vlan_id 3747 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11386 flower src_mac 02:cd:69:df:01:77 dst_mac 02:f5:fe:18:51:e9 action pass && tc filter add dev swp1 ingress protocol ip pref 11387 flower src_mac 02:3b:c4:6c:86:f4 dst_mac 02:b8:e1:ae:ec:e7 src_ip 53.40.245.209 dst_ip 122.237.65.27 ip_proto udp src_port 29503 dst_port 36188 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11388 flower src_mac 02:c3:f6:b5:1f:6f dst_mac 02:d0:74:55:dc:0e vlan_id 568 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11389 flower src_mac 02:09:fc:c3:ee:f7 dst_mac 02:c2:3d:58:20:97 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11390 flower src_mac 02:80:5e:6c:c6:50 dst_mac 02:35:98:f3:9f:7b vlan_id 2032 vlan_ethtype 0x0800 src_ip 117.110.42.71 dst_ip 53.187.81.113 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11391 flower src_mac 02:4d:24:76:24:99 dst_mac 02:33:66:17:b6:51 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11392 flower src_mac 02:5f:fc:80:74:fc dst_mac 02:fa:95:29:54:db vlan_id 120 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11393 flower src_mac 02:d0:1f:44:1a:24 dst_mac 02:b8:ae:4d:9a:c6 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11394 flower src_mac 02:db:ef:9b:2e:26 dst_mac 02:98:18:bb:c9:1b action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11395 flower src_mac 02:e8:85:8e:e9:05 dst_mac 02:01:ee:7b:26:7d src_ip 114.171.190.115 dst_ip 18.61.70.54 ip_proto icmp code 195 type 5 action trap && tc filter add dev swp1 ingress protocol ip pref 11396 flower src_mac 02:b9:f1:8f:f9:76 dst_mac 02:c1:75:c1:6a:f5 src_ip 109.81.12.156 dst_ip 11.9.150.44 ip_proto udp src_port 33773 dst_port 36727 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11397 flower src_mac 02:1e:a9:34:da:4a dst_mac 02:3b:70:a0:c3:88 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11398 flower src_mac 02:b6:c2:2a:a2:c0 dst_mac 02:f1:4f:92:95:16 action drop && tc filter add dev swp1 ingress protocol ip pref 11399 flower src_mac 02:45:ad:a0:12:8d dst_mac 02:33:cf:2f:8c:32 src_ip 53.7.28.145 dst_ip 122.36.22.13 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11400 flower src_mac 02:34:11:33:10:2d dst_mac 02:08:bb:2d:0e:57 vlan_id 2174 vlan_ethtype ip src_ip 61.78.16.110 dst_ip 102.150.66.248 ip_proto tcp src_port 42221 dst_port 15538 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11401 flower src_mac 02:75:b1:91:5d:d5 dst_mac 02:89:71:6d:9f:bc src_ip 24.45.81.8 dst_ip 113.42.212.204 ip_proto icmp code 7 type 15 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11402 flower src_mac 02:7c:0b:a2:33:91 dst_mac 02:bb:5a:d4:84:43 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11403 flower src_mac 02:4d:17:06:74:0e dst_mac 02:81:9c:fc:06:3a vlan_id 1849 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11404 flower src_mac 02:86:58:ac:68:3e dst_mac 02:10:91:ad:d8:c3 vlan_id 998 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11405 flower src_mac 02:36:4e:75:9f:09 dst_mac 02:cd:2b:1c:4f:8f action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11406 flower src_mac 02:ac:3b:59:16:08 dst_mac 02:06:6e:b9:54:33 vlan_id 356 vlan_ethtype ipv4 src_ip 122.49.159.2 dst_ip 100.244.5.33 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11407 flower src_mac 02:3f:1b:32:e4:e5 dst_mac 02:c6:ff:3c:05:c0 vlan_id 3591 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11408 flower src_mac 02:09:b8:1e:60:93 dst_mac 02:4b:6a:73:db:47 vlan_id 3709 vlan_ethtype ipv4 src_ip 89.184.21.178 dst_ip 14.121.80.170 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11409 flower src_mac 02:dd:10:38:a7:bf dst_mac 02:4f:a4:e7:99:af action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11410 flower src_mac 02:7a:f6:0f:1b:85 dst_mac 02:55:63:53:e4:38 src_ip 103.104.231.122 dst_ip 100.154.25.9 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11411 flower src_mac 02:ec:e3:de:45:b2 dst_mac 02:e9:83:dd:d0:15 src_ip 70.100.237.194 dst_ip 70.18.56.150 ip_proto udp src_port 23136 dst_port 4831 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11412 flower src_mac 02:b4:8f:44:13:ff dst_mac 02:bd:aa:ea:32:7e vlan_id 1932 vlan_ethtype 0x0800 src_ip 111.139.50.48 dst_ip 37.43.58.193 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11413 flower src_mac 02:f6:fe:20:f6:f8 dst_mac 02:87:9e:70:47:9f vlan_id 3231 vlan_ethtype ip src_ip 22.193.236.188 dst_ip 100.16.45.68 ip_proto udp src_port 42609 dst_port 43880 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11414 flower src_mac 02:33:34:cf:ef:28 dst_mac 02:04:b3:ab:f4:c7 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11415 flower src_mac 02:38:f6:ae:12:23 dst_mac 02:a3:af:35:5b:32 src_ip 43.103.152.49 dst_ip 96.106.220.81 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11416 flower src_mac 02:1b:d1:e1:ec:6c dst_mac 02:2e:69:64:29:2f action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11417 flower src_mac 02:45:1d:28:f6:3c dst_mac 02:c3:93:fa:dd:a0 src_ip 78.225.89.141 dst_ip 40.83.245.93 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11418 flower src_mac 02:68:25:e0:fc:07 dst_mac 02:24:86:c5:1e:f5 vlan_id 4000 vlan_ethtype 0x0800 src_ip 97.29.236.136 dst_ip 27.23.198.109 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11419 flower src_mac 02:4e:fa:2b:bd:56 dst_mac 02:e6:4a:af:3e:1b src_ip 79.77.103.99 dst_ip 43.156.125.169 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11420 flower src_mac 02:20:b5:03:85:07 dst_mac 02:6c:da:d0:34:fe action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11421 flower src_mac 02:30:5e:30:99:98 dst_mac 02:4d:46:54:7e:ff action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11422 flower src_mac 02:fe:c9:0c:17:07 dst_mac 02:4c:23:01:af:56 vlan_id 3581 vlan_ethtype ipv4 src_ip 62.249.187.95 dst_ip 86.72.72.81 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11423 flower src_mac 02:96:ae:4f:05:e8 dst_mac 02:8d:be:59:c4:62 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11424 flower src_mac 02:3a:e6:96:76:dc dst_mac 02:96:16:23:a4:c7 vlan_id 315 vlan_ethtype ipv4 src_ip 82.55.221.151 dst_ip 90.177.198.122 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11425 flower src_mac 02:6a:9c:a5:91:d4 dst_mac 02:0b:92:3a:73:2f vlan_id 445 vlan_ethtype ip src_ip 105.36.50.187 dst_ip 114.231.46.160 ip_proto udp src_port 28015 dst_port 9535 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11426 flower src_mac 02:72:12:4c:4c:d4 dst_mac 02:19:84:1c:63:c4 vlan_id 3399 vlan_ethtype ipv4 src_ip 124.101.228.2 dst_ip 71.152.164.135 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11427 flower src_mac 02:a2:bb:1a:8e:6a dst_mac 02:68:86:a3:51:4f vlan_id 959 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ip pref 11428 flower src_mac 02:ee:b7:9a:dc:b0 dst_mac 02:dc:d4:80:42:37 src_ip 109.166.223.75 dst_ip 119.87.229.132 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11429 flower src_mac 02:b6:b8:c2:17:cc dst_mac 02:38:64:9d:3c:d8 src_ip 75.194.167.48 dst_ip 74.96.164.29 ip_proto tcp src_port 42011 dst_port 5363 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11430 flower src_mac 02:0c:ee:49:68:eb dst_mac 02:76:dd:25:a2:fe vlan_id 3714 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11431 flower src_mac 02:09:4e:80:ca:8e dst_mac 02:71:02:32:01:c5 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11432 flower src_mac 02:c1:16:9f:f3:a9 dst_mac 02:75:12:28:d8:15 src_ip 24.181.166.182 dst_ip 109.14.141.63 ip_proto udp src_port 44423 dst_port 611 action drop && tc filter add dev swp1 ingress protocol ip pref 11433 flower src_mac 02:75:0c:78:d5:42 dst_mac 02:0c:1b:5b:d4:38 src_ip 19.113.193.66 dst_ip 110.95.113.174 ip_proto tcp src_port 28145 dst_port 64356 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11434 flower src_mac 02:c4:1e:aa:d2:ae dst_mac 02:98:6e:61:84:6f action pass && tc filter add dev swp1 ingress protocol ip pref 11435 flower src_mac 02:b1:c2:4a:28:73 dst_mac 02:e7:5e:06:49:bb src_ip 16.168.11.63 dst_ip 18.83.68.158 ip_proto icmp code 139 type 16 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11436 flower src_mac 02:99:4d:62:99:0b dst_mac 02:ee:f9:84:6b:f5 vlan_id 504 vlan_ethtype ipv4 src_ip 91.197.158.23 dst_ip 26.74.201.65 ip_proto tcp src_port 5534 dst_port 23770 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11437 flower src_mac 02:59:6a:8e:db:76 dst_mac 02:3a:90:9e:3c:88 vlan_id 2074 vlan_ethtype ipv4 src_ip 66.7.124.219 dst_ip 66.192.252.68 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11438 flower src_mac 02:4d:af:d3:bd:88 dst_mac 02:94:da:e4:39:ed src_ip 57.139.24.99 dst_ip 32.176.251.23 ip_proto tcp src_port 16629 dst_port 55829 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11439 flower src_mac 02:f9:14:d8:6b:e9 dst_mac 02:6d:24:9c:41:d0 vlan_id 2363 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11440 flower src_mac 02:6c:70:c8:22:07 dst_mac 02:7e:84:7d:08:5e vlan_id 922 vlan_ethtype 0x0800 src_ip 121.73.158.184 dst_ip 87.18.128.191 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11441 flower src_mac 02:7c:7c:ea:ab:02 dst_mac 02:3b:7b:1a:6c:ce vlan_id 1061 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11442 flower src_mac 02:fb:0a:aa:2a:5a dst_mac 02:7a:a6:b4:e0:f2 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11443 flower src_mac 02:8d:a8:2f:66:13 dst_mac 02:b3:f9:3d:28:4f action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11444 flower src_mac 02:63:2e:25:53:c5 dst_mac 02:a4:72:d0:88:73 vlan_id 2810 vlan_ethtype ip src_ip 118.117.163.159 dst_ip 44.203.156.188 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11445 flower src_mac 02:0b:f8:3c:2a:f4 dst_mac 02:a0:0f:91:05:74 vlan_id 1698 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11446 flower src_mac 02:f9:df:94:f8:cb dst_mac 02:5d:01:a8:4b:0e vlan_id 3455 vlan_ethtype ipv4 src_ip 64.217.214.54 dst_ip 33.153.225.197 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11447 flower src_mac 02:04:09:5e:68:2c dst_mac 02:fe:92:dd:f0:21 vlan_id 1551 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11448 flower src_mac 02:97:59:90:c0:fa dst_mac 02:48:06:a0:56:90 vlan_id 1769 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11449 flower src_mac 02:d7:94:f2:4d:52 dst_mac 02:53:70:1c:7e:56 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11450 flower src_mac 02:a5:da:c3:6d:c9 dst_mac 02:f8:52:75:ff:92 vlan_id 2108 vlan_ethtype ip src_ip 23.17.52.14 dst_ip 23.90.10.105 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11451 flower src_mac 02:f8:b2:98:4e:13 dst_mac 02:24:e6:9b:5f:e6 vlan_id 2116 vlan_ethtype ipv4 src_ip 99.198.165.54 dst_ip 23.47.117.35 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11452 flower src_mac 02:81:38:67:4e:88 dst_mac 02:68:69:db:b0:db vlan_id 1868 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11453 flower src_mac 02:b6:4e:ce:f7:81 dst_mac 02:48:17:ac:8d:f9 vlan_id 3650 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11454 flower src_mac 02:8c:4c:28:d4:0c dst_mac 02:27:cb:94:82:da vlan_id 869 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11455 flower src_mac 02:0f:1e:2a:a5:3e dst_mac 02:5e:83:e8:1e:20 src_ip 78.54.154.49 dst_ip 64.244.41.30 action drop && tc filter add dev swp1 ingress protocol ip pref 11456 flower src_mac 02:97:f8:32:5a:43 dst_mac 02:66:6b:77:c0:0c src_ip 61.8.26.162 dst_ip 53.207.84.216 ip_proto udp src_port 7888 dst_port 11195 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11457 flower src_mac 02:90:52:64:7f:1f dst_mac 02:7a:02:0c:ba:9e vlan_id 802 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11458 flower src_mac 02:f4:7a:7f:c0:13 dst_mac 02:a7:79:45:f8:3e vlan_id 2045 vlan_ethtype ip src_ip 19.17.39.247 dst_ip 24.46.67.66 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11459 flower src_mac 02:a7:8f:ae:60:16 dst_mac 02:79:66:3a:24:c1 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11460 flower src_mac 02:31:3a:13:a7:d3 dst_mac 02:c9:82:84:15:03 vlan_id 1928 vlan_ethtype ipv4 src_ip 85.132.254.191 dst_ip 115.194.200.52 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11461 flower src_mac 02:e5:00:ea:b4:61 dst_mac 02:db:ae:3f:46:75 vlan_id 1700 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ip pref 11462 flower src_mac 02:b2:e3:e4:07:fc dst_mac 02:ff:31:b3:3f:6e src_ip 113.156.24.149 dst_ip 21.228.222.116 ip_proto tcp src_port 21800 dst_port 365 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11463 flower src_mac 02:8d:61:eb:42:e3 dst_mac 02:8f:02:6d:39:e9 src_ip 99.12.56.43 dst_ip 108.27.31.13 ip_proto udp src_port 59476 dst_port 9714 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11464 flower src_mac 02:ec:95:1e:78:d8 dst_mac 02:cc:b1:57:60:1c src_ip 76.152.166.109 dst_ip 73.233.2.88 ip_proto icmp code 251 type 15 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11465 flower src_mac 02:d4:fd:61:af:f1 dst_mac 02:b1:2a:d5:d0:ed vlan_id 3707 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11466 flower src_mac 02:96:60:d5:44:ab dst_mac 02:1b:7c:ac:f7:4c src_ip 126.77.130.132 dst_ip 20.212.14.96 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11467 flower src_mac 02:d5:08:c1:db:fd dst_mac 02:cf:1a:ec:5b:5f src_ip 50.62.171.62 dst_ip 45.232.84.61 ip_proto udp src_port 21851 dst_port 42179 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11468 flower src_mac 02:d6:1f:e0:0f:4b dst_mac 02:e2:61:98:8a:c4 vlan_id 1625 vlan_ethtype 0x0800 src_ip 91.61.49.37 dst_ip 64.63.189.223 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11469 flower src_mac 02:07:4e:6a:2b:d4 dst_mac 02:e6:37:7f:d8:9d vlan_id 2977 vlan_ethtype ip src_ip 100.125.131.201 dst_ip 112.79.41.205 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11470 flower src_mac 02:3b:76:e1:2f:f0 dst_mac 02:ca:70:10:23:ef vlan_id 2888 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ip pref 11471 flower src_mac 02:f4:0f:e5:2f:a1 dst_mac 02:60:3e:b4:ef:c4 src_ip 25.71.160.248 dst_ip 98.75.129.151 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11472 flower src_mac 02:e4:9f:f8:78:8b dst_mac 02:ab:61:b5:64:77 src_ip 26.17.251.234 dst_ip 121.223.189.147 ip_proto icmp code 242 type 15 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11473 flower src_mac 02:c4:81:9f:24:d3 dst_mac 02:28:08:d9:b9:9c action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11474 flower src_mac 02:bf:2c:c2:05:7b dst_mac 02:75:4b:ce:72:75 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11475 flower src_mac 02:96:d3:93:bf:c7 dst_mac 02:b9:93:19:34:bf action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11476 flower src_mac 02:4f:4b:00:ff:8f dst_mac 02:88:58:2f:19:76 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11477 flower src_mac 02:03:6e:73:72:a0 dst_mac 02:67:9c:26:46:5d vlan_id 3720 vlan_ethtype 0x0800 src_ip 108.179.234.188 dst_ip 69.142.98.3 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11478 flower src_mac 02:10:0e:8d:2a:24 dst_mac 02:83:d4:9c:d2:41 vlan_id 2445 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11479 flower src_mac 02:0d:20:41:e6:d9 dst_mac 02:2f:b9:e5:5d:01 src_ip 35.222.219.25 dst_ip 40.4.127.159 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11480 flower src_mac 02:34:33:fd:5f:37 dst_mac 02:f6:5c:b1:25:55 vlan_id 4006 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11481 flower src_mac 02:6b:04:13:27:84 dst_mac 02:be:0e:9c:87:30 action pass && tc filter add dev swp1 ingress protocol ip pref 11482 flower src_mac 02:55:d0:57:4e:13 dst_mac 02:dd:3d:0f:e7:af src_ip 32.23.148.85 dst_ip 93.87.199.153 ip_proto tcp src_port 21438 dst_port 8309 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11483 flower src_mac 02:13:bf:fa:1a:f1 dst_mac 02:4f:b9:fa:17:49 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11484 flower src_mac 02:5a:fd:79:77:bd dst_mac 02:30:8e:2e:b7:48 vlan_id 2565 vlan_ethtype ip src_ip 90.142.142.105 dst_ip 50.128.214.215 ip_proto udp src_port 44168 dst_port 1619 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11485 flower src_mac 02:cc:26:ad:28:17 dst_mac 02:0b:3b:03:a5:a7 vlan_id 3066 vlan_ethtype ipv4 src_ip 74.49.172.5 dst_ip 62.78.110.138 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11486 flower src_mac 02:81:20:3b:b2:f6 dst_mac 02:d0:2f:47:bd:45 vlan_id 1807 vlan_ethtype ipv4 src_ip 120.241.215.16 dst_ip 67.58.166.63 ip_proto udp src_port 38419 dst_port 23419 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11487 flower src_mac 02:7e:3b:30:0a:90 dst_mac 02:d3:63:f4:bc:fa src_ip 80.158.141.26 dst_ip 90.42.244.129 ip_proto tcp src_port 34167 dst_port 32992 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11488 flower src_mac 02:f4:be:1f:e6:41 dst_mac 02:c5:fc:6e:d4:f8 vlan_id 676 vlan_ethtype ip src_ip 32.46.102.165 dst_ip 38.238.99.237 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11489 flower src_mac 02:07:5e:c7:52:f4 dst_mac 02:44:ff:bd:55:3f vlan_id 1049 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11490 flower src_mac 02:4c:7b:5f:31:93 dst_mac 02:0b:34:58:d0:8f src_ip 72.185.11.154 dst_ip 100.108.54.133 ip_proto tcp src_port 19089 dst_port 3953 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11491 flower src_mac 02:10:c0:e5:dc:a4 dst_mac 02:39:d7:7d:ba:e1 vlan_id 478 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11492 flower src_mac 02:23:8a:44:b1:e6 dst_mac 02:27:33:fa:ea:a4 action pass && tc filter add dev swp1 ingress protocol ip pref 11493 flower src_mac 02:03:7e:43:66:81 dst_mac 02:7e:3a:bb:8a:68 src_ip 40.87.48.162 dst_ip 37.155.244.203 ip_proto icmp code 210 type 0 action drop && tc filter add dev swp1 ingress protocol ip pref 11494 flower src_mac 02:8f:e6:44:3f:f5 dst_mac 02:7a:87:9f:ab:56 src_ip 35.220.79.161 dst_ip 38.101.252.96 ip_proto udp src_port 62470 dst_port 14334 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11495 flower src_mac 02:8d:2a:cf:57:b9 dst_mac 02:90:c0:21:f1:2d vlan_id 3538 vlan_ethtype ipv4 src_ip 81.197.97.215 dst_ip 111.49.221.184 ip_proto tcp src_port 63092 dst_port 46507 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11496 flower src_mac 02:cf:d5:b8:05:8d dst_mac 02:2d:c3:df:f9:35 src_ip 66.241.235.168 dst_ip 97.154.174.152 ip_proto tcp src_port 20581 dst_port 6288 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11497 flower src_mac 02:6c:3b:61:e4:18 dst_mac 02:4f:35:3c:20:ba src_ip 52.63.235.104 dst_ip 68.204.210.161 ip_proto icmp code 66 type 16 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11498 flower src_mac 02:a9:90:86:6a:e0 dst_mac 02:52:c2:0f:e0:17 vlan_id 3435 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11499 flower src_mac 02:29:db:ad:36:d3 dst_mac 02:43:bb:f8:6e:6a vlan_id 1520 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11500 flower src_mac 02:b5:fa:c6:53:76 dst_mac 02:93:77:7f:83:dd vlan_id 1718 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11501 flower src_mac 02:09:b5:86:98:95 dst_mac 02:86:7e:9b:ef:86 vlan_id 265 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11502 flower src_mac 02:c9:87:3d:ac:54 dst_mac 02:0e:d7:3c:c2:70 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11503 flower src_mac 02:4a:66:4e:a9:36 dst_mac 02:a4:b0:1c:0a:8a vlan_id 2412 vlan_ethtype ipv4 src_ip 21.214.50.109 dst_ip 108.130.19.30 ip_proto tcp src_port 47134 dst_port 35363 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11504 flower src_mac 02:b8:c4:db:bc:3d dst_mac 02:e5:69:aa:f2:5c vlan_id 1672 vlan_ethtype ip src_ip 88.0.146.120 dst_ip 51.134.241.54 ip_proto udp src_port 21357 dst_port 47095 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11505 flower src_mac 02:bb:d6:b5:50:7a dst_mac 02:6f:d4:1f:55:5c vlan_id 1755 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11506 flower src_mac 02:21:5c:81:80:b5 dst_mac 02:d5:39:ec:2b:c0 vlan_id 3353 vlan_ethtype 0x0800 src_ip 66.8.65.74 dst_ip 78.246.127.11 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11507 flower src_mac 02:88:0a:b5:67:29 dst_mac 02:a2:cb:21:cb:f2 src_ip 56.224.182.44 dst_ip 106.191.245.204 ip_proto tcp src_port 683 dst_port 58063 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11508 flower src_mac 02:ec:ec:b3:0c:b6 dst_mac 02:97:50:c8:35:f0 vlan_id 848 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11509 flower src_mac 02:61:83:5c:39:d3 dst_mac 02:76:10:dd:08:cc vlan_id 1497 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11510 flower src_mac 02:55:b7:f3:41:d9 dst_mac 02:38:33:06:57:aa vlan_id 2977 vlan_ethtype 0x0800 src_ip 39.155.182.189 dst_ip 11.109.57.206 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11511 flower src_mac 02:2b:49:8c:de:51 dst_mac 02:e5:93:92:d3:80 vlan_id 179 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11512 flower src_mac 02:e4:aa:13:79:d7 dst_mac 02:b5:f5:bb:07:36 action pass && tc filter add dev swp1 ingress protocol ip pref 11513 flower src_mac 02:92:08:87:82:18 dst_mac 02:b2:21:06:54:5e src_ip 44.255.175.73 dst_ip 24.92.173.150 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11514 flower src_mac 02:25:82:46:a3:ba dst_mac 02:cf:e0:55:2f:bf src_ip 63.90.131.141 dst_ip 110.83.196.246 ip_proto icmp code 199 type 15 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11515 flower src_mac 02:8d:f3:71:67:a6 dst_mac 02:ac:2b:e6:2a:1b action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11516 flower src_mac 02:15:08:3f:49:73 dst_mac 02:ae:cf:da:a7:ce src_ip 64.253.178.88 dst_ip 115.171.0.154 ip_proto udp src_port 15130 dst_port 28672 action trap && tc filter add dev swp1 ingress protocol ip pref 11517 flower src_mac 02:e8:00:c1:ac:99 dst_mac 02:05:48:22:ed:bc src_ip 51.198.48.189 dst_ip 41.224.71.227 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11518 flower src_mac 02:3b:7b:e4:c8:36 dst_mac 02:75:cf:62:ab:a3 vlan_id 2786 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11519 flower src_mac 02:4b:2a:50:e5:e2 dst_mac 02:b7:b0:68:2a:21 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11520 flower src_mac 02:00:06:00:db:38 dst_mac 02:ec:84:a5:25:0c action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11521 flower src_mac 02:08:55:0b:b2:15 dst_mac 02:a3:ce:83:fb:f8 vlan_id 2840 vlan_ethtype ip src_ip 93.68.194.60 dst_ip 52.137.108.141 ip_proto udp src_port 24606 dst_port 37875 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11522 flower src_mac 02:79:c9:fd:97:d8 dst_mac 02:29:af:8f:1e:6e action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11523 flower src_mac 02:27:b4:c3:a5:e8 dst_mac 02:de:17:84:ff:79 src_ip 76.148.22.51 dst_ip 95.105.150.44 ip_proto udp src_port 29663 dst_port 53130 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11524 flower src_mac 02:60:f4:83:be:5d dst_mac 02:23:1c:e3:97:bb src_ip 102.228.137.230 dst_ip 18.9.240.211 ip_proto icmp code 251 type 17 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11525 flower src_mac 02:ef:25:8c:79:70 dst_mac 02:07:f2:67:e1:bf src_ip 82.60.53.117 dst_ip 90.35.252.240 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11526 flower src_mac 02:31:81:df:8f:1b dst_mac 02:b2:19:bf:6f:9f action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11527 flower src_mac 02:c8:31:ce:ed:ef dst_mac 02:6e:3b:9e:ad:4f src_ip 62.135.165.39 dst_ip 66.254.106.73 ip_proto udp src_port 7653 dst_port 58611 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11528 flower src_mac 02:8d:c9:32:89:ec dst_mac 02:e5:70:ba:9d:14 vlan_id 695 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11529 flower src_mac 02:44:1c:5c:84:4d dst_mac 02:16:b7:13:9a:0e action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11530 flower src_mac 02:2a:cd:a0:0c:01 dst_mac 02:77:2f:34:72:7b vlan_id 373 vlan_ethtype ipv4 src_ip 63.166.73.208 dst_ip 70.139.139.185 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11531 flower src_mac 02:7c:e4:07:d4:84 dst_mac 02:13:8a:00:f6:32 src_ip 123.66.138.27 dst_ip 124.15.83.197 ip_proto tcp src_port 32813 dst_port 1738 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11532 flower src_mac 02:03:05:20:ef:fb dst_mac 02:52:f3:22:75:b1 vlan_id 1542 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11533 flower src_mac 02:f6:7f:02:da:01 dst_mac 02:a7:37:a4:b8:e0 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11534 flower src_mac 02:bc:1e:94:ff:ed dst_mac 02:36:27:fa:e8:55 vlan_id 883 vlan_ethtype ipv4 src_ip 18.15.38.139 dst_ip 14.234.111.22 action trap && tc filter add dev swp1 ingress protocol ip pref 11535 flower src_mac 02:43:fb:6c:3f:a5 dst_mac 02:ab:7f:79:8c:de src_ip 86.14.166.52 dst_ip 21.72.15.138 ip_proto tcp src_port 50366 dst_port 51259 action pass INFO asyncssh:logging.py:92 [conn=24, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=10] Command: tc filter add dev swp1 ingress protocol 0x9100 pref 11200 flower src_mac 02:77:d8:1a:bf:f5 dst_mac 02:ac:d8:91:23:6b action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11201 flower src_mac 02:06:7c:04:0c:48 dst_mac 02:af:0c:16:b3:66 vlan_id 482 vlan_ethtype ipv4 src_ip 77.145.58.122 dst_ip 50.155.191.40 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11202 flower src_mac 02:ca:21:98:b0:1c dst_mac 02:93:e8:22:14:56 vlan_id 3333 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ip pref 11203 flower src_mac 02:90:b2:e3:13:cb dst_mac 02:19:ab:57:94:d7 src_ip 78.150.247.232 dst_ip 103.203.136.196 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11204 flower src_mac 02:ac:fd:da:4d:f3 dst_mac 02:55:5f:33:78:79 vlan_id 2205 vlan_ethtype 0x0800 src_ip 41.112.173.191 dst_ip 42.211.103.179 ip_proto tcp src_port 11619 dst_port 38978 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11205 flower src_mac 02:74:05:6f:02:b7 dst_mac 02:87:92:e9:45:95 vlan_id 2681 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11206 flower src_mac 02:58:c2:36:66:91 dst_mac 02:68:ac:b0:2a:41 src_ip 14.122.204.50 dst_ip 106.227.15.141 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11207 flower src_mac 02:a3:d2:10:8e:dc dst_mac 02:7a:26:c8:78:e8 vlan_id 1039 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol ip pref 11208 flower src_mac 02:af:a9:1a:c0:d6 dst_mac 02:34:46:6c:24:cc src_ip 124.251.218.88 dst_ip 51.205.222.87 ip_proto icmp code 73 type 8 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11209 flower src_mac 02:e4:60:8c:ee:7b dst_mac 02:85:b1:a7:72:e1 vlan_id 2708 vlan_ethtype ipv4 src_ip 108.189.71.81 dst_ip 59.99.90.147 ip_proto udp src_port 13340 dst_port 42804 action drop && tc filter add dev swp1 ingress protocol ip pref 11210 flower src_mac 02:66:16:f6:2d:39 dst_mac 02:5d:5d:e3:9d:c9 src_ip 109.109.117.107 dst_ip 14.187.141.41 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11211 flower src_mac 02:3c:02:9f:44:d9 dst_mac 02:e6:f9:a9:62:bc action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11212 flower src_mac 02:6a:db:c0:52:dd dst_mac 02:26:ee:41:64:67 vlan_id 3958 vlan_ethtype ipv4 src_ip 50.87.31.221 dst_ip 104.89.130.159 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11213 flower src_mac 02:66:d6:fb:26:a1 dst_mac 02:a5:6b:38:52:8f action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11214 flower src_mac 02:3b:7d:d4:21:a7 dst_mac 02:d2:a2:eb:9c:54 src_ip 66.184.33.196 dst_ip 93.130.52.111 ip_proto tcp src_port 9303 dst_port 43349 action drop && tc filter add dev swp1 ingress protocol ip pref 11215 flower src_mac 02:97:9f:e6:ba:b1 dst_mac 02:ea:69:78:82:e1 src_ip 46.100.211.211 dst_ip 94.165.243.226 ip_proto tcp src_port 63953 dst_port 490 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11216 flower src_mac 02:b8:06:25:8c:10 dst_mac 02:4a:c2:b3:6e:67 vlan_id 436 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11217 flower src_mac 02:63:f2:a1:c7:d0 dst_mac 02:f8:82:29:70:02 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11218 flower src_mac 02:8e:43:d4:5c:19 dst_mac 02:34:94:27:be:7e src_ip 114.217.205.200 dst_ip 48.212.68.205 ip_proto icmp code 232 type 16 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11219 flower src_mac 02:bc:ff:54:1d:f8 dst_mac 02:ae:e8:bc:a9:32 vlan_id 1230 vlan_ethtype ipv4 src_ip 114.135.136.217 dst_ip 89.140.157.228 ip_proto tcp src_port 59468 dst_port 15310 action trap && tc filter add dev swp1 ingress protocol ip pref 11220 flower src_mac 02:a5:54:ed:11:dd dst_mac 02:6c:7b:b4:22:14 src_ip 102.150.233.19 dst_ip 102.196.255.105 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11221 flower src_mac 02:01:38:6f:7e:3d dst_mac 02:c1:48:f7:a2:be action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11222 flower src_mac 02:61:55:83:b9:5d dst_mac 02:c2:c9:9d:94:ba src_ip 51.227.213.63 dst_ip 101.68.32.127 ip_proto icmp code 206 type 14 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11223 flower src_mac 02:f5:68:81:bc:93 dst_mac 02:7e:d3:3f:2f:7a vlan_id 286 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11224 flower src_mac 02:9c:b6:e8:d4:9c dst_mac 02:d5:c1:28:a9:81 vlan_id 1482 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11225 flower src_mac 02:e7:c7:f7:36:90 dst_mac 02:1b:b0:6b:de:c8 vlan_id 347 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11226 flower src_mac 02:f8:cc:0f:b4:2b dst_mac 02:79:17:ae:27:fb src_ip 32.85.6.204 dst_ip 82.8.215.187 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11227 flower src_mac 02:7e:01:c0:58:0d dst_mac 02:dc:22:b3:74:f0 src_ip 13.100.125.41 dst_ip 97.222.139.227 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11228 flower src_mac 02:db:c5:0b:c9:6f dst_mac 02:6b:75:06:96:9f action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11229 flower src_mac 02:70:e1:a9:79:cb dst_mac 02:56:7e:10:b9:7d vlan_id 689 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11230 flower src_mac 02:6e:fd:0b:8b:85 dst_mac 02:a1:01:d7:d8:6c vlan_id 3435 vlan_ethtype ip src_ip 68.253.60.162 dst_ip 99.151.5.242 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11231 flower src_mac 02:7c:52:cb:35:63 dst_mac 02:81:25:c8:e3:60 vlan_id 3237 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11232 flower src_mac 02:fc:cf:3f:f0:a3 dst_mac 02:1b:5c:e7:d0:f0 vlan_id 2022 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ip pref 11233 flower src_mac 02:e2:11:c0:b7:de dst_mac 02:92:c5:9c:56:51 src_ip 76.80.81.223 dst_ip 21.43.96.196 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11234 flower src_mac 02:fd:6c:4d:60:e4 dst_mac 02:d8:14:24:94:ea vlan_id 1296 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11235 flower src_mac 02:39:71:7d:ea:a1 dst_mac 02:40:05:23:a5:f7 src_ip 113.153.175.215 dst_ip 56.65.149.198 ip_proto icmp code 166 type 4 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11236 flower src_mac 02:89:5d:37:79:04 dst_mac 02:4a:09:9b:ae:de action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11237 flower src_mac 02:16:9b:3c:c1:ac dst_mac 02:67:ad:b8:44:e0 vlan_id 3934 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11238 flower src_mac 02:36:ac:ce:d0:38 dst_mac 02:e6:17:67:aa:56 vlan_id 3137 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11239 flower src_mac 02:ae:73:41:35:f2 dst_mac 02:f7:68:6d:e7:94 vlan_id 3605 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11240 flower src_mac 02:c6:a7:42:9b:f2 dst_mac 02:e2:0f:0a:7d:a5 src_ip 123.34.214.223 dst_ip 121.233.151.8 ip_proto tcp src_port 16975 dst_port 29032 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11241 flower src_mac 02:01:47:e0:30:ca dst_mac 02:27:d9:24:a8:1f vlan_id 3384 vlan_ethtype 0x0800 src_ip 87.165.137.246 dst_ip 109.224.36.175 ip_proto tcp src_port 13109 dst_port 36577 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11242 flower src_mac 02:4b:56:f1:5d:d9 dst_mac 02:0b:d1:db:1a:f8 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11243 flower src_mac 02:86:26:f7:86:9d dst_mac 02:3f:73:ec:7a:e5 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11244 flower src_mac 02:0f:89:ab:6e:f0 dst_mac 02:ba:89:99:e2:08 vlan_id 1430 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11245 flower src_mac 02:6b:da:d2:7c:76 dst_mac 02:3b:5f:0d:da:e6 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11246 flower src_mac 02:a5:f2:6c:f4:ab dst_mac 02:17:f7:08:ed:af action drop && tc filter add dev swp1 ingress protocol ip pref 11247 flower src_mac 02:51:28:8d:50:55 dst_mac 02:de:6d:35:40:7d src_ip 119.129.183.171 dst_ip 80.67.28.72 ip_proto tcp src_port 8735 dst_port 64886 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11248 flower src_mac 02:7c:d2:a5:d2:74 dst_mac 02:a3:10:c0:59:a0 src_ip 56.199.130.188 dst_ip 123.96.193.31 ip_proto udp src_port 60135 dst_port 43847 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11249 flower src_mac 02:bc:29:4d:c8:39 dst_mac 02:25:51:07:f8:1d vlan_id 3846 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11250 flower src_mac 02:a3:dc:ca:f6:d8 dst_mac 02:b8:96:2b:1f:9d action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11251 flower src_mac 02:e7:84:a4:ec:2f dst_mac 02:9b:f4:c7:48:44 vlan_id 2577 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11252 flower src_mac 02:8d:d1:04:a2:df dst_mac 02:b6:f8:e7:54:ab vlan_id 205 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11253 flower src_mac 02:71:d7:d1:c9:68 dst_mac 02:12:a1:ff:e4:4d vlan_id 3344 vlan_ethtype 0x0800 src_ip 114.163.86.16 dst_ip 90.43.114.131 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11254 flower src_mac 02:56:95:f2:54:99 dst_mac 02:6c:7e:81:aa:cd action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11255 flower src_mac 02:57:d7:ad:04:dc dst_mac 02:72:08:1c:9c:64 action trap && tc filter add dev swp1 ingress protocol ip pref 11256 flower src_mac 02:13:f0:e0:57:09 dst_mac 02:60:7f:fc:d8:cf src_ip 56.160.229.226 dst_ip 90.84.89.121 ip_proto tcp src_port 4385 dst_port 19619 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11257 flower src_mac 02:23:4f:79:fd:6f dst_mac 02:d3:22:67:1b:81 src_ip 24.60.152.78 dst_ip 71.117.52.48 ip_proto icmp code 111 type 13 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11258 flower src_mac 02:ed:6f:95:30:6e dst_mac 02:3c:88:af:27:46 vlan_id 1863 vlan_ethtype ipv4 src_ip 99.230.182.229 dst_ip 70.197.91.8 action drop && tc filter add dev swp1 ingress protocol ip pref 11259 flower src_mac 02:2c:94:11:a9:ff dst_mac 02:82:b9:1a:21:ad src_ip 90.173.68.30 dst_ip 33.166.14.100 ip_proto icmp code 116 type 5 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11260 flower src_mac 02:79:52:1f:de:d0 dst_mac 02:14:5b:fc:bd:00 vlan_id 1828 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11261 flower src_mac 02:73:8f:a9:c2:70 dst_mac 02:47:4d:63:8b:24 src_ip 19.195.105.58 dst_ip 49.102.224.186 ip_proto tcp src_port 35065 dst_port 62952 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11262 flower src_mac 02:95:d1:0e:05:c6 dst_mac 02:4c:ff:f8:44:4f src_ip 36.104.249.166 dst_ip 87.208.197.14 ip_proto udp src_port 1612 dst_port 13120 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11263 flower src_mac 02:13:d6:86:82:26 dst_mac 02:ad:aa:1f:fe:34 src_ip 82.230.141.114 dst_ip 46.250.75.95 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11264 flower src_mac 02:6e:df:4a:38:56 dst_mac 02:4c:b5:55:6d:0a src_ip 58.110.196.62 dst_ip 58.169.41.205 ip_proto icmp code 217 type 0 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11265 flower src_mac 02:1f:1c:2e:de:e3 dst_mac 02:11:f1:7c:10:ea vlan_id 3890 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11266 flower src_mac 02:58:70:af:46:ae dst_mac 02:2a:3b:51:26:e8 vlan_id 2558 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11267 flower src_mac 02:68:4b:f0:34:f9 dst_mac 02:27:0d:0a:37:ac action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11268 flower src_mac 02:33:20:dd:d6:5d dst_mac 02:0a:34:cf:c3:ef vlan_id 3095 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11269 flower src_mac 02:de:cc:d7:a6:01 dst_mac 02:a2:52:be:85:25 src_ip 77.133.179.52 dst_ip 86.134.82.150 ip_proto icmp code 71 type 11 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11270 flower src_mac 02:c7:8f:48:85:21 dst_mac 02:12:af:d1:e9:75 vlan_id 1334 vlan_ethtype ip src_ip 21.61.134.188 dst_ip 78.243.49.33 ip_proto udp src_port 19958 dst_port 14665 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11271 flower src_mac 02:d2:42:a2:e7:bf dst_mac 02:99:62:77:53:46 vlan_id 3977 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11272 flower src_mac 02:7d:fd:fc:81:d4 dst_mac 02:93:6e:32:f6:f8 vlan_id 2485 vlan_ethtype 0x0800 src_ip 117.65.220.227 dst_ip 93.193.248.119 ip_proto tcp src_port 8481 dst_port 27586 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11273 flower src_mac 02:ac:f3:c3:18:0b dst_mac 02:c3:5b:ed:a6:32 vlan_id 1174 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11274 flower src_mac 02:f6:c6:b1:e7:0a dst_mac 02:c5:d5:d7:c9:cd action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11275 flower src_mac 02:bc:9a:25:a3:29 dst_mac 02:1b:b1:5a:00:c7 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11276 flower src_mac 02:06:6a:c4:8a:db dst_mac 02:d8:95:1f:ba:98 vlan_id 2999 vlan_ethtype ip src_ip 50.66.42.179 dst_ip 52.107.199.237 ip_proto tcp src_port 25260 dst_port 9513 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11277 flower src_mac 02:41:b8:95:71:dc dst_mac 02:27:e2:2f:b6:27 vlan_id 1804 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11278 flower src_mac 02:e7:da:97:af:20 dst_mac 02:22:31:9a:a4:99 vlan_id 2320 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11279 flower src_mac 02:d0:d8:db:0d:b9 dst_mac 02:ea:bc:f2:15:b3 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11280 flower src_mac 02:f2:ba:5c:cd:a9 dst_mac 02:33:93:85:87:aa src_ip 17.174.63.38 dst_ip 122.199.251.79 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11281 flower src_mac 02:00:93:d0:e2:f7 dst_mac 02:b1:82:c8:2c:7f vlan_id 2496 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11282 flower src_mac 02:e0:51:3b:69:93 dst_mac 02:3f:90:db:ce:f1 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11283 flower src_mac 02:36:e5:b3:b2:d7 dst_mac 02:d6:75:d0:a5:c0 action pass && tc filter add dev swp1 ingress protocol ip pref 11284 flower src_mac 02:43:6e:cc:f9:3b dst_mac 02:23:fe:ca:32:5a src_ip 84.124.92.103 dst_ip 21.76.99.234 ip_proto icmp code 51 type 3 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11285 flower src_mac 02:20:ad:94:fd:c0 dst_mac 02:5d:2d:bc:61:72 vlan_id 3021 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11286 flower src_mac 02:9d:85:14:3e:a7 dst_mac 02:31:4c:5b:ab:b0 vlan_id 2168 vlan_ethtype ipv4 src_ip 20.129.7.223 dst_ip 123.101.6.71 ip_proto tcp src_port 44950 dst_port 34746 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11287 flower src_mac 02:91:49:a1:8b:ce dst_mac 02:8a:bd:b5:84:a5 vlan_id 3671 vlan_ethtype 0x0800 src_ip 120.84.255.201 dst_ip 21.223.129.25 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11288 flower src_mac 02:ea:37:3b:53:87 dst_mac 02:1b:96:5c:bf:6b vlan_id 3852 vlan_ethtype 0x0800 src_ip 119.131.166.90 dst_ip 19.91.247.82 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11289 flower src_mac 02:ec:de:bf:9b:a4 dst_mac 02:15:c7:39:17:b3 vlan_id 252 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11290 flower src_mac 02:dd:6f:f9:15:b5 dst_mac 02:e6:18:fe:d8:da vlan_id 793 vlan_ethtype ipv4 src_ip 51.115.42.12 dst_ip 16.128.194.183 ip_proto udp src_port 45098 dst_port 31303 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11291 flower src_mac 02:66:79:cc:28:53 dst_mac 02:d3:6d:81:7d:30 src_ip 114.93.36.95 dst_ip 19.13.2.127 ip_proto icmp code 181 type 18 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11292 flower src_mac 02:bc:10:22:35:62 dst_mac 02:be:5a:4f:d0:63 vlan_id 787 vlan_ethtype ipv4 src_ip 126.247.7.227 dst_ip 108.62.238.85 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11293 flower src_mac 02:aa:1c:e8:45:d7 dst_mac 02:95:f4:9c:7a:c6 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11294 flower src_mac 02:58:e5:0d:a1:0b dst_mac 02:83:f9:34:80:db src_ip 83.101.65.101 dst_ip 39.182.40.90 ip_proto icmp code 65 type 15 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11295 flower src_mac 02:f5:0e:e8:7d:b3 dst_mac 02:cc:ef:1c:71:a9 vlan_id 1993 vlan_ethtype 0x0800 src_ip 95.91.6.116 dst_ip 93.16.127.94 ip_proto udp src_port 62279 dst_port 34617 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11296 flower src_mac 02:75:be:0b:5d:91 dst_mac 02:e6:e5:78:e3:ce vlan_id 3578 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11297 flower src_mac 02:1f:71:5b:69:67 dst_mac 02:b6:41:66:71:42 src_ip 73.40.111.115 dst_ip 68.170.100.31 ip_proto tcp src_port 6852 dst_port 48124 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11298 flower src_mac 02:ad:0a:4b:04:4e dst_mac 02:fb:17:87:bf:77 src_ip 111.227.157.147 dst_ip 125.236.199.226 ip_proto icmp code 61 type 18 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11299 flower src_mac 02:49:a5:b6:cd:e2 dst_mac 02:31:c8:63:d4:5a action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11300 flower src_mac 02:ce:94:67:0b:f1 dst_mac 02:87:e1:2c:7f:40 vlan_id 4073 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11301 flower src_mac 02:98:a5:e6:59:14 dst_mac 02:48:34:07:bd:60 vlan_id 3465 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11302 flower src_mac 02:c3:af:f8:51:d5 dst_mac 02:32:8b:61:52:9c action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11303 flower src_mac 02:94:25:1f:eb:b6 dst_mac 02:19:50:1c:43:eb vlan_id 3081 vlan_ethtype ipv4 src_ip 72.57.196.41 dst_ip 51.213.173.62 ip_proto tcp src_port 55737 dst_port 60216 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11304 flower src_mac 02:f7:f3:ca:66:23 dst_mac 02:1b:cb:a0:88:3b action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11305 flower src_mac 02:ff:16:43:d2:c7 dst_mac 02:19:78:da:da:c3 src_ip 45.202.81.120 dst_ip 101.236.230.69 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11306 flower src_mac 02:8d:fd:36:ba:14 dst_mac 02:1a:4d:81:a1:e8 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11307 flower src_mac 02:9a:91:e5:41:31 dst_mac 02:64:b1:d7:33:ec vlan_id 1172 vlan_ethtype ip src_ip 56.196.31.89 dst_ip 79.95.71.152 ip_proto udp src_port 17977 dst_port 19962 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11308 flower src_mac 02:65:7f:30:cc:27 dst_mac 02:2a:70:42:10:ad src_ip 19.185.165.204 dst_ip 49.188.44.147 ip_proto tcp src_port 21054 dst_port 22661 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11309 flower src_mac 02:d8:b0:dc:18:7b dst_mac 02:51:ed:73:91:9c src_ip 29.186.21.98 dst_ip 74.196.136.50 ip_proto udp src_port 39756 dst_port 39763 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11310 flower src_mac 02:8b:ab:76:f3:9d dst_mac 02:2c:f3:04:8c:ae action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11311 flower src_mac 02:c1:fe:9f:8e:fd dst_mac 02:8e:8a:82:37:04 src_ip 113.235.123.27 dst_ip 66.238.105.224 ip_proto tcp src_port 56114 dst_port 50878 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11312 flower src_mac 02:33:33:3a:35:11 dst_mac 02:9d:ca:97:da:5f src_ip 18.196.152.240 dst_ip 64.44.240.184 ip_proto tcp src_port 64141 dst_port 42520 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11313 flower src_mac 02:5b:22:23:3b:d0 dst_mac 02:e5:41:f4:5f:8c vlan_id 3830 vlan_ethtype ip src_ip 58.205.86.13 dst_ip 73.222.129.44 ip_proto udp src_port 33067 dst_port 57919 action trap && tc filter add dev swp1 ingress protocol ip pref 11314 flower src_mac 02:a6:fb:b6:33:cc dst_mac 02:af:2a:67:67:3b src_ip 12.29.8.5 dst_ip 74.9.19.110 ip_proto tcp src_port 50769 dst_port 60468 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11315 flower src_mac 02:f2:23:55:cc:84 dst_mac 02:30:de:85:f1:c5 vlan_id 1000 vlan_ethtype 0x0800 src_ip 110.139.53.185 dst_ip 58.232.141.24 ip_proto tcp src_port 61585 dst_port 32084 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11316 flower src_mac 02:1a:80:a8:12:c6 dst_mac 02:93:54:6d:87:80 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11317 flower src_mac 02:58:ba:cf:51:9c dst_mac 02:7e:ec:72:6e:3a vlan_id 2546 vlan_ethtype 0x0800 src_ip 62.124.66.216 dst_ip 29.159.142.50 ip_proto tcp src_port 29890 dst_port 12333 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11318 flower src_mac 02:41:5a:47:49:26 dst_mac 02:9f:76:d1:93:d1 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11319 flower src_mac 02:e2:29:0f:ae:db dst_mac 02:2b:3a:65:1a:d3 vlan_id 2960 vlan_ethtype 0x0800 src_ip 73.171.226.237 dst_ip 68.52.187.18 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11320 flower src_mac 02:c1:1d:e8:5b:9a dst_mac 02:8d:9d:99:f3:28 vlan_id 2833 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11321 flower src_mac 02:64:a4:16:fc:3f dst_mac 02:c1:60:d7:91:0f vlan_id 499 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11322 flower src_mac 02:80:74:e1:b7:b8 dst_mac 02:8d:ae:7b:28:07 vlan_id 1740 vlan_ethtype ipv4 src_ip 111.33.29.234 dst_ip 39.138.15.2 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11323 flower src_mac 02:16:d5:99:8f:be dst_mac 02:a8:29:83:cc:d8 vlan_id 803 vlan_ethtype ipv4 src_ip 68.18.243.31 dst_ip 105.113.190.35 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11324 flower src_mac 02:66:bb:00:1b:ab dst_mac 02:99:87:83:83:82 src_ip 30.70.238.186 dst_ip 105.53.22.235 ip_proto tcp src_port 30783 dst_port 65196 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11325 flower src_mac 02:21:8f:fb:ab:3d dst_mac 02:52:7b:c0:6f:8b src_ip 92.237.78.188 dst_ip 89.171.124.112 ip_proto icmp code 117 type 3 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11326 flower src_mac 02:57:63:b9:84:e8 dst_mac 02:fb:aa:83:61:5f src_ip 61.63.136.160 dst_ip 36.249.78.12 ip_proto udp src_port 54753 dst_port 11761 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11327 flower src_mac 02:3c:e9:99:76:76 dst_mac 02:49:93:28:9f:db action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11328 flower src_mac 02:98:c6:74:34:99 dst_mac 02:03:6c:81:6e:1a action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11329 flower src_mac 02:87:81:6f:6e:87 dst_mac 02:34:0b:a9:54:04 vlan_id 46 vlan_ethtype 0x0800 src_ip 73.227.229.186 dst_ip 39.206.182.21 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11330 flower src_mac 02:9b:6d:24:6f:74 dst_mac 02:77:d6:1d:df:05 vlan_id 662 vlan_ethtype ip src_ip 63.116.84.14 dst_ip 55.39.16.58 ip_proto udp src_port 17446 dst_port 48053 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11331 flower src_mac 02:86:df:8e:04:3f dst_mac 02:11:d6:d4:d0:43 vlan_id 1491 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11332 flower src_mac 02:70:77:6a:a1:9b dst_mac 02:e8:ff:2e:b0:4d vlan_id 3207 vlan_ethtype ipv4 src_ip 38.182.145.204 dst_ip 94.192.112.131 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11333 flower src_mac 02:d6:11:29:5a:2c dst_mac 02:be:42:11:ff:bb src_ip 29.90.9.39 dst_ip 56.222.243.156 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11334 flower src_mac 02:6f:5e:34:95:b1 dst_mac 02:c6:d9:14:ce:03 vlan_id 981 vlan_ethtype ipv4 src_ip 22.81.212.219 dst_ip 102.8.54.222 action drop && tc filter add dev swp1 ingress protocol ip pref 11335 flower src_mac 02:6b:5b:46:db:53 dst_mac 02:27:3d:ab:28:37 src_ip 86.193.160.213 dst_ip 32.101.94.126 ip_proto tcp src_port 35256 dst_port 33206 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11336 flower src_mac 02:14:8a:1e:7f:d4 dst_mac 02:8c:cf:04:90:61 vlan_id 1292 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11337 flower src_mac 02:db:b4:95:66:f3 dst_mac 02:85:fc:4d:0e:f1 vlan_id 2558 vlan_ethtype ip src_ip 86.237.179.82 dst_ip 77.122.32.50 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11338 flower src_mac 02:bf:00:c1:33:f9 dst_mac 02:fb:c6:10:74:58 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11339 flower src_mac 02:7b:58:6b:c9:bb dst_mac 02:e8:6f:98:ef:e5 vlan_id 2063 vlan_ethtype ipv4 src_ip 100.103.46.242 dst_ip 114.10.111.12 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11340 flower src_mac 02:ee:a8:25:01:1f dst_mac 02:ab:ff:89:a9:79 vlan_id 1261 vlan_ethtype ipv4 src_ip 108.35.107.161 dst_ip 94.171.169.87 ip_proto tcp src_port 47667 dst_port 9601 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11341 flower src_mac 02:ff:48:c4:d7:aa dst_mac 02:d6:28:e5:32:13 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11342 flower src_mac 02:dc:7e:e4:ea:6e dst_mac 02:f1:44:e9:50:00 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11343 flower src_mac 02:0b:35:b1:a3:07 dst_mac 02:96:63:6e:a8:c2 vlan_id 1760 vlan_ethtype 0x0800 src_ip 67.192.167.36 dst_ip 79.235.186.247 ip_proto tcp src_port 9365 dst_port 49477 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11344 flower src_mac 02:1b:16:df:30:b6 dst_mac 02:16:ba:16:b5:a5 src_ip 83.14.34.48 dst_ip 95.30.44.152 ip_proto icmp code 111 type 15 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11345 flower src_mac 02:12:a4:1d:28:38 dst_mac 02:43:86:4c:de:50 vlan_id 4002 vlan_ethtype ipv4 src_ip 55.31.17.150 dst_ip 80.25.168.47 ip_proto tcp src_port 64626 dst_port 17990 action trap && tc filter add dev swp1 ingress protocol ip pref 11346 flower src_mac 02:42:6e:a3:7b:81 dst_mac 02:ad:07:21:11:18 src_ip 82.188.167.122 dst_ip 48.241.255.22 ip_proto icmp code 93 type 13 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11347 flower src_mac 02:3d:37:00:b5:5c dst_mac 02:c2:b9:83:ab:9e src_ip 116.133.32.12 dst_ip 98.1.115.242 ip_proto udp src_port 9451 dst_port 50900 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11348 flower src_mac 02:9d:42:84:18:9d dst_mac 02:00:ee:b4:b6:2e action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11349 flower src_mac 02:e3:7e:88:f9:53 dst_mac 02:05:19:86:26:3e vlan_id 3490 vlan_ethtype ip src_ip 105.13.191.37 dst_ip 53.36.253.3 ip_proto tcp src_port 60848 dst_port 9116 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11350 flower src_mac 02:61:ff:c6:d7:28 dst_mac 02:77:a9:43:73:33 src_ip 117.218.29.138 dst_ip 21.75.182.122 ip_proto tcp src_port 46217 dst_port 50621 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11351 flower src_mac 02:22:00:d3:da:02 dst_mac 02:76:6e:a0:34:a0 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11352 flower src_mac 02:27:ac:08:c2:4f dst_mac 02:c1:29:c5:fb:42 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11353 flower src_mac 02:3a:f2:60:86:d4 dst_mac 02:2c:1e:82:a9:4d action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11354 flower src_mac 02:a2:88:22:66:e4 dst_mac 02:5d:68:31:71:31 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11355 flower src_mac 02:7c:a3:a8:97:3a dst_mac 02:d3:ee:08:52:1f vlan_id 1496 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11356 flower src_mac 02:ec:ed:24:c8:f9 dst_mac 02:f6:d4:69:ac:04 vlan_id 72 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11357 flower src_mac 02:0e:d4:95:bb:c9 dst_mac 02:2d:50:a5:47:9a src_ip 87.135.123.147 dst_ip 39.192.203.142 ip_proto icmp code 122 type 5 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11358 flower src_mac 02:b5:41:0e:37:78 dst_mac 02:86:bc:89:f5:27 vlan_id 1771 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11359 flower src_mac 02:d4:31:43:89:ab dst_mac 02:5d:ed:da:2d:18 src_ip 124.72.82.137 dst_ip 108.162.34.23 ip_proto icmp code 209 type 13 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11360 flower src_mac 02:4e:a4:49:86:d8 dst_mac 02:ec:aa:dc:f0:f3 src_ip 35.242.40.167 dst_ip 48.235.174.180 ip_proto udp src_port 15003 dst_port 38073 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11361 flower src_mac 02:04:6d:97:35:f4 dst_mac 02:13:27:aa:a6:76 vlan_id 2766 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11362 flower src_mac 02:35:75:0e:9d:c1 dst_mac 02:9d:71:19:e2:ed src_ip 119.72.227.235 dst_ip 85.159.201.72 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11363 flower src_mac 02:a1:5d:6e:6e:ee dst_mac 02:31:11:29:35:9f src_ip 76.144.126.152 dst_ip 76.22.87.183 ip_proto tcp src_port 3337 dst_port 60399 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11364 flower src_mac 02:ca:af:db:0d:5d dst_mac 02:0c:13:90:98:58 action pass && tc filter add dev swp1 ingress protocol ip pref 11365 flower src_mac 02:b6:2a:97:4f:0f dst_mac 02:bb:89:54:72:27 src_ip 13.194.162.210 dst_ip 113.163.57.84 ip_proto icmp code 3 type 4 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11366 flower src_mac 02:9f:82:72:f5:b4 dst_mac 02:e5:21:68:f4:56 vlan_id 1622 vlan_ethtype ip src_ip 52.232.233.48 dst_ip 49.225.6.103 ip_proto tcp src_port 3481 dst_port 19540 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11367 flower src_mac 02:7b:a0:19:90:64 dst_mac 02:27:48:86:bc:a1 vlan_id 1482 vlan_ethtype 0x0800 src_ip 50.188.49.72 dst_ip 35.182.109.19 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11368 flower src_mac 02:69:89:57:dc:69 dst_mac 02:06:62:f4:0b:e4 vlan_id 3646 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11369 flower src_mac 02:b0:3f:c5:e1:96 dst_mac 02:32:e2:11:94:a1 vlan_id 3829 vlan_ethtype ip src_ip 89.78.91.154 dst_ip 17.63.172.21 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11370 flower src_mac 02:7c:7f:16:3f:30 dst_mac 02:4a:7d:76:d0:5e vlan_id 166 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11371 flower src_mac 02:37:c5:bc:b3:80 dst_mac 02:6f:5d:76:e7:83 vlan_id 3911 vlan_ethtype 0x0800 src_ip 21.191.167.177 dst_ip 122.100.23.239 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11372 flower src_mac 02:1f:de:3b:d4:f2 dst_mac 02:2c:39:0f:02:4c src_ip 59.23.21.126 dst_ip 77.132.17.45 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11373 flower src_mac 02:02:cb:4f:8a:33 dst_mac 02:47:fb:d6:34:48 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11374 flower src_mac 02:0e:6f:df:3f:e0 dst_mac 02:7c:44:ad:79:d0 vlan_id 1007 vlan_ethtype ip src_ip 64.135.47.26 dst_ip 106.114.174.147 action drop && tc filter add dev swp1 ingress protocol ip pref 11375 flower src_mac 02:97:89:7a:06:9d dst_mac 02:34:09:1c:f0:6a src_ip 66.83.155.178 dst_ip 100.45.174.44 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11376 flower src_mac 02:92:67:40:80:d0 dst_mac 02:5d:9c:3e:3a:a9 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11377 flower src_mac 02:95:2b:26:ac:9a dst_mac 02:d0:e2:ba:53:56 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11378 flower src_mac 02:47:1e:11:7f:f2 dst_mac 02:97:3b:7a:0a:c1 vlan_id 3039 vlan_ethtype ip src_ip 79.240.204.102 dst_ip 62.96.93.10 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11379 flower src_mac 02:71:9e:d8:38:cc dst_mac 02:73:3a:f1:5f:3f vlan_id 3153 vlan_ethtype ip src_ip 35.32.126.97 dst_ip 31.250.33.79 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11380 flower src_mac 02:c4:3f:98:ff:f9 dst_mac 02:71:87:f4:f8:39 src_ip 118.54.102.22 dst_ip 115.12.45.29 ip_proto tcp src_port 6858 dst_port 670 action pass && tc filter add dev swp1 ingress protocol ip pref 11381 flower src_mac 02:9b:cc:78:8c:5e dst_mac 02:4e:23:9d:a9:c8 src_ip 116.112.215.72 dst_ip 78.124.231.55 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11382 flower src_mac 02:9d:8c:af:f8:96 dst_mac 02:79:37:ff:2f:02 vlan_id 1812 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11383 flower src_mac 02:f7:69:b1:dd:c1 dst_mac 02:67:78:a8:11:f6 vlan_id 3060 vlan_ethtype ipv4 src_ip 64.139.176.126 dst_ip 35.216.0.17 ip_proto udp src_port 59383 dst_port 487 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11384 flower src_mac 02:0d:33:2e:eb:ac dst_mac 02:d4:a5:bd:d4:84 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11385 flower src_mac 02:68:c0:b9:19:b1 dst_mac 02:3c:31:72:2d:9d vlan_id 3747 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11386 flower src_mac 02:cd:69:df:01:77 dst_mac 02:f5:fe:18:51:e9 action pass && tc filter add dev swp1 ingress protocol ip pref 11387 flower src_mac 02:3b:c4:6c:86:f4 dst_mac 02:b8:e1:ae:ec:e7 src_ip 53.40.245.209 dst_ip 122.237.65.27 ip_proto udp src_port 29503 dst_port 36188 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11388 flower src_mac 02:c3:f6:b5:1f:6f dst_mac 02:d0:74:55:dc:0e vlan_id 568 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11389 flower src_mac 02:09:fc:c3:ee:f7 dst_mac 02:c2:3d:58:20:97 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11390 flower src_mac 02:80:5e:6c:c6:50 dst_mac 02:35:98:f3:9f:7b vlan_id 2032 vlan_ethtype 0x0800 src_ip 117.110.42.71 dst_ip 53.187.81.113 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11391 flower src_mac 02:4d:24:76:24:99 dst_mac 02:33:66:17:b6:51 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11392 flower src_mac 02:5f:fc:80:74:fc dst_mac 02:fa:95:29:54:db vlan_id 120 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11393 flower src_mac 02:d0:1f:44:1a:24 dst_mac 02:b8:ae:4d:9a:c6 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11394 flower src_mac 02:db:ef:9b:2e:26 dst_mac 02:98:18:bb:c9:1b action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11395 flower src_mac 02:e8:85:8e:e9:05 dst_mac 02:01:ee:7b:26:7d src_ip 114.171.190.115 dst_ip 18.61.70.54 ip_proto icmp code 195 type 5 action trap && tc filter add dev swp1 ingress protocol ip pref 11396 flower src_mac 02:b9:f1:8f:f9:76 dst_mac 02:c1:75:c1:6a:f5 src_ip 109.81.12.156 dst_ip 11.9.150.44 ip_proto udp src_port 33773 dst_port 36727 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11397 flower src_mac 02:1e:a9:34:da:4a dst_mac 02:3b:70:a0:c3:88 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11398 flower src_mac 02:b6:c2:2a:a2:c0 dst_mac 02:f1:4f:92:95:16 action drop && tc filter add dev swp1 ingress protocol ip pref 11399 flower src_mac 02:45:ad:a0:12:8d dst_mac 02:33:cf:2f:8c:32 src_ip 53.7.28.145 dst_ip 122.36.22.13 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11400 flower src_mac 02:34:11:33:10:2d dst_mac 02:08:bb:2d:0e:57 vlan_id 2174 vlan_ethtype ip src_ip 61.78.16.110 dst_ip 102.150.66.248 ip_proto tcp src_port 42221 dst_port 15538 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11401 flower src_mac 02:75:b1:91:5d:d5 dst_mac 02:89:71:6d:9f:bc src_ip 24.45.81.8 dst_ip 113.42.212.204 ip_proto icmp code 7 type 15 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11402 flower src_mac 02:7c:0b:a2:33:91 dst_mac 02:bb:5a:d4:84:43 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11403 flower src_mac 02:4d:17:06:74:0e dst_mac 02:81:9c:fc:06:3a vlan_id 1849 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11404 flower src_mac 02:86:58:ac:68:3e dst_mac 02:10:91:ad:d8:c3 vlan_id 998 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11405 flower src_mac 02:36:4e:75:9f:09 dst_mac 02:cd:2b:1c:4f:8f action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11406 flower src_mac 02:ac:3b:59:16:08 dst_mac 02:06:6e:b9:54:33 vlan_id 356 vlan_ethtype ipv4 src_ip 122.49.159.2 dst_ip 100.244.5.33 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11407 flower src_mac 02:3f:1b:32:e4:e5 dst_mac 02:c6:ff:3c:05:c0 vlan_id 3591 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11408 flower src_mac 02:09:b8:1e:60:93 dst_mac 02:4b:6a:73:db:47 vlan_id 3709 vlan_ethtype ipv4 src_ip 89.184.21.178 dst_ip 14.121.80.170 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11409 flower src_mac 02:dd:10:38:a7:bf dst_mac 02:4f:a4:e7:99:af action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11410 flower src_mac 02:7a:f6:0f:1b:85 dst_mac 02:55:63:53:e4:38 src_ip 103.104.231.122 dst_ip 100.154.25.9 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11411 flower src_mac 02:ec:e3:de:45:b2 dst_mac 02:e9:83:dd:d0:15 src_ip 70.100.237.194 dst_ip 70.18.56.150 ip_proto udp src_port 23136 dst_port 4831 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11412 flower src_mac 02:b4:8f:44:13:ff dst_mac 02:bd:aa:ea:32:7e vlan_id 1932 vlan_ethtype 0x0800 src_ip 111.139.50.48 dst_ip 37.43.58.193 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11413 flower src_mac 02:f6:fe:20:f6:f8 dst_mac 02:87:9e:70:47:9f vlan_id 3231 vlan_ethtype ip src_ip 22.193.236.188 dst_ip 100.16.45.68 ip_proto udp src_port 42609 dst_port 43880 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11414 flower src_mac 02:33:34:cf:ef:28 dst_mac 02:04:b3:ab:f4:c7 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11415 flower src_mac 02:38:f6:ae:12:23 dst_mac 02:a3:af:35:5b:32 src_ip 43.103.152.49 dst_ip 96.106.220.81 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11416 flower src_mac 02:1b:d1:e1:ec:6c dst_mac 02:2e:69:64:29:2f action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11417 flower src_mac 02:45:1d:28:f6:3c dst_mac 02:c3:93:fa:dd:a0 src_ip 78.225.89.141 dst_ip 40.83.245.93 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11418 flower src_mac 02:68:25:e0:fc:07 dst_mac 02:24:86:c5:1e:f5 vlan_id 4000 vlan_ethtype 0x0800 src_ip 97.29.236.136 dst_ip 27.23.198.109 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11419 flower src_mac 02:4e:fa:2b:bd:56 dst_mac 02:e6:4a:af:3e:1b src_ip 79.77.103.99 dst_ip 43.156.125.169 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11420 flower src_mac 02:20:b5:03:85:07 dst_mac 02:6c:da:d0:34:fe action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11421 flower src_mac 02:30:5e:30:99:98 dst_mac 02:4d:46:54:7e:ff action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11422 flower src_mac 02:fe:c9:0c:17:07 dst_mac 02:4c:23:01:af:56 vlan_id 3581 vlan_ethtype ipv4 src_ip 62.249.187.95 dst_ip 86.72.72.81 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11423 flower src_mac 02:96:ae:4f:05:e8 dst_mac 02:8d:be:59:c4:62 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11424 flower src_mac 02:3a:e6:96:76:dc dst_mac 02:96:16:23:a4:c7 vlan_id 315 vlan_ethtype ipv4 src_ip 82.55.221.151 dst_ip 90.177.198.122 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11425 flower src_mac 02:6a:9c:a5:91:d4 dst_mac 02:0b:92:3a:73:2f vlan_id 445 vlan_ethtype ip src_ip 105.36.50.187 dst_ip 114.231.46.160 ip_proto udp src_port 28015 dst_port 9535 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11426 flower src_mac 02:72:12:4c:4c:d4 dst_mac 02:19:84:1c:63:c4 vlan_id 3399 vlan_ethtype ipv4 src_ip 124.101.228.2 dst_ip 71.152.164.135 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11427 flower src_mac 02:a2:bb:1a:8e:6a dst_mac 02:68:86:a3:51:4f vlan_id 959 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ip pref 11428 flower src_mac 02:ee:b7:9a:dc:b0 dst_mac 02:dc:d4:80:42:37 src_ip 109.166.223.75 dst_ip 119.87.229.132 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11429 flower src_mac 02:b6:b8:c2:17:cc dst_mac 02:38:64:9d:3c:d8 src_ip 75.194.167.48 dst_ip 74.96.164.29 ip_proto tcp src_port 42011 dst_port 5363 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11430 flower src_mac 02:0c:ee:49:68:eb dst_mac 02:76:dd:25:a2:fe vlan_id 3714 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11431 flower src_mac 02:09:4e:80:ca:8e dst_mac 02:71:02:32:01:c5 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11432 flower src_mac 02:c1:16:9f:f3:a9 dst_mac 02:75:12:28:d8:15 src_ip 24.181.166.182 dst_ip 109.14.141.63 ip_proto udp src_port 44423 dst_port 611 action drop && tc filter add dev swp1 ingress protocol ip pref 11433 flower src_mac 02:75:0c:78:d5:42 dst_mac 02:0c:1b:5b:d4:38 src_ip 19.113.193.66 dst_ip 110.95.113.174 ip_proto tcp src_port 28145 dst_port 64356 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11434 flower src_mac 02:c4:1e:aa:d2:ae dst_mac 02:98:6e:61:84:6f action pass && tc filter add dev swp1 ingress protocol ip pref 11435 flower src_mac 02:b1:c2:4a:28:73 dst_mac 02:e7:5e:06:49:bb src_ip 16.168.11.63 dst_ip 18.83.68.158 ip_proto icmp code 139 type 16 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11436 flower src_mac 02:99:4d:62:99:0b dst_mac 02:ee:f9:84:6b:f5 vlan_id 504 vlan_ethtype ipv4 src_ip 91.197.158.23 dst_ip 26.74.201.65 ip_proto tcp src_port 5534 dst_port 23770 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11437 flower src_mac 02:59:6a:8e:db:76 dst_mac 02:3a:90:9e:3c:88 vlan_id 2074 vlan_ethtype ipv4 src_ip 66.7.124.219 dst_ip 66.192.252.68 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11438 flower src_mac 02:4d:af:d3:bd:88 dst_mac 02:94:da:e4:39:ed src_ip 57.139.24.99 dst_ip 32.176.251.23 ip_proto tcp src_port 16629 dst_port 55829 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11439 flower src_mac 02:f9:14:d8:6b:e9 dst_mac 02:6d:24:9c:41:d0 vlan_id 2363 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11440 flower src_mac 02:6c:70:c8:22:07 dst_mac 02:7e:84:7d:08:5e vlan_id 922 vlan_ethtype 0x0800 src_ip 121.73.158.184 dst_ip 87.18.128.191 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11441 flower src_mac 02:7c:7c:ea:ab:02 dst_mac 02:3b:7b:1a:6c:ce vlan_id 1061 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11442 flower src_mac 02:fb:0a:aa:2a:5a dst_mac 02:7a:a6:b4:e0:f2 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11443 flower src_mac 02:8d:a8:2f:66:13 dst_mac 02:b3:f9:3d:28:4f action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11444 flower src_mac 02:63:2e:25:53:c5 dst_mac 02:a4:72:d0:88:73 vlan_id 2810 vlan_ethtype ip src_ip 118.117.163.159 dst_ip 44.203.156.188 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11445 flower src_mac 02:0b:f8:3c:2a:f4 dst_mac 02:a0:0f:91:05:74 vlan_id 1698 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11446 flower src_mac 02:f9:df:94:f8:cb dst_mac 02:5d:01:a8:4b:0e vlan_id 3455 vlan_ethtype ipv4 src_ip 64.217.214.54 dst_ip 33.153.225.197 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11447 flower src_mac 02:04:09:5e:68:2c dst_mac 02:fe:92:dd:f0:21 vlan_id 1551 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11448 flower src_mac 02:97:59:90:c0:fa dst_mac 02:48:06:a0:56:90 vlan_id 1769 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11449 flower src_mac 02:d7:94:f2:4d:52 dst_mac 02:53:70:1c:7e:56 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11450 flower src_mac 02:a5:da:c3:6d:c9 dst_mac 02:f8:52:75:ff:92 vlan_id 2108 vlan_ethtype ip src_ip 23.17.52.14 dst_ip 23.90.10.105 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11451 flower src_mac 02:f8:b2:98:4e:13 dst_mac 02:24:e6:9b:5f:e6 vlan_id 2116 vlan_ethtype ipv4 src_ip 99.198.165.54 dst_ip 23.47.117.35 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11452 flower src_mac 02:81:38:67:4e:88 dst_mac 02:68:69:db:b0:db vlan_id 1868 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11453 flower src_mac 02:b6:4e:ce:f7:81 dst_mac 02:48:17:ac:8d:f9 vlan_id 3650 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11454 flower src_mac 02:8c:4c:28:d4:0c dst_mac 02:27:cb:94:82:da vlan_id 869 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11455 flower src_mac 02:0f:1e:2a:a5:3e dst_mac 02:5e:83:e8:1e:20 src_ip 78.54.154.49 dst_ip 64.244.41.30 action drop && tc filter add dev swp1 ingress protocol ip pref 11456 flower src_mac 02:97:f8:32:5a:43 dst_mac 02:66:6b:77:c0:0c src_ip 61.8.26.162 dst_ip 53.207.84.216 ip_proto udp src_port 7888 dst_port 11195 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11457 flower src_mac 02:90:52:64:7f:1f dst_mac 02:7a:02:0c:ba:9e vlan_id 802 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11458 flower src_mac 02:f4:7a:7f:c0:13 dst_mac 02:a7:79:45:f8:3e vlan_id 2045 vlan_ethtype ip src_ip 19.17.39.247 dst_ip 24.46.67.66 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11459 flower src_mac 02:a7:8f:ae:60:16 dst_mac 02:79:66:3a:24:c1 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11460 flower src_mac 02:31:3a:13:a7:d3 dst_mac 02:c9:82:84:15:03 vlan_id 1928 vlan_ethtype ipv4 src_ip 85.132.254.191 dst_ip 115.194.200.52 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11461 flower src_mac 02:e5:00:ea:b4:61 dst_mac 02:db:ae:3f:46:75 vlan_id 1700 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ip pref 11462 flower src_mac 02:b2:e3:e4:07:fc dst_mac 02:ff:31:b3:3f:6e src_ip 113.156.24.149 dst_ip 21.228.222.116 ip_proto tcp src_port 21800 dst_port 365 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11463 flower src_mac 02:8d:61:eb:42:e3 dst_mac 02:8f:02:6d:39:e9 src_ip 99.12.56.43 dst_ip 108.27.31.13 ip_proto udp src_port 59476 dst_port 9714 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11464 flower src_mac 02:ec:95:1e:78:d8 dst_mac 02:cc:b1:57:60:1c src_ip 76.152.166.109 dst_ip 73.233.2.88 ip_proto icmp code 251 type 15 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11465 flower src_mac 02:d4:fd:61:af:f1 dst_mac 02:b1:2a:d5:d0:ed vlan_id 3707 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11466 flower src_mac 02:96:60:d5:44:ab dst_mac 02:1b:7c:ac:f7:4c src_ip 126.77.130.132 dst_ip 20.212.14.96 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11467 flower src_mac 02:d5:08:c1:db:fd dst_mac 02:cf:1a:ec:5b:5f src_ip 50.62.171.62 dst_ip 45.232.84.61 ip_proto udp src_port 21851 dst_port 42179 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11468 flower src_mac 02:d6:1f:e0:0f:4b dst_mac 02:e2:61:98:8a:c4 vlan_id 1625 vlan_ethtype 0x0800 src_ip 91.61.49.37 dst_ip 64.63.189.223 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11469 flower src_mac 02:07:4e:6a:2b:d4 dst_mac 02:e6:37:7f:d8:9d vlan_id 2977 vlan_ethtype ip src_ip 100.125.131.201 dst_ip 112.79.41.205 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11470 flower src_mac 02:3b:76:e1:2f:f0 dst_mac 02:ca:70:10:23:ef vlan_id 2888 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ip pref 11471 flower src_mac 02:f4:0f:e5:2f:a1 dst_mac 02:60:3e:b4:ef:c4 src_ip 25.71.160.248 dst_ip 98.75.129.151 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11472 flower src_mac 02:e4:9f:f8:78:8b dst_mac 02:ab:61:b5:64:77 src_ip 26.17.251.234 dst_ip 121.223.189.147 ip_proto icmp code 242 type 15 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11473 flower src_mac 02:c4:81:9f:24:d3 dst_mac 02:28:08:d9:b9:9c action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11474 flower src_mac 02:bf:2c:c2:05:7b dst_mac 02:75:4b:ce:72:75 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11475 flower src_mac 02:96:d3:93:bf:c7 dst_mac 02:b9:93:19:34:bf action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11476 flower src_mac 02:4f:4b:00:ff:8f dst_mac 02:88:58:2f:19:76 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11477 flower src_mac 02:03:6e:73:72:a0 dst_mac 02:67:9c:26:46:5d vlan_id 3720 vlan_ethtype 0x0800 src_ip 108.179.234.188 dst_ip 69.142.98.3 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11478 flower src_mac 02:10:0e:8d:2a:24 dst_mac 02:83:d4:9c:d2:41 vlan_id 2445 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11479 flower src_mac 02:0d:20:41:e6:d9 dst_mac 02:2f:b9:e5:5d:01 src_ip 35.222.219.25 dst_ip 40.4.127.159 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11480 flower src_mac 02:34:33:fd:5f:37 dst_mac 02:f6:5c:b1:25:55 vlan_id 4006 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11481 flower src_mac 02:6b:04:13:27:84 dst_mac 02:be:0e:9c:87:30 action pass && tc filter add dev swp1 ingress protocol ip pref 11482 flower src_mac 02:55:d0:57:4e:13 dst_mac 02:dd:3d:0f:e7:af src_ip 32.23.148.85 dst_ip 93.87.199.153 ip_proto tcp src_port 21438 dst_port 8309 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11483 flower src_mac 02:13:bf:fa:1a:f1 dst_mac 02:4f:b9:fa:17:49 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11484 flower src_mac 02:5a:fd:79:77:bd dst_mac 02:30:8e:2e:b7:48 vlan_id 2565 vlan_ethtype ip src_ip 90.142.142.105 dst_ip 50.128.214.215 ip_proto udp src_port 44168 dst_port 1619 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11485 flower src_mac 02:cc:26:ad:28:17 dst_mac 02:0b:3b:03:a5:a7 vlan_id 3066 vlan_ethtype ipv4 src_ip 74.49.172.5 dst_ip 62.78.110.138 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11486 flower src_mac 02:81:20:3b:b2:f6 dst_mac 02:d0:2f:47:bd:45 vlan_id 1807 vlan_ethtype ipv4 src_ip 120.241.215.16 dst_ip 67.58.166.63 ip_proto udp src_port 38419 dst_port 23419 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11487 flower src_mac 02:7e:3b:30:0a:90 dst_mac 02:d3:63:f4:bc:fa src_ip 80.158.141.26 dst_ip 90.42.244.129 ip_proto tcp src_port 34167 dst_port 32992 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11488 flower src_mac 02:f4:be:1f:e6:41 dst_mac 02:c5:fc:6e:d4:f8 vlan_id 676 vlan_ethtype ip src_ip 32.46.102.165 dst_ip 38.238.99.237 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11489 flower src_mac 02:07:5e:c7:52:f4 dst_mac 02:44:ff:bd:55:3f vlan_id 1049 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11490 flower src_mac 02:4c:7b:5f:31:93 dst_mac 02:0b:34:58:d0:8f src_ip 72.185.11.154 dst_ip 100.108.54.133 ip_proto tcp src_port 19089 dst_port 3953 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11491 flower src_mac 02:10:c0:e5:dc:a4 dst_mac 02:39:d7:7d:ba:e1 vlan_id 478 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11492 flower src_mac 02:23:8a:44:b1:e6 dst_mac 02:27:33:fa:ea:a4 action pass && tc filter add dev swp1 ingress protocol ip pref 11493 flower src_mac 02:03:7e:43:66:81 dst_mac 02:7e:3a:bb:8a:68 src_ip 40.87.48.162 dst_ip 37.155.244.203 ip_proto icmp code 210 type 0 action drop && tc filter add dev swp1 ingress protocol ip pref 11494 flower src_mac 02:8f:e6:44:3f:f5 dst_mac 02:7a:87:9f:ab:56 src_ip 35.220.79.161 dst_ip 38.101.252.96 ip_proto udp src_port 62470 dst_port 14334 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11495 flower src_mac 02:8d:2a:cf:57:b9 dst_mac 02:90:c0:21:f1:2d vlan_id 3538 vlan_ethtype ipv4 src_ip 81.197.97.215 dst_ip 111.49.221.184 ip_proto tcp src_port 63092 dst_port 46507 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11496 flower src_mac 02:cf:d5:b8:05:8d dst_mac 02:2d:c3:df:f9:35 src_ip 66.241.235.168 dst_ip 97.154.174.152 ip_proto tcp src_port 20581 dst_port 6288 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11497 flower src_mac 02:6c:3b:61:e4:18 dst_mac 02:4f:35:3c:20:ba src_ip 52.63.235.104 dst_ip 68.204.210.161 ip_proto icmp code 66 type 16 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11498 flower src_mac 02:a9:90:86:6a:e0 dst_mac 02:52:c2:0f:e0:17 vlan_id 3435 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11499 flower src_mac 02:29:db:ad:36:d3 dst_mac 02:43:bb:f8:6e:6a vlan_id 1520 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11500 flower src_mac 02:b5:fa:c6:53:76 dst_mac 02:93:77:7f:83:dd vlan_id 1718 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11501 flower src_mac 02:09:b5:86:98:95 dst_mac 02:86:7e:9b:ef:86 vlan_id 265 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11502 flower src_mac 02:c9:87:3d:ac:54 dst_mac 02:0e:d7:3c:c2:70 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11503 flower src_mac 02:4a:66:4e:a9:36 dst_mac 02:a4:b0:1c:0a:8a vlan_id 2412 vlan_ethtype ipv4 src_ip 21.214.50.109 dst_ip 108.130.19.30 ip_proto tcp src_port 47134 dst_port 35363 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11504 flower src_mac 02:b8:c4:db:bc:3d dst_mac 02:e5:69:aa:f2:5c vlan_id 1672 vlan_ethtype ip src_ip 88.0.146.120 dst_ip 51.134.241.54 ip_proto udp src_port 21357 dst_port 47095 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11505 flower src_mac 02:bb:d6:b5:50:7a dst_mac 02:6f:d4:1f:55:5c vlan_id 1755 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11506 flower src_mac 02:21:5c:81:80:b5 dst_mac 02:d5:39:ec:2b:c0 vlan_id 3353 vlan_ethtype 0x0800 src_ip 66.8.65.74 dst_ip 78.246.127.11 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11507 flower src_mac 02:88:0a:b5:67:29 dst_mac 02:a2:cb:21:cb:f2 src_ip 56.224.182.44 dst_ip 106.191.245.204 ip_proto tcp src_port 683 dst_port 58063 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11508 flower src_mac 02:ec:ec:b3:0c:b6 dst_mac 02:97:50:c8:35:f0 vlan_id 848 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11509 flower src_mac 02:61:83:5c:39:d3 dst_mac 02:76:10:dd:08:cc vlan_id 1497 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11510 flower src_mac 02:55:b7:f3:41:d9 dst_mac 02:38:33:06:57:aa vlan_id 2977 vlan_ethtype 0x0800 src_ip 39.155.182.189 dst_ip 11.109.57.206 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11511 flower src_mac 02:2b:49:8c:de:51 dst_mac 02:e5:93:92:d3:80 vlan_id 179 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11512 flower src_mac 02:e4:aa:13:79:d7 dst_mac 02:b5:f5:bb:07:36 action pass && tc filter add dev swp1 ingress protocol ip pref 11513 flower src_mac 02:92:08:87:82:18 dst_mac 02:b2:21:06:54:5e src_ip 44.255.175.73 dst_ip 24.92.173.150 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11514 flower src_mac 02:25:82:46:a3:ba dst_mac 02:cf:e0:55:2f:bf src_ip 63.90.131.141 dst_ip 110.83.196.246 ip_proto icmp code 199 type 15 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11515 flower src_mac 02:8d:f3:71:67:a6 dst_mac 02:ac:2b:e6:2a:1b action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11516 flower src_mac 02:15:08:3f:49:73 dst_mac 02:ae:cf:da:a7:ce src_ip 64.253.178.88 dst_ip 115.171.0.154 ip_proto udp src_port 15130 dst_port 28672 action trap && tc filter add dev swp1 ingress protocol ip pref 11517 flower src_mac 02:e8:00:c1:ac:99 dst_mac 02:05:48:22:ed:bc src_ip 51.198.48.189 dst_ip 41.224.71.227 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11518 flower src_mac 02:3b:7b:e4:c8:36 dst_mac 02:75:cf:62:ab:a3 vlan_id 2786 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11519 flower src_mac 02:4b:2a:50:e5:e2 dst_mac 02:b7:b0:68:2a:21 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11520 flower src_mac 02:00:06:00:db:38 dst_mac 02:ec:84:a5:25:0c action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11521 flower src_mac 02:08:55:0b:b2:15 dst_mac 02:a3:ce:83:fb:f8 vlan_id 2840 vlan_ethtype ip src_ip 93.68.194.60 dst_ip 52.137.108.141 ip_proto udp src_port 24606 dst_port 37875 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11522 flower src_mac 02:79:c9:fd:97:d8 dst_mac 02:29:af:8f:1e:6e action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11523 flower src_mac 02:27:b4:c3:a5:e8 dst_mac 02:de:17:84:ff:79 src_ip 76.148.22.51 dst_ip 95.105.150.44 ip_proto udp src_port 29663 dst_port 53130 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11524 flower src_mac 02:60:f4:83:be:5d dst_mac 02:23:1c:e3:97:bb src_ip 102.228.137.230 dst_ip 18.9.240.211 ip_proto icmp code 251 type 17 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11525 flower src_mac 02:ef:25:8c:79:70 dst_mac 02:07:f2:67:e1:bf src_ip 82.60.53.117 dst_ip 90.35.252.240 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11526 flower src_mac 02:31:81:df:8f:1b dst_mac 02:b2:19:bf:6f:9f action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11527 flower src_mac 02:c8:31:ce:ed:ef dst_mac 02:6e:3b:9e:ad:4f src_ip 62.135.165.39 dst_ip 66.254.106.73 ip_proto udp src_port 7653 dst_port 58611 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11528 flower src_mac 02:8d:c9:32:89:ec dst_mac 02:e5:70:ba:9d:14 vlan_id 695 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11529 flower src_mac 02:44:1c:5c:84:4d dst_mac 02:16:b7:13:9a:0e action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11530 flower src_mac 02:2a:cd:a0:0c:01 dst_mac 02:77:2f:34:72:7b vlan_id 373 vlan_ethtype ipv4 src_ip 63.166.73.208 dst_ip 70.139.139.185 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11531 flower src_mac 02:7c:e4:07:d4:84 dst_mac 02:13:8a:00:f6:32 src_ip 123.66.138.27 dst_ip 124.15.83.197 ip_proto tcp src_port 32813 dst_port 1738 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11532 flower src_mac 02:03:05:20:ef:fb dst_mac 02:52:f3:22:75:b1 vlan_id 1542 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11533 flower src_mac 02:f6:7f:02:da:01 dst_mac 02:a7:37:a4:b8:e0 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11534 flower src_mac 02:bc:1e:94:ff:ed dst_mac 02:36:27:fa:e8:55 vlan_id 883 vlan_ethtype ipv4 src_ip 18.15.38.139 dst_ip 14.234.111.22 action trap && tc filter add dev swp1 ingress protocol ip pref 11535 flower src_mac 02:43:fb:6c:3f:a5 dst_mac 02:ab:7f:79:8c:de src_ip 86.14.166.52 dst_ip 21.72.15.138 ip_proto tcp src_port 50366 dst_port 51259 action pass INFO asyncssh:logging.py:92 [conn=24, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc filter show dev swp1 ingress | grep action | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=12] Command: tc filter show dev swp1 ingress | grep action | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=12] Channel closed DEBUG agg1:Logger.py:156 1536 INFO asyncssh:logging.py:92 [conn=24, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter show dev swp1 ingress | grep in_hw | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=14] Command: tc filter show dev swp1 ingress | grep in_hw | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=14] Channel closed DEBUG agg1:Logger.py:156 1536 INFO DENT:Logger.py:84 [DENT aggregation 1] Total number of rules: 1536, offloaded: 1536 INFO asyncssh:logging.py:92 [conn=24, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 10000 && tc filter delete dev swp1 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=16] Command: tc filter delete dev swp1 ingress pref 10000 && tc filter delete dev swp1 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc filter show dev swp1 ingress pref 10000 && tc filter show dev swp1 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=18] Command: tc filter show dev swp1 ingress pref 10000 && tc filter show dev swp1 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=18] Channel closed DEBUG agg1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_rule_deletion from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=24, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:30:42 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=24, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=24, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=24, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=22] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=24, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=24] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:30:42 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=24, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=26] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:30:42 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=24, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=24, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=24, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=24, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=24, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=24, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=24, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=24, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=24, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=50] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=24, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=24, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=52] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=24, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=52] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=24, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=24, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=24, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=56] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=24, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=24, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=58] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=24, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl.py::test_acl_addition_deletion_under_traffic 172.91
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_addition_deletion_under_traffic">Starting testcase:test_acl_addition_deletion_under_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1120' coro=<test_acl_addition_deletion_under_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:272> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=24, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=25] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=25] Local address: 172.17.0.3, port 54234 INFO asyncssh:logging.py:92 [conn=25] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=25] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=25] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:30:47 PM UTC INFO asyncssh:logging.py:92 [conn=25, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=25, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=25, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=25, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=25, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=25, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=5] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=25, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=6] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=25, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x0800 pref 49000 flower skip_sw src_ip 45.21.222.100 dst_ip 121.57.120.100 ip_proto udp src_port 62903 dst_port 28030 action pass && tc filter add dev swp1 ingress pref 49001 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=25, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=8] Command: tc filter add dev swp1 ingress protocol 0x0800 pref 49000 flower skip_sw src_ip 45.21.222.100 dst_ip 121.57.120.100 ip_proto udp src_port 62903 dst_port 28030 action pass && tc filter add dev swp1 ingress pref 49001 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=25, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=10] Command: tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"udp","dst_ip":"121.57.120.100","src_ip":"45.21.222.100","dst_port":28030,"src_port":62903},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_eth_type_ipv4_ip_proto_udp_dst_ip_121.57.120.100_src_ip_45.21.222.100_dst_port_28030_src_port_62903 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e841b10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_eth_type_ipv4_ip_proto_udp_dst_ip_121.57.120.100_src_ip_45.21.222.100_dst_port_28030_src_port_62903 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 59908 Rx 59908 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_eth_type_ipv4_ip_proto_udp_dst_ip_121.57.120.100_src_ip_45.21.222.100_dst_port_28030_src_port_62903 Tx Frames: 59908, Rx Frames: 59908, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=25, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=12] Command: tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e842f80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_eth_type_ipv4_ip_proto_udp_dst_ip_121.57.120.100_src_ip_45.21.222.100_dst_port_28030_src_port_62903 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 86527 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_eth_type_ipv4_ip_proto_udp_dst_ip_121.57.120.100_src_ip_45.21.222.100_dst_port_28030_src_port_62903 Tx Frames: 86527, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=25, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x0800 pref 49000 flower skip_sw src_ip 45.21.222.100 dst_ip 121.57.120.100 ip_proto udp src_port 62903 dst_port 28030 action pass INFO asyncssh:logging.py:92 [conn=25, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=14] Command: tc filter add dev swp1 ingress protocol 0x0800 pref 49000 flower skip_sw src_ip 45.21.222.100 dst_ip 121.57.120.100 ip_proto udp src_port 62903 dst_port 28030 action pass INFO asyncssh:logging.py:92 [conn=25, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e8411e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_eth_type_ipv4_ip_proto_udp_dst_ip_121.57.120.100_src_ip_45.21.222.100_dst_port_28030_src_port_62903 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 90978 Rx 90978 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_eth_type_ipv4_ip_proto_udp_dst_ip_121.57.120.100_src_ip_45.21.222.100_dst_port_28030_src_port_62903 Tx Frames: 90978, Rx Frames: 90978, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05)
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_addition_deletion_under_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=25, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=16] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:33:38 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=25, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=25, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=25, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":58,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=25, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=25, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=25, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=25, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:33:39 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=25, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=24] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:33:39 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=25, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=25, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=25, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=25, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=25, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=25, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=25, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=25, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=25, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=25, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=25, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=50] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=25, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=25, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=25, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=25, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=25, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=25, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=25, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-tagged-pass] 199.72
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-tagged-pass]">Starting testcase:test_acl_all_selectors[shared_block-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1189' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=25, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=26] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=26] Local address: 172.17.0.3, port 35100 INFO asyncssh:logging.py:92 [conn=26] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=26] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=26] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:33:39 PM UTC INFO asyncssh:logging.py:92 [conn=26, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=26, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=26, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=26, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=26, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=5] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 1130 && bridge vlan add dev swp2 vid 1130 INFO asyncssh:logging.py:92 [conn=26, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=6] Command: bridge vlan add dev swp1 vid 1130 && bridge vlan add dev swp2 vid 1130 INFO asyncssh:logging.py:92 [conn=26, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=8] Command: tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:6f:b5:b1:f9:3e dst_mac 02:bf:13:a8:52:12 vlan_id 1130 vlan_ethtype ip src_ip 118.120.173.156 dst_ip 75.169.178.15 ip_proto udp src_port 60545 dst_port 46711 action pass INFO asyncssh:logging.py:92 [conn=26, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=10] Command: tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:6f:b5:b1:f9:3e dst_mac 02:bf:13:a8:52:12 vlan_id 1130 vlan_ethtype ip src_ip 118.120.173.156 dst_ip 75.169.178.15 ip_proto udp src_port 60545 dst_port 46711 action pass INFO asyncssh:logging.py:92 [conn=26, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=26, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=12] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=26, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1130,"vlan_ethtype":"ip","dst_mac":"02:bf:13:a8:52:12","src_mac":"02:6f:b5:b1:f9:3e","eth_type":"ipv4","ip_proto":"udp","dst_ip":"75.169.178.15","src_ip":"118.120.173.156","dst_port":46711,"src_port":60545},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1130, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1130, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1130_vlan_ethtype_ip_dst_mac_02:bf:13:a8:52:12_src_mac_02:6f:b5:b1:f9:3e_eth_type_ipv4_ip_proto_udp_dst_ip_75.169.178.15_src_ip_118.120.173.156_dst_port_46711_src_port_60545 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1130_vlan_ethtype_ip_dst_mac_02:bf:13:a8:52:12_src_mac_02:6f:b5:b1:f9:3e_eth_type_ipv4_ip_proto_udp_dst_ip_75.169.178.15_src_ip_118.120.173.156_dst_port_46711_src_port_60545_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1130_vlan_ethtype_ip_dst_mac_02:bf:13:a8:52:12_src_mac_02:6f:b5:b1:f9:3e_eth_type_ipv4_ip_proto_udp_dst_ip_75.169.178.15_src_ip_118.120.173.156_dst_port_46711_src_port_60545_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1130_vlan_ethtype_ip_dst_mac_02:bf:13:a8:52:12_src_mac_02:6f:b5:b1:f9:3e_eth_type_ipv4_ip_proto_udp_dst_ip_75.169.178.15_src_ip_118.120.173.156_dst_port_46711_src_port_60545_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1130_vlan_ethtype_ip_dst_mac_02:bf:13:a8:52:12_src_mac_02:6f:b5:b1:f9:3e_eth_type_ipv4_ip_proto_udp_dst_ip_75.169.178.15_src_ip_118.120.173.156_dst_port_46711_src_port_60545_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1130_vlan_ethtype_ip_dst_mac_02:bf:13:a8:52:12_src_mac_02:6f:b5:b1:f9:3e_eth_type_ipv4_ip_proto_udp_dst_ip_75.169.178.15_src_ip_118.120.173.156_dst_port_46711_src_port_60545_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1130_vlan_ethtype_ip_dst_mac_02:bf:13:a8:52:12_src_mac_02:6f:b5:b1:f9:3e_eth_type_ipv4_ip_proto_udp_dst_ip_75.169.178.15_src_ip_118.120.173.156_dst_port_46711_src_port_60545_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1130_vlan_ethtype_ip_dst_mac_02:bf:13:a8:52:12_src_mac_02:6f:b5:b1:f9:3e_eth_type_ipv4_ip_proto_udp_dst_ip_75.169.178.15_src_ip_118.120.173.156_dst_port_46711_src_port_60545_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e840820>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1130_vlan_ethtype_ip_dst_mac_02:bf:13:a8:52:12_src_mac_02:6f:b5:b1:f9:3e_eth_type_ipv4_ip_proto_udp_dst_ip_75.169.178.15_src_ip_118.120.173.156_dst_port_46711_src_port_60545 SIP-DIP N/A Tx 44275 Rx 44275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1130_vlan_ethtype_ip_dst_mac_02:bf:13:a8:52:12_src_mac_02:6f:b5:b1:f9:3e_eth_type_ipv4_ip_proto_udp_dst_ip_75.169.178.15_src_ip_118.120.173.156_dst_port_46711_src_port_60545_unmatch_srcMac SIP-DIP N/A Tx 44275 Rx 44275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1130_vlan_ethtype_ip_dst_mac_02:bf:13:a8:52:12_src_mac_02:6f:b5:b1:f9:3e_eth_type_ipv4_ip_proto_udp_dst_ip_75.169.178.15_src_ip_118.120.173.156_dst_port_46711_src_port_60545_unmatch_dstMac SIP-DIP N/A Tx 44275 Rx 44275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1130_vlan_ethtype_ip_dst_mac_02:bf:13:a8:52:12_src_mac_02:6f:b5:b1:f9:3e_eth_type_ipv4_ip_proto_udp_dst_ip_75.169.178.15_src_ip_118.120.173.156_dst_port_46711_src_port_60545_unmatch_vlanID SIP-DIP N/A Tx 44275 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1130_vlan_ethtype_ip_dst_mac_02:bf:13:a8:52:12_src_mac_02:6f:b5:b1:f9:3e_eth_type_ipv4_ip_proto_udp_dst_ip_75.169.178.15_src_ip_118.120.173.156_dst_port_46711_src_port_60545_unmatch_srcIp SIP-DIP N/A Tx 44275 Rx 44275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1130_vlan_ethtype_ip_dst_mac_02:bf:13:a8:52:12_src_mac_02:6f:b5:b1:f9:3e_eth_type_ipv4_ip_proto_udp_dst_ip_75.169.178.15_src_ip_118.120.173.156_dst_port_46711_src_port_60545_unmatch_dstIp SIP-DIP N/A Tx 44275 Rx 44275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1130_vlan_ethtype_ip_dst_mac_02:bf:13:a8:52:12_src_mac_02:6f:b5:b1:f9:3e_eth_type_ipv4_ip_proto_udp_dst_ip_75.169.178.15_src_ip_118.120.173.156_dst_port_46711_src_port_60545_unmatch_srcPort SIP-DIP N/A Tx 44274 Rx 44274 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1130_vlan_ethtype_ip_dst_mac_02:bf:13:a8:52:12_src_mac_02:6f:b5:b1:f9:3e_eth_type_ipv4_ip_proto_udp_dst_ip_75.169.178.15_src_ip_118.120.173.156_dst_port_46711_src_port_60545_unmatch_dstPort SIP-DIP N/A Tx 44274 Rx 44274 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1130_vlan_ethtype_ip_dst_mac_02:bf:13:a8:52:12_src_mac_02:6f:b5:b1:f9:3e_eth_type_ipv4_ip_proto_udp_dst_ip_75.169.178.15_src_ip_118.120.173.156_dst_port_46711_src_port_60545 Tx Frames: 44275, Rx Frames: 44275, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1130_vlan_ethtype_ip_dst_mac_02:bf:13:a8:52:12_src_mac_02:6f:b5:b1:f9:3e_eth_type_ipv4_ip_proto_udp_dst_ip_75.169.178.15_src_ip_118.120.173.156_dst_port_46711_src_port_60545_unmatch_srcMac Tx Frames: 44275, Rx Frames: 44275, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1130_vlan_ethtype_ip_dst_mac_02:bf:13:a8:52:12_src_mac_02:6f:b5:b1:f9:3e_eth_type_ipv4_ip_proto_udp_dst_ip_75.169.178.15_src_ip_118.120.173.156_dst_port_46711_src_port_60545_unmatch_dstMac Tx Frames: 44275, Rx Frames: 44275, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1130_vlan_ethtype_ip_dst_mac_02:bf:13:a8:52:12_src_mac_02:6f:b5:b1:f9:3e_eth_type_ipv4_ip_proto_udp_dst_ip_75.169.178.15_src_ip_118.120.173.156_dst_port_46711_src_port_60545_unmatch_vlanID Tx Frames: 44275, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1130_vlan_ethtype_ip_dst_mac_02:bf:13:a8:52:12_src_mac_02:6f:b5:b1:f9:3e_eth_type_ipv4_ip_proto_udp_dst_ip_75.169.178.15_src_ip_118.120.173.156_dst_port_46711_src_port_60545_unmatch_srcIp Tx Frames: 44275, Rx Frames: 44275, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1130_vlan_ethtype_ip_dst_mac_02:bf:13:a8:52:12_src_mac_02:6f:b5:b1:f9:3e_eth_type_ipv4_ip_proto_udp_dst_ip_75.169.178.15_src_ip_118.120.173.156_dst_port_46711_src_port_60545_unmatch_dstIp Tx Frames: 44275, Rx Frames: 44275, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1130_vlan_ethtype_ip_dst_mac_02:bf:13:a8:52:12_src_mac_02:6f:b5:b1:f9:3e_eth_type_ipv4_ip_proto_udp_dst_ip_75.169.178.15_src_ip_118.120.173.156_dst_port_46711_src_port_60545_unmatch_srcPort Tx Frames: 44274, Rx Frames: 44274, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1130_vlan_ethtype_ip_dst_mac_02:bf:13:a8:52:12_src_mac_02:6f:b5:b1:f9:3e_eth_type_ipv4_ip_proto_udp_dst_ip_75.169.178.15_src_ip_118.120.173.156_dst_port_46711_src_port_60545_unmatch_dstPort Tx Frames: 44274, Rx Frames: 44274, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=26, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=14] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1130,"vlan_ethtype":"ip","dst_mac":"02:bf:13:a8:52:12","src_mac":"02:6f:b5:b1:f9:3e","eth_type":"ipv4","ip_proto":"udp","dst_ip":"75.169.178.15","src_ip":"118.120.173.156","dst_port":46711,"src_port":60545},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":198,"stats":{"bytes":11334400,"packets":44275,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11334400,"hw_packets":44275,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 44275, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 44275, packets = 44275, expected = 44275, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 44275, hw_packets = 44275, expected = 44275, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=26, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=16] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:36:58 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=26, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=26, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=26, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":59,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=26, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=26, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=26, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=26, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:36:58 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=26, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=24] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:36:59 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=26, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=26, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=26, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=26, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=26, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=26, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=26, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=26, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=26, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=26, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=50] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=26, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=26, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=26, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=26, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=26, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=26, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-tagged-drop] 191.40
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-tagged-drop]">Starting testcase:test_acl_all_selectors[shared_block-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1258' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=26, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=27] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=27] Local address: 172.17.0.3, port 39512 INFO asyncssh:logging.py:92 [conn=27] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=27] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=27] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:36:59 PM UTC INFO asyncssh:logging.py:92 [conn=27, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=27, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=27, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=27, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=27, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=5] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 2738 && bridge vlan add dev swp2 vid 2738 INFO asyncssh:logging.py:92 [conn=27, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=6] Command: bridge vlan add dev swp1 vid 2738 && bridge vlan add dev swp2 vid 2738 INFO asyncssh:logging.py:92 [conn=27, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=8] Command: tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:8d:83:70:eb:5a dst_mac 02:cd:63:f8:62:30 vlan_id 2738 vlan_ethtype ip src_ip 46.133.85.112 dst_ip 61.138.221.132 ip_proto udp src_port 54859 dst_port 6418 action drop INFO asyncssh:logging.py:92 [conn=27, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=10] Command: tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:8d:83:70:eb:5a dst_mac 02:cd:63:f8:62:30 vlan_id 2738 vlan_ethtype ip src_ip 46.133.85.112 dst_ip 61.138.221.132 ip_proto udp src_port 54859 dst_port 6418 action drop INFO asyncssh:logging.py:92 [conn=27, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=27, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=12] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=27, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2738,"vlan_ethtype":"ip","dst_mac":"02:cd:63:f8:62:30","src_mac":"02:8d:83:70:eb:5a","eth_type":"ipv4","ip_proto":"udp","dst_ip":"61.138.221.132","src_ip":"46.133.85.112","dst_port":6418,"src_port":54859},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2738, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2738, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2738_vlan_ethtype_ip_dst_mac_02:cd:63:f8:62:30_src_mac_02:8d:83:70:eb:5a_eth_type_ipv4_ip_proto_udp_dst_ip_61.138.221.132_src_ip_46.133.85.112_dst_port_6418_src_port_54859 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2738_vlan_ethtype_ip_dst_mac_02:cd:63:f8:62:30_src_mac_02:8d:83:70:eb:5a_eth_type_ipv4_ip_proto_udp_dst_ip_61.138.221.132_src_ip_46.133.85.112_dst_port_6418_src_port_54859_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2738_vlan_ethtype_ip_dst_mac_02:cd:63:f8:62:30_src_mac_02:8d:83:70:eb:5a_eth_type_ipv4_ip_proto_udp_dst_ip_61.138.221.132_src_ip_46.133.85.112_dst_port_6418_src_port_54859_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2738_vlan_ethtype_ip_dst_mac_02:cd:63:f8:62:30_src_mac_02:8d:83:70:eb:5a_eth_type_ipv4_ip_proto_udp_dst_ip_61.138.221.132_src_ip_46.133.85.112_dst_port_6418_src_port_54859_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2738_vlan_ethtype_ip_dst_mac_02:cd:63:f8:62:30_src_mac_02:8d:83:70:eb:5a_eth_type_ipv4_ip_proto_udp_dst_ip_61.138.221.132_src_ip_46.133.85.112_dst_port_6418_src_port_54859_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2738_vlan_ethtype_ip_dst_mac_02:cd:63:f8:62:30_src_mac_02:8d:83:70:eb:5a_eth_type_ipv4_ip_proto_udp_dst_ip_61.138.221.132_src_ip_46.133.85.112_dst_port_6418_src_port_54859_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2738_vlan_ethtype_ip_dst_mac_02:cd:63:f8:62:30_src_mac_02:8d:83:70:eb:5a_eth_type_ipv4_ip_proto_udp_dst_ip_61.138.221.132_src_ip_46.133.85.112_dst_port_6418_src_port_54859_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2738_vlan_ethtype_ip_dst_mac_02:cd:63:f8:62:30_src_mac_02:8d:83:70:eb:5a_eth_type_ipv4_ip_proto_udp_dst_ip_61.138.221.132_src_ip_46.133.85.112_dst_port_6418_src_port_54859_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e867400>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_2738_vlan_ethtype_ip_dst_mac_02:cd:63:f8:62:30_src_mac_02:8d:83:70:eb:5a_eth_type_ipv4_ip_proto_udp_dst_ip_61.138.221.132_src_ip_46.133.85.112_dst_port_6418_src_port_54859 SIP-DIP N/A Tx 44505 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_2738_vlan_ethtype_ip_dst_mac_02:cd:63:f8:62:30_src_mac_02:8d:83:70:eb:5a_eth_type_ipv4_ip_proto_udp_dst_ip_61.138.221.132_src_ip_46.133.85.112_dst_port_6418_src_port_54859_unmatch_srcMac SIP-DIP N/A Tx 44505 Rx 44505 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_2738_vlan_ethtype_ip_dst_mac_02:cd:63:f8:62:30_src_mac_02:8d:83:70:eb:5a_eth_type_ipv4_ip_proto_udp_dst_ip_61.138.221.132_src_ip_46.133.85.112_dst_port_6418_src_port_54859_unmatch_dstMac SIP-DIP N/A Tx 44505 Rx 44505 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_2738_vlan_ethtype_ip_dst_mac_02:cd:63:f8:62:30_src_mac_02:8d:83:70:eb:5a_eth_type_ipv4_ip_proto_udp_dst_ip_61.138.221.132_src_ip_46.133.85.112_dst_port_6418_src_port_54859_unmatch_vlanID SIP-DIP N/A Tx 44505 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_2738_vlan_ethtype_ip_dst_mac_02:cd:63:f8:62:30_src_mac_02:8d:83:70:eb:5a_eth_type_ipv4_ip_proto_udp_dst_ip_61.138.221.132_src_ip_46.133.85.112_dst_port_6418_src_port_54859_unmatch_srcIp SIP-DIP N/A Tx 44505 Rx 44505 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_2738_vlan_ethtype_ip_dst_mac_02:cd:63:f8:62:30_src_mac_02:8d:83:70:eb:5a_eth_type_ipv4_ip_proto_udp_dst_ip_61.138.221.132_src_ip_46.133.85.112_dst_port_6418_src_port_54859_unmatch_dstIp SIP-DIP N/A Tx 44505 Rx 44505 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_2738_vlan_ethtype_ip_dst_mac_02:cd:63:f8:62:30_src_mac_02:8d:83:70:eb:5a_eth_type_ipv4_ip_proto_udp_dst_ip_61.138.221.132_src_ip_46.133.85.112_dst_port_6418_src_port_54859_unmatch_srcPort SIP-DIP N/A Tx 44505 Rx 44505 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_2738_vlan_ethtype_ip_dst_mac_02:cd:63:f8:62:30_src_mac_02:8d:83:70:eb:5a_eth_type_ipv4_ip_proto_udp_dst_ip_61.138.221.132_src_ip_46.133.85.112_dst_port_6418_src_port_54859_unmatch_dstPort SIP-DIP N/A Tx 44505 Rx 44505 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2738_vlan_ethtype_ip_dst_mac_02:cd:63:f8:62:30_src_mac_02:8d:83:70:eb:5a_eth_type_ipv4_ip_proto_udp_dst_ip_61.138.221.132_src_ip_46.133.85.112_dst_port_6418_src_port_54859 Tx Frames: 44505, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2738_vlan_ethtype_ip_dst_mac_02:cd:63:f8:62:30_src_mac_02:8d:83:70:eb:5a_eth_type_ipv4_ip_proto_udp_dst_ip_61.138.221.132_src_ip_46.133.85.112_dst_port_6418_src_port_54859_unmatch_srcMac Tx Frames: 44505, Rx Frames: 44505, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2738_vlan_ethtype_ip_dst_mac_02:cd:63:f8:62:30_src_mac_02:8d:83:70:eb:5a_eth_type_ipv4_ip_proto_udp_dst_ip_61.138.221.132_src_ip_46.133.85.112_dst_port_6418_src_port_54859_unmatch_dstMac Tx Frames: 44505, Rx Frames: 44505, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2738_vlan_ethtype_ip_dst_mac_02:cd:63:f8:62:30_src_mac_02:8d:83:70:eb:5a_eth_type_ipv4_ip_proto_udp_dst_ip_61.138.221.132_src_ip_46.133.85.112_dst_port_6418_src_port_54859_unmatch_vlanID Tx Frames: 44505, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2738_vlan_ethtype_ip_dst_mac_02:cd:63:f8:62:30_src_mac_02:8d:83:70:eb:5a_eth_type_ipv4_ip_proto_udp_dst_ip_61.138.221.132_src_ip_46.133.85.112_dst_port_6418_src_port_54859_unmatch_srcIp Tx Frames: 44505, Rx Frames: 44505, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2738_vlan_ethtype_ip_dst_mac_02:cd:63:f8:62:30_src_mac_02:8d:83:70:eb:5a_eth_type_ipv4_ip_proto_udp_dst_ip_61.138.221.132_src_ip_46.133.85.112_dst_port_6418_src_port_54859_unmatch_dstIp Tx Frames: 44505, Rx Frames: 44505, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2738_vlan_ethtype_ip_dst_mac_02:cd:63:f8:62:30_src_mac_02:8d:83:70:eb:5a_eth_type_ipv4_ip_proto_udp_dst_ip_61.138.221.132_src_ip_46.133.85.112_dst_port_6418_src_port_54859_unmatch_srcPort Tx Frames: 44505, Rx Frames: 44505, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2738_vlan_ethtype_ip_dst_mac_02:cd:63:f8:62:30_src_mac_02:8d:83:70:eb:5a_eth_type_ipv4_ip_proto_udp_dst_ip_61.138.221.132_src_ip_46.133.85.112_dst_port_6418_src_port_54859_unmatch_dstPort Tx Frames: 44505, Rx Frames: 44505, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=27, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=14] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2738,"vlan_ethtype":"ip","dst_mac":"02:cd:63:f8:62:30","src_mac":"02:8d:83:70:eb:5a","eth_type":"ipv4","ip_proto":"udp","dst_ip":"61.138.221.132","src_ip":"46.133.85.112","dst_port":6418,"src_port":54859},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":189,"stats":{"bytes":11393280,"packets":44505,"drops":44505,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11393280,"hw_packets":44505,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 44505, drops = 44505, expected = 44505, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 44505, packets = 44505, expected = 44505, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 44505, hw_packets = 44505, expected = 44505, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=27, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=16] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:40:09 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=27, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=27, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=27, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":60,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=27, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=27, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=27, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=27, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:40:10 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=27, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=24] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:40:10 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=27, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=27, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=27, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=27, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=27, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=27, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=27, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=27, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=27, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=27, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=50] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=27, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=27, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=27, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=27, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=27, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=27, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-tagged-trap] 193.28
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-tagged-trap]">Starting testcase:test_acl_all_selectors[shared_block-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1327' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=27, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=28] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=28] Local address: 172.17.0.3, port 37156 INFO asyncssh:logging.py:92 [conn=28] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=28] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=28] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:40:11 PM UTC INFO asyncssh:logging.py:92 [conn=28, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=28, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=28, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=28, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=28, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=5] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 381 && bridge vlan add dev swp2 vid 381 INFO asyncssh:logging.py:92 [conn=28, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=6] Command: bridge vlan add dev swp1 vid 381 && bridge vlan add dev swp2 vid 381 INFO asyncssh:logging.py:92 [conn=28, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=8] Command: tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:49:55:c0:2d:6b dst_mac 02:d4:50:4a:f9:44 vlan_id 381 vlan_ethtype ip src_ip 71.35.144.121 dst_ip 80.60.144.239 ip_proto udp src_port 39937 dst_port 6837 action trap INFO asyncssh:logging.py:92 [conn=28, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=10] Command: tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:49:55:c0:2d:6b dst_mac 02:d4:50:4a:f9:44 vlan_id 381 vlan_ethtype ip src_ip 71.35.144.121 dst_ip 80.60.144.239 ip_proto udp src_port 39937 dst_port 6837 action trap INFO asyncssh:logging.py:92 [conn=28, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=28, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=12] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=28, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":381,"vlan_ethtype":"ip","dst_mac":"02:d4:50:4a:f9:44","src_mac":"02:49:55:c0:2d:6b","eth_type":"ipv4","ip_proto":"udp","dst_ip":"80.60.144.239","src_ip":"71.35.144.121","dst_port":6837,"src_port":39937},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 381, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 381, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_381_vlan_ethtype_ip_dst_mac_02:d4:50:4a:f9:44_src_mac_02:49:55:c0:2d:6b_eth_type_ipv4_ip_proto_udp_dst_ip_80.60.144.239_src_ip_71.35.144.121_dst_port_6837_src_port_39937 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_381_vlan_ethtype_ip_dst_mac_02:d4:50:4a:f9:44_src_mac_02:49:55:c0:2d:6b_eth_type_ipv4_ip_proto_udp_dst_ip_80.60.144.239_src_ip_71.35.144.121_dst_port_6837_src_port_39937_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_381_vlan_ethtype_ip_dst_mac_02:d4:50:4a:f9:44_src_mac_02:49:55:c0:2d:6b_eth_type_ipv4_ip_proto_udp_dst_ip_80.60.144.239_src_ip_71.35.144.121_dst_port_6837_src_port_39937_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_381_vlan_ethtype_ip_dst_mac_02:d4:50:4a:f9:44_src_mac_02:49:55:c0:2d:6b_eth_type_ipv4_ip_proto_udp_dst_ip_80.60.144.239_src_ip_71.35.144.121_dst_port_6837_src_port_39937_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_381_vlan_ethtype_ip_dst_mac_02:d4:50:4a:f9:44_src_mac_02:49:55:c0:2d:6b_eth_type_ipv4_ip_proto_udp_dst_ip_80.60.144.239_src_ip_71.35.144.121_dst_port_6837_src_port_39937_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_381_vlan_ethtype_ip_dst_mac_02:d4:50:4a:f9:44_src_mac_02:49:55:c0:2d:6b_eth_type_ipv4_ip_proto_udp_dst_ip_80.60.144.239_src_ip_71.35.144.121_dst_port_6837_src_port_39937_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_381_vlan_ethtype_ip_dst_mac_02:d4:50:4a:f9:44_src_mac_02:49:55:c0:2d:6b_eth_type_ipv4_ip_proto_udp_dst_ip_80.60.144.239_src_ip_71.35.144.121_dst_port_6837_src_port_39937_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_381_vlan_ethtype_ip_dst_mac_02:d4:50:4a:f9:44_src_mac_02:49:55:c0:2d:6b_eth_type_ipv4_ip_proto_udp_dst_ip_80.60.144.239_src_ip_71.35.144.121_dst_port_6837_src_port_39937_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e8408b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_381_vlan_ethtype_ip_dst_mac_02:d4:50:4a:f9:44_src_mac_02:49:55:c0:2d:6b_eth_type_ipv4_ip_proto_udp_dst_ip_80.60.144.239_src_ip_71.35.144.121_dst_port_6837_src_port_39937 SIP-DIP N/A Tx 44641 Rx 17857 Loss 59.999 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_381_vlan_ethtype_ip_dst_mac_02:d4:50:4a:f9:44_src_mac_02:49:55:c0:2d:6b_eth_type_ipv4_ip_proto_udp_dst_ip_80.60.144.239_src_ip_71.35.144.121_dst_port_6837_src_port_39937_unmatch_srcMac SIP-DIP N/A Tx 44641 Rx 44641 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_381_vlan_ethtype_ip_dst_mac_02:d4:50:4a:f9:44_src_mac_02:49:55:c0:2d:6b_eth_type_ipv4_ip_proto_udp_dst_ip_80.60.144.239_src_ip_71.35.144.121_dst_port_6837_src_port_39937_unmatch_dstMac SIP-DIP N/A Tx 44641 Rx 44641 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_381_vlan_ethtype_ip_dst_mac_02:d4:50:4a:f9:44_src_mac_02:49:55:c0:2d:6b_eth_type_ipv4_ip_proto_udp_dst_ip_80.60.144.239_src_ip_71.35.144.121_dst_port_6837_src_port_39937_unmatch_vlanID SIP-DIP N/A Tx 44641 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_381_vlan_ethtype_ip_dst_mac_02:d4:50:4a:f9:44_src_mac_02:49:55:c0:2d:6b_eth_type_ipv4_ip_proto_udp_dst_ip_80.60.144.239_src_ip_71.35.144.121_dst_port_6837_src_port_39937_unmatch_srcIp SIP-DIP N/A Tx 44641 Rx 44641 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_381_vlan_ethtype_ip_dst_mac_02:d4:50:4a:f9:44_src_mac_02:49:55:c0:2d:6b_eth_type_ipv4_ip_proto_udp_dst_ip_80.60.144.239_src_ip_71.35.144.121_dst_port_6837_src_port_39937_unmatch_dstIp SIP-DIP N/A Tx 44641 Rx 44641 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_381_vlan_ethtype_ip_dst_mac_02:d4:50:4a:f9:44_src_mac_02:49:55:c0:2d:6b_eth_type_ipv4_ip_proto_udp_dst_ip_80.60.144.239_src_ip_71.35.144.121_dst_port_6837_src_port_39937_unmatch_srcPort SIP-DIP N/A Tx 44641 Rx 44641 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_381_vlan_ethtype_ip_dst_mac_02:d4:50:4a:f9:44_src_mac_02:49:55:c0:2d:6b_eth_type_ipv4_ip_proto_udp_dst_ip_80.60.144.239_src_ip_71.35.144.121_dst_port_6837_src_port_39937_unmatch_dstPort SIP-DIP N/A Tx 44641 Rx 44641 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_381_vlan_ethtype_ip_dst_mac_02:d4:50:4a:f9:44_src_mac_02:49:55:c0:2d:6b_eth_type_ipv4_ip_proto_udp_dst_ip_80.60.144.239_src_ip_71.35.144.121_dst_port_6837_src_port_39937 Tx Frames: 44641, Rx Frames: 17857, loss = 59.999, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_381_vlan_ethtype_ip_dst_mac_02:d4:50:4a:f9:44_src_mac_02:49:55:c0:2d:6b_eth_type_ipv4_ip_proto_udp_dst_ip_80.60.144.239_src_ip_71.35.144.121_dst_port_6837_src_port_39937_unmatch_srcMac Tx Frames: 44641, Rx Frames: 44641, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_381_vlan_ethtype_ip_dst_mac_02:d4:50:4a:f9:44_src_mac_02:49:55:c0:2d:6b_eth_type_ipv4_ip_proto_udp_dst_ip_80.60.144.239_src_ip_71.35.144.121_dst_port_6837_src_port_39937_unmatch_dstMac Tx Frames: 44641, Rx Frames: 44641, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_381_vlan_ethtype_ip_dst_mac_02:d4:50:4a:f9:44_src_mac_02:49:55:c0:2d:6b_eth_type_ipv4_ip_proto_udp_dst_ip_80.60.144.239_src_ip_71.35.144.121_dst_port_6837_src_port_39937_unmatch_vlanID Tx Frames: 44641, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_381_vlan_ethtype_ip_dst_mac_02:d4:50:4a:f9:44_src_mac_02:49:55:c0:2d:6b_eth_type_ipv4_ip_proto_udp_dst_ip_80.60.144.239_src_ip_71.35.144.121_dst_port_6837_src_port_39937_unmatch_srcIp Tx Frames: 44641, Rx Frames: 44641, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_381_vlan_ethtype_ip_dst_mac_02:d4:50:4a:f9:44_src_mac_02:49:55:c0:2d:6b_eth_type_ipv4_ip_proto_udp_dst_ip_80.60.144.239_src_ip_71.35.144.121_dst_port_6837_src_port_39937_unmatch_dstIp Tx Frames: 44641, Rx Frames: 44641, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_381_vlan_ethtype_ip_dst_mac_02:d4:50:4a:f9:44_src_mac_02:49:55:c0:2d:6b_eth_type_ipv4_ip_proto_udp_dst_ip_80.60.144.239_src_ip_71.35.144.121_dst_port_6837_src_port_39937_unmatch_srcPort Tx Frames: 44641, Rx Frames: 44641, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_381_vlan_ethtype_ip_dst_mac_02:d4:50:4a:f9:44_src_mac_02:49:55:c0:2d:6b_eth_type_ipv4_ip_proto_udp_dst_ip_80.60.144.239_src_ip_71.35.144.121_dst_port_6837_src_port_39937_unmatch_dstPort Tx Frames: 44641, Rx Frames: 44641, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=28, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=14] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":381,"vlan_ethtype":"ip","dst_mac":"02:d4:50:4a:f9:44","src_mac":"02:49:55:c0:2d:6b","eth_type":"ipv4","ip_proto":"udp","dst_ip":"80.60.144.239","src_ip":"71.35.144.121","dst_port":6837,"src_port":39937},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":191,"stats":{"bytes":11428096,"packets":44641,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11428096,"hw_packets":44641,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 44641, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 44641, packets = 44641, expected = 44641, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 44641, hw_packets = 44641, expected = 44641, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=28, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=16] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:43:23 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=28, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=28, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=28, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":61,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=28, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=28, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=28, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=28, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:43:23 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=28, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=24] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:43:23 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=28, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=28, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=28, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=28, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=28, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=28, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=28, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=28, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=28, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=28, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=50] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=28, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=28, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=28, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=28, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=28, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=28, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-untagged-pass] 184.11
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-untagged-pass]">Starting testcase:test_acl_all_selectors[shared_block-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1396' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=28, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=29] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=29] Local address: 172.17.0.3, port 59192 INFO asyncssh:logging.py:92 [conn=29] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=29] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=29] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:43:24 PM UTC INFO asyncssh:logging.py:92 [conn=29, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=29, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=29, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=29, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=29, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=5] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=6] Command: tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:8e:1e:6d:b3:35 dst_mac 02:0e:09:7c:45:10 src_ip 55.181.127.2 dst_ip 79.91.173.107 ip_proto udp src_port 3798 dst_port 47815 action pass INFO asyncssh:logging.py:92 [conn=29, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=8] Command: tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:8e:1e:6d:b3:35 dst_mac 02:0e:09:7c:45:10 src_ip 55.181.127.2 dst_ip 79.91.173.107 ip_proto udp src_port 3798 dst_port 47815 action pass INFO asyncssh:logging.py:92 [conn=29, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=29, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=10] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=29, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:0e:09:7c:45:10","src_mac":"02:8e:1e:6d:b3:35","eth_type":"ipv4","ip_proto":"udp","dst_ip":"79.91.173.107","src_ip":"55.181.127.2","dst_port":47815,"src_port":3798},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:0e:09:7c:45:10_src_mac_02:8e:1e:6d:b3:35_eth_type_ipv4_ip_proto_udp_dst_ip_79.91.173.107_src_ip_55.181.127.2_dst_port_47815_src_port_3798 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:0e:09:7c:45:10_src_mac_02:8e:1e:6d:b3:35_eth_type_ipv4_ip_proto_udp_dst_ip_79.91.173.107_src_ip_55.181.127.2_dst_port_47815_src_port_3798_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:0e:09:7c:45:10_src_mac_02:8e:1e:6d:b3:35_eth_type_ipv4_ip_proto_udp_dst_ip_79.91.173.107_src_ip_55.181.127.2_dst_port_47815_src_port_3798_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:0e:09:7c:45:10_src_mac_02:8e:1e:6d:b3:35_eth_type_ipv4_ip_proto_udp_dst_ip_79.91.173.107_src_ip_55.181.127.2_dst_port_47815_src_port_3798_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:0e:09:7c:45:10_src_mac_02:8e:1e:6d:b3:35_eth_type_ipv4_ip_proto_udp_dst_ip_79.91.173.107_src_ip_55.181.127.2_dst_port_47815_src_port_3798_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:0e:09:7c:45:10_src_mac_02:8e:1e:6d:b3:35_eth_type_ipv4_ip_proto_udp_dst_ip_79.91.173.107_src_ip_55.181.127.2_dst_port_47815_src_port_3798_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:0e:09:7c:45:10_src_mac_02:8e:1e:6d:b3:35_eth_type_ipv4_ip_proto_udp_dst_ip_79.91.173.107_src_ip_55.181.127.2_dst_port_47815_src_port_3798_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e7d5750>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:0e:09:7c:45:10_src_mac_02:8e:1e:6d:b3:35_eth_type_ipv4_ip_proto_udp_dst_ip_79.91.173.107_src_ip_55.181.127.2_dst_port_47815_src_port_3798 SIP-DIP N/A Tx 43684 Rx 43684 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:0e:09:7c:45:10_src_mac_02:8e:1e:6d:b3:35_eth_type_ipv4_ip_proto_udp_dst_ip_79.91.173.107_src_ip_55.181.127.2_dst_port_47815_src_port_3798_unmatch_srcMac SIP-DIP N/A Tx 43684 Rx 43684 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:0e:09:7c:45:10_src_mac_02:8e:1e:6d:b3:35_eth_type_ipv4_ip_proto_udp_dst_ip_79.91.173.107_src_ip_55.181.127.2_dst_port_47815_src_port_3798_unmatch_dstMac SIP-DIP N/A Tx 43684 Rx 43684 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:0e:09:7c:45:10_src_mac_02:8e:1e:6d:b3:35_eth_type_ipv4_ip_proto_udp_dst_ip_79.91.173.107_src_ip_55.181.127.2_dst_port_47815_src_port_3798_unmatch_srcIp SIP-DIP N/A Tx 43684 Rx 43684 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:0e:09:7c:45:10_src_mac_02:8e:1e:6d:b3:35_eth_type_ipv4_ip_proto_udp_dst_ip_79.91.173.107_src_ip_55.181.127.2_dst_port_47815_src_port_3798_unmatch_dstIp SIP-DIP N/A Tx 43684 Rx 43684 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:0e:09:7c:45:10_src_mac_02:8e:1e:6d:b3:35_eth_type_ipv4_ip_proto_udp_dst_ip_79.91.173.107_src_ip_55.181.127.2_dst_port_47815_src_port_3798_unmatch_srcPort SIP-DIP N/A Tx 43684 Rx 43684 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:0e:09:7c:45:10_src_mac_02:8e:1e:6d:b3:35_eth_type_ipv4_ip_proto_udp_dst_ip_79.91.173.107_src_ip_55.181.127.2_dst_port_47815_src_port_3798_unmatch_dstPort SIP-DIP N/A Tx 43684 Rx 43684 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:0e:09:7c:45:10_src_mac_02:8e:1e:6d:b3:35_eth_type_ipv4_ip_proto_udp_dst_ip_79.91.173.107_src_ip_55.181.127.2_dst_port_47815_src_port_3798 Tx Frames: 43684, Rx Frames: 43684, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:0e:09:7c:45:10_src_mac_02:8e:1e:6d:b3:35_eth_type_ipv4_ip_proto_udp_dst_ip_79.91.173.107_src_ip_55.181.127.2_dst_port_47815_src_port_3798_unmatch_srcMac Tx Frames: 43684, Rx Frames: 43684, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:0e:09:7c:45:10_src_mac_02:8e:1e:6d:b3:35_eth_type_ipv4_ip_proto_udp_dst_ip_79.91.173.107_src_ip_55.181.127.2_dst_port_47815_src_port_3798_unmatch_dstMac Tx Frames: 43684, Rx Frames: 43684, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:0e:09:7c:45:10_src_mac_02:8e:1e:6d:b3:35_eth_type_ipv4_ip_proto_udp_dst_ip_79.91.173.107_src_ip_55.181.127.2_dst_port_47815_src_port_3798_unmatch_srcIp Tx Frames: 43684, Rx Frames: 43684, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:0e:09:7c:45:10_src_mac_02:8e:1e:6d:b3:35_eth_type_ipv4_ip_proto_udp_dst_ip_79.91.173.107_src_ip_55.181.127.2_dst_port_47815_src_port_3798_unmatch_dstIp Tx Frames: 43684, Rx Frames: 43684, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:0e:09:7c:45:10_src_mac_02:8e:1e:6d:b3:35_eth_type_ipv4_ip_proto_udp_dst_ip_79.91.173.107_src_ip_55.181.127.2_dst_port_47815_src_port_3798_unmatch_srcPort Tx Frames: 43684, Rx Frames: 43684, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:0e:09:7c:45:10_src_mac_02:8e:1e:6d:b3:35_eth_type_ipv4_ip_proto_udp_dst_ip_79.91.173.107_src_ip_55.181.127.2_dst_port_47815_src_port_3798_unmatch_dstPort Tx Frames: 43684, Rx Frames: 43684, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=29, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=12] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:0e:09:7c:45:10","src_mac":"02:8e:1e:6d:b3:35","eth_type":"ipv4","ip_proto":"udp","dst_ip":"79.91.173.107","src_ip":"55.181.127.2","dst_port":47815,"src_port":3798},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":182,"stats":{"bytes":11183104,"packets":43684,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11183104,"hw_packets":43684,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 43684, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 43684, packets = 43684, expected = 43684, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 43684, hw_packets = 43684, expected = 43684, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=29, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=14] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:46:27 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=29, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=29, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=29, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":62,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=29, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=29, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=29, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=29, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:46:27 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=29, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:46:27 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=29, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=29, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=29, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=29, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=29, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=29, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=29, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=29, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=29, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=29, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=29, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=29, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=29, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=29, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=29, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=29, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-untagged-drop] 179.46
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-untagged-drop]">Starting testcase:test_acl_all_selectors[shared_block-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1463' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=29, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=30] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=30] Local address: 172.17.0.3, port 35850 INFO asyncssh:logging.py:92 [conn=30] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=30] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=30] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:46:28 PM UTC INFO asyncssh:logging.py:92 [conn=30, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=30, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=30, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=30, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=30, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=5] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=6] Command: tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:3e:64:ab:31:5f dst_mac 02:ac:1b:3e:65:c2 src_ip 68.139.245.244 dst_ip 25.26.84.59 ip_proto udp src_port 14200 dst_port 30172 action drop INFO asyncssh:logging.py:92 [conn=30, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=8] Command: tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:3e:64:ab:31:5f dst_mac 02:ac:1b:3e:65:c2 src_ip 68.139.245.244 dst_ip 25.26.84.59 ip_proto udp src_port 14200 dst_port 30172 action drop INFO asyncssh:logging.py:92 [conn=30, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=30, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=10] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=30, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:ac:1b:3e:65:c2","src_mac":"02:3e:64:ab:31:5f","eth_type":"ipv4","ip_proto":"udp","dst_ip":"25.26.84.59","src_ip":"68.139.245.244","dst_port":30172,"src_port":14200},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ac:1b:3e:65:c2_src_mac_02:3e:64:ab:31:5f_eth_type_ipv4_ip_proto_udp_dst_ip_25.26.84.59_src_ip_68.139.245.244_dst_port_30172_src_port_14200 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ac:1b:3e:65:c2_src_mac_02:3e:64:ab:31:5f_eth_type_ipv4_ip_proto_udp_dst_ip_25.26.84.59_src_ip_68.139.245.244_dst_port_30172_src_port_14200_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ac:1b:3e:65:c2_src_mac_02:3e:64:ab:31:5f_eth_type_ipv4_ip_proto_udp_dst_ip_25.26.84.59_src_ip_68.139.245.244_dst_port_30172_src_port_14200_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ac:1b:3e:65:c2_src_mac_02:3e:64:ab:31:5f_eth_type_ipv4_ip_proto_udp_dst_ip_25.26.84.59_src_ip_68.139.245.244_dst_port_30172_src_port_14200_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ac:1b:3e:65:c2_src_mac_02:3e:64:ab:31:5f_eth_type_ipv4_ip_proto_udp_dst_ip_25.26.84.59_src_ip_68.139.245.244_dst_port_30172_src_port_14200_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ac:1b:3e:65:c2_src_mac_02:3e:64:ab:31:5f_eth_type_ipv4_ip_proto_udp_dst_ip_25.26.84.59_src_ip_68.139.245.244_dst_port_30172_src_port_14200_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ac:1b:3e:65:c2_src_mac_02:3e:64:ab:31:5f_eth_type_ipv4_ip_proto_udp_dst_ip_25.26.84.59_src_ip_68.139.245.244_dst_port_30172_src_port_14200_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e7d7280>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:ac:1b:3e:65:c2_src_mac_02:3e:64:ab:31:5f_eth_type_ipv4_ip_proto_udp_dst_ip_25.26.84.59_src_ip_68.139.245.244_dst_port_30172_src_port_14200 SIP-DIP N/A Tx 43518 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:ac:1b:3e:65:c2_src_mac_02:3e:64:ab:31:5f_eth_type_ipv4_ip_proto_udp_dst_ip_25.26.84.59_src_ip_68.139.245.244_dst_port_30172_src_port_14200_unmatch_srcMac SIP-DIP N/A Tx 43518 Rx 43518 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:ac:1b:3e:65:c2_src_mac_02:3e:64:ab:31:5f_eth_type_ipv4_ip_proto_udp_dst_ip_25.26.84.59_src_ip_68.139.245.244_dst_port_30172_src_port_14200_unmatch_dstMac SIP-DIP N/A Tx 43518 Rx 43518 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:ac:1b:3e:65:c2_src_mac_02:3e:64:ab:31:5f_eth_type_ipv4_ip_proto_udp_dst_ip_25.26.84.59_src_ip_68.139.245.244_dst_port_30172_src_port_14200_unmatch_srcIp SIP-DIP N/A Tx 43518 Rx 43518 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:ac:1b:3e:65:c2_src_mac_02:3e:64:ab:31:5f_eth_type_ipv4_ip_proto_udp_dst_ip_25.26.84.59_src_ip_68.139.245.244_dst_port_30172_src_port_14200_unmatch_dstIp SIP-DIP N/A Tx 43518 Rx 43518 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:ac:1b:3e:65:c2_src_mac_02:3e:64:ab:31:5f_eth_type_ipv4_ip_proto_udp_dst_ip_25.26.84.59_src_ip_68.139.245.244_dst_port_30172_src_port_14200_unmatch_srcPort SIP-DIP N/A Tx 43518 Rx 43518 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:ac:1b:3e:65:c2_src_mac_02:3e:64:ab:31:5f_eth_type_ipv4_ip_proto_udp_dst_ip_25.26.84.59_src_ip_68.139.245.244_dst_port_30172_src_port_14200_unmatch_dstPort SIP-DIP N/A Tx 43518 Rx 43518 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ac:1b:3e:65:c2_src_mac_02:3e:64:ab:31:5f_eth_type_ipv4_ip_proto_udp_dst_ip_25.26.84.59_src_ip_68.139.245.244_dst_port_30172_src_port_14200 Tx Frames: 43518, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ac:1b:3e:65:c2_src_mac_02:3e:64:ab:31:5f_eth_type_ipv4_ip_proto_udp_dst_ip_25.26.84.59_src_ip_68.139.245.244_dst_port_30172_src_port_14200_unmatch_srcMac Tx Frames: 43518, Rx Frames: 43518, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ac:1b:3e:65:c2_src_mac_02:3e:64:ab:31:5f_eth_type_ipv4_ip_proto_udp_dst_ip_25.26.84.59_src_ip_68.139.245.244_dst_port_30172_src_port_14200_unmatch_dstMac Tx Frames: 43518, Rx Frames: 43518, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ac:1b:3e:65:c2_src_mac_02:3e:64:ab:31:5f_eth_type_ipv4_ip_proto_udp_dst_ip_25.26.84.59_src_ip_68.139.245.244_dst_port_30172_src_port_14200_unmatch_srcIp Tx Frames: 43518, Rx Frames: 43518, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ac:1b:3e:65:c2_src_mac_02:3e:64:ab:31:5f_eth_type_ipv4_ip_proto_udp_dst_ip_25.26.84.59_src_ip_68.139.245.244_dst_port_30172_src_port_14200_unmatch_dstIp Tx Frames: 43518, Rx Frames: 43518, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ac:1b:3e:65:c2_src_mac_02:3e:64:ab:31:5f_eth_type_ipv4_ip_proto_udp_dst_ip_25.26.84.59_src_ip_68.139.245.244_dst_port_30172_src_port_14200_unmatch_srcPort Tx Frames: 43518, Rx Frames: 43518, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ac:1b:3e:65:c2_src_mac_02:3e:64:ab:31:5f_eth_type_ipv4_ip_proto_udp_dst_ip_25.26.84.59_src_ip_68.139.245.244_dst_port_30172_src_port_14200_unmatch_dstPort Tx Frames: 43518, Rx Frames: 43518, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=30, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=12] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:ac:1b:3e:65:c2","src_mac":"02:3e:64:ab:31:5f","eth_type":"ipv4","ip_proto":"udp","dst_ip":"25.26.84.59","src_ip":"68.139.245.244","dst_port":30172,"src_port":14200},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":178,"stats":{"bytes":11140608,"packets":43518,"drops":43518,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11140608,"hw_packets":43518,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 43518, drops = 43518, expected = 43518, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 43518, packets = 43518, expected = 43518, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 43518, hw_packets = 43518, expected = 43518, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=30, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=14] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:49:26 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=30, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=30, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=30, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":63,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=30, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=30, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=30, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=30, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:49:27 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=30, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:49:27 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=30, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=30, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=30, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=30, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=30, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=30, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=30, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=30, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=30, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=30, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=30, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=30, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=30, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=30, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=30, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=30, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-untagged-trap] 179.11
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-untagged-trap]">Starting testcase:test_acl_all_selectors[shared_block-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1530' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=30, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=31] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=31] Local address: 172.17.0.3, port 53456 INFO asyncssh:logging.py:92 [conn=31] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=31] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=31] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:49:28 PM UTC INFO asyncssh:logging.py:92 [conn=31, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=31, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=31, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=31, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=31, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=5] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=6] Command: tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:25:e5:49:b1:2e dst_mac 02:42:b2:b1:60:9f src_ip 22.226.161.74 dst_ip 52.97.67.109 ip_proto udp src_port 41591 dst_port 39438 action trap INFO asyncssh:logging.py:92 [conn=31, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=8] Command: tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:25:e5:49:b1:2e dst_mac 02:42:b2:b1:60:9f src_ip 22.226.161.74 dst_ip 52.97.67.109 ip_proto udp src_port 41591 dst_port 39438 action trap INFO asyncssh:logging.py:92 [conn=31, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=31, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=10] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=31, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:42:b2:b1:60:9f","src_mac":"02:25:e5:49:b1:2e","eth_type":"ipv4","ip_proto":"udp","dst_ip":"52.97.67.109","src_ip":"22.226.161.74","dst_port":39438,"src_port":41591},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:42:b2:b1:60:9f_src_mac_02:25:e5:49:b1:2e_eth_type_ipv4_ip_proto_udp_dst_ip_52.97.67.109_src_ip_22.226.161.74_dst_port_39438_src_port_41591 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:42:b2:b1:60:9f_src_mac_02:25:e5:49:b1:2e_eth_type_ipv4_ip_proto_udp_dst_ip_52.97.67.109_src_ip_22.226.161.74_dst_port_39438_src_port_41591_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:42:b2:b1:60:9f_src_mac_02:25:e5:49:b1:2e_eth_type_ipv4_ip_proto_udp_dst_ip_52.97.67.109_src_ip_22.226.161.74_dst_port_39438_src_port_41591_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:42:b2:b1:60:9f_src_mac_02:25:e5:49:b1:2e_eth_type_ipv4_ip_proto_udp_dst_ip_52.97.67.109_src_ip_22.226.161.74_dst_port_39438_src_port_41591_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:42:b2:b1:60:9f_src_mac_02:25:e5:49:b1:2e_eth_type_ipv4_ip_proto_udp_dst_ip_52.97.67.109_src_ip_22.226.161.74_dst_port_39438_src_port_41591_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:42:b2:b1:60:9f_src_mac_02:25:e5:49:b1:2e_eth_type_ipv4_ip_proto_udp_dst_ip_52.97.67.109_src_ip_22.226.161.74_dst_port_39438_src_port_41591_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:42:b2:b1:60:9f_src_mac_02:25:e5:49:b1:2e_eth_type_ipv4_ip_proto_udp_dst_ip_52.97.67.109_src_ip_22.226.161.74_dst_port_39438_src_port_41591_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6ad510>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:42:b2:b1:60:9f_src_mac_02:25:e5:49:b1:2e_eth_type_ipv4_ip_proto_udp_dst_ip_52.97.67.109_src_ip_22.226.161.74_dst_port_39438_src_port_41591 SIP-DIP N/A Tx 43861 Rx 17560 Loss 59.964 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:42:b2:b1:60:9f_src_mac_02:25:e5:49:b1:2e_eth_type_ipv4_ip_proto_udp_dst_ip_52.97.67.109_src_ip_22.226.161.74_dst_port_39438_src_port_41591_unmatch_srcMac SIP-DIP N/A Tx 43861 Rx 43861 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:42:b2:b1:60:9f_src_mac_02:25:e5:49:b1:2e_eth_type_ipv4_ip_proto_udp_dst_ip_52.97.67.109_src_ip_22.226.161.74_dst_port_39438_src_port_41591_unmatch_dstMac SIP-DIP N/A Tx 43861 Rx 43861 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:42:b2:b1:60:9f_src_mac_02:25:e5:49:b1:2e_eth_type_ipv4_ip_proto_udp_dst_ip_52.97.67.109_src_ip_22.226.161.74_dst_port_39438_src_port_41591_unmatch_srcIp SIP-DIP N/A Tx 43861 Rx 43861 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:42:b2:b1:60:9f_src_mac_02:25:e5:49:b1:2e_eth_type_ipv4_ip_proto_udp_dst_ip_52.97.67.109_src_ip_22.226.161.74_dst_port_39438_src_port_41591_unmatch_dstIp SIP-DIP N/A Tx 43861 Rx 43861 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:42:b2:b1:60:9f_src_mac_02:25:e5:49:b1:2e_eth_type_ipv4_ip_proto_udp_dst_ip_52.97.67.109_src_ip_22.226.161.74_dst_port_39438_src_port_41591_unmatch_srcPort SIP-DIP N/A Tx 43861 Rx 43861 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:42:b2:b1:60:9f_src_mac_02:25:e5:49:b1:2e_eth_type_ipv4_ip_proto_udp_dst_ip_52.97.67.109_src_ip_22.226.161.74_dst_port_39438_src_port_41591_unmatch_dstPort SIP-DIP N/A Tx 43861 Rx 43861 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:42:b2:b1:60:9f_src_mac_02:25:e5:49:b1:2e_eth_type_ipv4_ip_proto_udp_dst_ip_52.97.67.109_src_ip_22.226.161.74_dst_port_39438_src_port_41591 Tx Frames: 43861, Rx Frames: 17560, loss = 59.964, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:42:b2:b1:60:9f_src_mac_02:25:e5:49:b1:2e_eth_type_ipv4_ip_proto_udp_dst_ip_52.97.67.109_src_ip_22.226.161.74_dst_port_39438_src_port_41591_unmatch_srcMac Tx Frames: 43861, Rx Frames: 43861, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:42:b2:b1:60:9f_src_mac_02:25:e5:49:b1:2e_eth_type_ipv4_ip_proto_udp_dst_ip_52.97.67.109_src_ip_22.226.161.74_dst_port_39438_src_port_41591_unmatch_dstMac Tx Frames: 43861, Rx Frames: 43861, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:42:b2:b1:60:9f_src_mac_02:25:e5:49:b1:2e_eth_type_ipv4_ip_proto_udp_dst_ip_52.97.67.109_src_ip_22.226.161.74_dst_port_39438_src_port_41591_unmatch_srcIp Tx Frames: 43861, Rx Frames: 43861, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:42:b2:b1:60:9f_src_mac_02:25:e5:49:b1:2e_eth_type_ipv4_ip_proto_udp_dst_ip_52.97.67.109_src_ip_22.226.161.74_dst_port_39438_src_port_41591_unmatch_dstIp Tx Frames: 43861, Rx Frames: 43861, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:42:b2:b1:60:9f_src_mac_02:25:e5:49:b1:2e_eth_type_ipv4_ip_proto_udp_dst_ip_52.97.67.109_src_ip_22.226.161.74_dst_port_39438_src_port_41591_unmatch_srcPort Tx Frames: 43861, Rx Frames: 43861, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:42:b2:b1:60:9f_src_mac_02:25:e5:49:b1:2e_eth_type_ipv4_ip_proto_udp_dst_ip_52.97.67.109_src_ip_22.226.161.74_dst_port_39438_src_port_41591_unmatch_dstPort Tx Frames: 43861, Rx Frames: 43861, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=31, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=12] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:42:b2:b1:60:9f","src_mac":"02:25:e5:49:b1:2e","eth_type":"ipv4","ip_proto":"udp","dst_ip":"52.97.67.109","src_ip":"22.226.161.74","dst_port":39438,"src_port":41591},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":177,"stats":{"bytes":11228416,"packets":43861,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11228416,"hw_packets":43861,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 43861, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 43861, packets = 43861, expected = 43861, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 43861, hw_packets = 43861, expected = 43861, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=31, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=14] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:52:25 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=31, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=31, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=31, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":64,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=31, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=31, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=31, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=31, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:52:26 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=31, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:52:26 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=31, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=31, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=31, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=31, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=31, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=31, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=31, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=31, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=31, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=31, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=31, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=31, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=31, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=31, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=31, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=31, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-tagged-pass] 183.73
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-tagged-pass]">Starting testcase:test_acl_all_selectors[port-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1597' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=31, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=32] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=32] Local address: 172.17.0.3, port 54628 INFO asyncssh:logging.py:92 [conn=32] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=32] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=32] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:52:27 PM UTC INFO asyncssh:logging.py:92 [conn=32, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=32, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=32, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=32, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=32, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=5] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 322 && bridge vlan add dev swp2 vid 322 INFO asyncssh:logging.py:92 [conn=32, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=6] Command: bridge vlan add dev swp1 vid 322 && bridge vlan add dev swp2 vid 322 INFO asyncssh:logging.py:92 [conn=32, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=32, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=32, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:25:30:45:3a:19 dst_mac 02:8e:03:2b:cf:85 vlan_id 322 vlan_ethtype ip src_ip 24.138.102.31 dst_ip 80.143.228.206 ip_proto udp src_port 38506 dst_port 31459 action pass INFO asyncssh:logging.py:92 [conn=32, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=10] Command: tc filter add dev swp1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:25:30:45:3a:19 dst_mac 02:8e:03:2b:cf:85 vlan_id 322 vlan_ethtype ip src_ip 24.138.102.31 dst_ip 80.143.228.206 ip_proto udp src_port 38506 dst_port 31459 action pass INFO asyncssh:logging.py:92 [conn=32, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=32, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=12] Command: tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=32, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":322,"vlan_ethtype":"ip","dst_mac":"02:8e:03:2b:cf:85","src_mac":"02:25:30:45:3a:19","eth_type":"ipv4","ip_proto":"udp","dst_ip":"80.143.228.206","src_ip":"24.138.102.31","dst_port":31459,"src_port":38506},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 322, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 322, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_322_vlan_ethtype_ip_dst_mac_02:8e:03:2b:cf:85_src_mac_02:25:30:45:3a:19_eth_type_ipv4_ip_proto_udp_dst_ip_80.143.228.206_src_ip_24.138.102.31_dst_port_31459_src_port_38506 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_322_vlan_ethtype_ip_dst_mac_02:8e:03:2b:cf:85_src_mac_02:25:30:45:3a:19_eth_type_ipv4_ip_proto_udp_dst_ip_80.143.228.206_src_ip_24.138.102.31_dst_port_31459_src_port_38506_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_322_vlan_ethtype_ip_dst_mac_02:8e:03:2b:cf:85_src_mac_02:25:30:45:3a:19_eth_type_ipv4_ip_proto_udp_dst_ip_80.143.228.206_src_ip_24.138.102.31_dst_port_31459_src_port_38506_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_322_vlan_ethtype_ip_dst_mac_02:8e:03:2b:cf:85_src_mac_02:25:30:45:3a:19_eth_type_ipv4_ip_proto_udp_dst_ip_80.143.228.206_src_ip_24.138.102.31_dst_port_31459_src_port_38506_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_322_vlan_ethtype_ip_dst_mac_02:8e:03:2b:cf:85_src_mac_02:25:30:45:3a:19_eth_type_ipv4_ip_proto_udp_dst_ip_80.143.228.206_src_ip_24.138.102.31_dst_port_31459_src_port_38506_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_322_vlan_ethtype_ip_dst_mac_02:8e:03:2b:cf:85_src_mac_02:25:30:45:3a:19_eth_type_ipv4_ip_proto_udp_dst_ip_80.143.228.206_src_ip_24.138.102.31_dst_port_31459_src_port_38506_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_322_vlan_ethtype_ip_dst_mac_02:8e:03:2b:cf:85_src_mac_02:25:30:45:3a:19_eth_type_ipv4_ip_proto_udp_dst_ip_80.143.228.206_src_ip_24.138.102.31_dst_port_31459_src_port_38506_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_322_vlan_ethtype_ip_dst_mac_02:8e:03:2b:cf:85_src_mac_02:25:30:45:3a:19_eth_type_ipv4_ip_proto_udp_dst_ip_80.143.228.206_src_ip_24.138.102.31_dst_port_31459_src_port_38506_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6af4f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_322_vlan_ethtype_ip_dst_mac_02:8e:03:2b:cf:85_src_mac_02:25:30:45:3a:19_eth_type_ipv4_ip_proto_udp_dst_ip_80.143.228.206_src_ip_24.138.102.31_dst_port_31459_src_port_38506 SIP-DIP N/A Tx 43867 Rx 43867 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_322_vlan_ethtype_ip_dst_mac_02:8e:03:2b:cf:85_src_mac_02:25:30:45:3a:19_eth_type_ipv4_ip_proto_udp_dst_ip_80.143.228.206_src_ip_24.138.102.31_dst_port_31459_src_port_38506_unmatch_srcMac SIP-DIP N/A Tx 43867 Rx 43867 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_322_vlan_ethtype_ip_dst_mac_02:8e:03:2b:cf:85_src_mac_02:25:30:45:3a:19_eth_type_ipv4_ip_proto_udp_dst_ip_80.143.228.206_src_ip_24.138.102.31_dst_port_31459_src_port_38506_unmatch_dstMac SIP-DIP N/A Tx 43867 Rx 43867 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_322_vlan_ethtype_ip_dst_mac_02:8e:03:2b:cf:85_src_mac_02:25:30:45:3a:19_eth_type_ipv4_ip_proto_udp_dst_ip_80.143.228.206_src_ip_24.138.102.31_dst_port_31459_src_port_38506_unmatch_vlanID SIP-DIP N/A Tx 43867 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_322_vlan_ethtype_ip_dst_mac_02:8e:03:2b:cf:85_src_mac_02:25:30:45:3a:19_eth_type_ipv4_ip_proto_udp_dst_ip_80.143.228.206_src_ip_24.138.102.31_dst_port_31459_src_port_38506_unmatch_srcIp SIP-DIP N/A Tx 43867 Rx 43867 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_322_vlan_ethtype_ip_dst_mac_02:8e:03:2b:cf:85_src_mac_02:25:30:45:3a:19_eth_type_ipv4_ip_proto_udp_dst_ip_80.143.228.206_src_ip_24.138.102.31_dst_port_31459_src_port_38506_unmatch_dstIp SIP-DIP N/A Tx 43867 Rx 43867 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_322_vlan_ethtype_ip_dst_mac_02:8e:03:2b:cf:85_src_mac_02:25:30:45:3a:19_eth_type_ipv4_ip_proto_udp_dst_ip_80.143.228.206_src_ip_24.138.102.31_dst_port_31459_src_port_38506_unmatch_srcPort SIP-DIP N/A Tx 43867 Rx 43867 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_322_vlan_ethtype_ip_dst_mac_02:8e:03:2b:cf:85_src_mac_02:25:30:45:3a:19_eth_type_ipv4_ip_proto_udp_dst_ip_80.143.228.206_src_ip_24.138.102.31_dst_port_31459_src_port_38506_unmatch_dstPort SIP-DIP N/A Tx 43867 Rx 43867 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_322_vlan_ethtype_ip_dst_mac_02:8e:03:2b:cf:85_src_mac_02:25:30:45:3a:19_eth_type_ipv4_ip_proto_udp_dst_ip_80.143.228.206_src_ip_24.138.102.31_dst_port_31459_src_port_38506 Tx Frames: 43867, Rx Frames: 43867, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_322_vlan_ethtype_ip_dst_mac_02:8e:03:2b:cf:85_src_mac_02:25:30:45:3a:19_eth_type_ipv4_ip_proto_udp_dst_ip_80.143.228.206_src_ip_24.138.102.31_dst_port_31459_src_port_38506_unmatch_srcMac Tx Frames: 43867, Rx Frames: 43867, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_322_vlan_ethtype_ip_dst_mac_02:8e:03:2b:cf:85_src_mac_02:25:30:45:3a:19_eth_type_ipv4_ip_proto_udp_dst_ip_80.143.228.206_src_ip_24.138.102.31_dst_port_31459_src_port_38506_unmatch_dstMac Tx Frames: 43867, Rx Frames: 43867, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_322_vlan_ethtype_ip_dst_mac_02:8e:03:2b:cf:85_src_mac_02:25:30:45:3a:19_eth_type_ipv4_ip_proto_udp_dst_ip_80.143.228.206_src_ip_24.138.102.31_dst_port_31459_src_port_38506_unmatch_vlanID Tx Frames: 43867, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_322_vlan_ethtype_ip_dst_mac_02:8e:03:2b:cf:85_src_mac_02:25:30:45:3a:19_eth_type_ipv4_ip_proto_udp_dst_ip_80.143.228.206_src_ip_24.138.102.31_dst_port_31459_src_port_38506_unmatch_srcIp Tx Frames: 43867, Rx Frames: 43867, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_322_vlan_ethtype_ip_dst_mac_02:8e:03:2b:cf:85_src_mac_02:25:30:45:3a:19_eth_type_ipv4_ip_proto_udp_dst_ip_80.143.228.206_src_ip_24.138.102.31_dst_port_31459_src_port_38506_unmatch_dstIp Tx Frames: 43867, Rx Frames: 43867, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_322_vlan_ethtype_ip_dst_mac_02:8e:03:2b:cf:85_src_mac_02:25:30:45:3a:19_eth_type_ipv4_ip_proto_udp_dst_ip_80.143.228.206_src_ip_24.138.102.31_dst_port_31459_src_port_38506_unmatch_srcPort Tx Frames: 43867, Rx Frames: 43867, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_322_vlan_ethtype_ip_dst_mac_02:8e:03:2b:cf:85_src_mac_02:25:30:45:3a:19_eth_type_ipv4_ip_proto_udp_dst_ip_80.143.228.206_src_ip_24.138.102.31_dst_port_31459_src_port_38506_unmatch_dstPort Tx Frames: 43867, Rx Frames: 43867, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=32, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=32, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=14] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=32, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":322,"vlan_ethtype":"ip","dst_mac":"02:8e:03:2b:cf:85","src_mac":"02:25:30:45:3a:19","eth_type":"ipv4","ip_proto":"udp","dst_ip":"80.143.228.206","src_ip":"24.138.102.31","dst_port":31459,"src_port":38506},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":182,"stats":{"bytes":11229952,"packets":43867,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11229952,"hw_packets":43867,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 43867, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 43867, packets = 43867, expected = 43867, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 43867, hw_packets = 43867, expected = 43867, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=32, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=16] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:55:29 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=32, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=32, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=32, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":65,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=32, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=32, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=32, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=32, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:55:29 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=32, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=24] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:55:30 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=32, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=32, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=32, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=32, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=32, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=32, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=32, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=32, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=32, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=32, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=32, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=50] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=32, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=32, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=32, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=32, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=32, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=32, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=32, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-tagged-drop] 191.87
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-tagged-drop]">Starting testcase:test_acl_all_selectors[port-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1666' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=32, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=33] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=33] Local address: 172.17.0.3, port 42542 INFO asyncssh:logging.py:92 [conn=33] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=33] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=33] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:55:30 PM UTC INFO asyncssh:logging.py:92 [conn=33, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=33, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=33, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=33, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=33, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=5] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 2601 && bridge vlan add dev swp2 vid 2601 INFO asyncssh:logging.py:92 [conn=33, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=6] Command: bridge vlan add dev swp1 vid 2601 && bridge vlan add dev swp2 vid 2601 INFO asyncssh:logging.py:92 [conn=33, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=33, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=33, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:db:27:40:54:9e dst_mac 02:25:08:ad:90:82 vlan_id 2601 vlan_ethtype ip src_ip 86.80.53.142 dst_ip 77.144.18.44 ip_proto udp src_port 28212 dst_port 44452 action drop INFO asyncssh:logging.py:92 [conn=33, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=10] Command: tc filter add dev swp1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:db:27:40:54:9e dst_mac 02:25:08:ad:90:82 vlan_id 2601 vlan_ethtype ip src_ip 86.80.53.142 dst_ip 77.144.18.44 ip_proto udp src_port 28212 dst_port 44452 action drop INFO asyncssh:logging.py:92 [conn=33, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=33, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=12] Command: tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=33, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2601,"vlan_ethtype":"ip","dst_mac":"02:25:08:ad:90:82","src_mac":"02:db:27:40:54:9e","eth_type":"ipv4","ip_proto":"udp","dst_ip":"77.144.18.44","src_ip":"86.80.53.142","dst_port":44452,"src_port":28212},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2601, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2601, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2601_vlan_ethtype_ip_dst_mac_02:25:08:ad:90:82_src_mac_02:db:27:40:54:9e_eth_type_ipv4_ip_proto_udp_dst_ip_77.144.18.44_src_ip_86.80.53.142_dst_port_44452_src_port_28212 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2601_vlan_ethtype_ip_dst_mac_02:25:08:ad:90:82_src_mac_02:db:27:40:54:9e_eth_type_ipv4_ip_proto_udp_dst_ip_77.144.18.44_src_ip_86.80.53.142_dst_port_44452_src_port_28212_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2601_vlan_ethtype_ip_dst_mac_02:25:08:ad:90:82_src_mac_02:db:27:40:54:9e_eth_type_ipv4_ip_proto_udp_dst_ip_77.144.18.44_src_ip_86.80.53.142_dst_port_44452_src_port_28212_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2601_vlan_ethtype_ip_dst_mac_02:25:08:ad:90:82_src_mac_02:db:27:40:54:9e_eth_type_ipv4_ip_proto_udp_dst_ip_77.144.18.44_src_ip_86.80.53.142_dst_port_44452_src_port_28212_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2601_vlan_ethtype_ip_dst_mac_02:25:08:ad:90:82_src_mac_02:db:27:40:54:9e_eth_type_ipv4_ip_proto_udp_dst_ip_77.144.18.44_src_ip_86.80.53.142_dst_port_44452_src_port_28212_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2601_vlan_ethtype_ip_dst_mac_02:25:08:ad:90:82_src_mac_02:db:27:40:54:9e_eth_type_ipv4_ip_proto_udp_dst_ip_77.144.18.44_src_ip_86.80.53.142_dst_port_44452_src_port_28212_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2601_vlan_ethtype_ip_dst_mac_02:25:08:ad:90:82_src_mac_02:db:27:40:54:9e_eth_type_ipv4_ip_proto_udp_dst_ip_77.144.18.44_src_ip_86.80.53.142_dst_port_44452_src_port_28212_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2601_vlan_ethtype_ip_dst_mac_02:25:08:ad:90:82_src_mac_02:db:27:40:54:9e_eth_type_ipv4_ip_proto_udp_dst_ip_77.144.18.44_src_ip_86.80.53.142_dst_port_44452_src_port_28212_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6ac0d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_2601_vlan_ethtype_ip_dst_mac_02:25:08:ad:90:82_src_mac_02:db:27:40:54:9e_eth_type_ipv4_ip_proto_udp_dst_ip_77.144.18.44_src_ip_86.80.53.142_dst_port_44452_src_port_28212 SIP-DIP N/A Tx 43466 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_2601_vlan_ethtype_ip_dst_mac_02:25:08:ad:90:82_src_mac_02:db:27:40:54:9e_eth_type_ipv4_ip_proto_udp_dst_ip_77.144.18.44_src_ip_86.80.53.142_dst_port_44452_src_port_28212_unmatch_srcMac SIP-DIP N/A Tx 43466 Rx 43466 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_2601_vlan_ethtype_ip_dst_mac_02:25:08:ad:90:82_src_mac_02:db:27:40:54:9e_eth_type_ipv4_ip_proto_udp_dst_ip_77.144.18.44_src_ip_86.80.53.142_dst_port_44452_src_port_28212_unmatch_dstMac SIP-DIP N/A Tx 43466 Rx 43466 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_2601_vlan_ethtype_ip_dst_mac_02:25:08:ad:90:82_src_mac_02:db:27:40:54:9e_eth_type_ipv4_ip_proto_udp_dst_ip_77.144.18.44_src_ip_86.80.53.142_dst_port_44452_src_port_28212_unmatch_vlanID SIP-DIP N/A Tx 43466 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_2601_vlan_ethtype_ip_dst_mac_02:25:08:ad:90:82_src_mac_02:db:27:40:54:9e_eth_type_ipv4_ip_proto_udp_dst_ip_77.144.18.44_src_ip_86.80.53.142_dst_port_44452_src_port_28212_unmatch_srcIp SIP-DIP N/A Tx 43466 Rx 43466 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_2601_vlan_ethtype_ip_dst_mac_02:25:08:ad:90:82_src_mac_02:db:27:40:54:9e_eth_type_ipv4_ip_proto_udp_dst_ip_77.144.18.44_src_ip_86.80.53.142_dst_port_44452_src_port_28212_unmatch_dstIp SIP-DIP N/A Tx 43466 Rx 43466 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_2601_vlan_ethtype_ip_dst_mac_02:25:08:ad:90:82_src_mac_02:db:27:40:54:9e_eth_type_ipv4_ip_proto_udp_dst_ip_77.144.18.44_src_ip_86.80.53.142_dst_port_44452_src_port_28212_unmatch_srcPort SIP-DIP N/A Tx 43466 Rx 43466 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_2601_vlan_ethtype_ip_dst_mac_02:25:08:ad:90:82_src_mac_02:db:27:40:54:9e_eth_type_ipv4_ip_proto_udp_dst_ip_77.144.18.44_src_ip_86.80.53.142_dst_port_44452_src_port_28212_unmatch_dstPort SIP-DIP N/A Tx 43466 Rx 43466 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2601_vlan_ethtype_ip_dst_mac_02:25:08:ad:90:82_src_mac_02:db:27:40:54:9e_eth_type_ipv4_ip_proto_udp_dst_ip_77.144.18.44_src_ip_86.80.53.142_dst_port_44452_src_port_28212 Tx Frames: 43466, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2601_vlan_ethtype_ip_dst_mac_02:25:08:ad:90:82_src_mac_02:db:27:40:54:9e_eth_type_ipv4_ip_proto_udp_dst_ip_77.144.18.44_src_ip_86.80.53.142_dst_port_44452_src_port_28212_unmatch_srcMac Tx Frames: 43466, Rx Frames: 43466, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2601_vlan_ethtype_ip_dst_mac_02:25:08:ad:90:82_src_mac_02:db:27:40:54:9e_eth_type_ipv4_ip_proto_udp_dst_ip_77.144.18.44_src_ip_86.80.53.142_dst_port_44452_src_port_28212_unmatch_dstMac Tx Frames: 43466, Rx Frames: 43466, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2601_vlan_ethtype_ip_dst_mac_02:25:08:ad:90:82_src_mac_02:db:27:40:54:9e_eth_type_ipv4_ip_proto_udp_dst_ip_77.144.18.44_src_ip_86.80.53.142_dst_port_44452_src_port_28212_unmatch_vlanID Tx Frames: 43466, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2601_vlan_ethtype_ip_dst_mac_02:25:08:ad:90:82_src_mac_02:db:27:40:54:9e_eth_type_ipv4_ip_proto_udp_dst_ip_77.144.18.44_src_ip_86.80.53.142_dst_port_44452_src_port_28212_unmatch_srcIp Tx Frames: 43466, Rx Frames: 43466, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2601_vlan_ethtype_ip_dst_mac_02:25:08:ad:90:82_src_mac_02:db:27:40:54:9e_eth_type_ipv4_ip_proto_udp_dst_ip_77.144.18.44_src_ip_86.80.53.142_dst_port_44452_src_port_28212_unmatch_dstIp Tx Frames: 43466, Rx Frames: 43466, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2601_vlan_ethtype_ip_dst_mac_02:25:08:ad:90:82_src_mac_02:db:27:40:54:9e_eth_type_ipv4_ip_proto_udp_dst_ip_77.144.18.44_src_ip_86.80.53.142_dst_port_44452_src_port_28212_unmatch_srcPort Tx Frames: 43466, Rx Frames: 43466, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_2601_vlan_ethtype_ip_dst_mac_02:25:08:ad:90:82_src_mac_02:db:27:40:54:9e_eth_type_ipv4_ip_proto_udp_dst_ip_77.144.18.44_src_ip_86.80.53.142_dst_port_44452_src_port_28212_unmatch_dstPort Tx Frames: 43466, Rx Frames: 43466, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=33, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=33, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=14] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=33, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2601,"vlan_ethtype":"ip","dst_mac":"02:25:08:ad:90:82","src_mac":"02:db:27:40:54:9e","eth_type":"ipv4","ip_proto":"udp","dst_ip":"77.144.18.44","src_ip":"86.80.53.142","dst_port":44452,"src_port":28212},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":190,"stats":{"bytes":11127296,"packets":43466,"drops":43466,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11127296,"hw_packets":43466,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 43466, drops = 43466, expected = 43466, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 43466, packets = 43466, expected = 43466, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 43466, hw_packets = 43466, expected = 43466, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=33, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=16] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:58:41 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=33, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=33, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=33, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":66,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=33, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=33, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=33, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=33, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:58:41 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=33, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=24] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:58:42 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=33, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=33, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=33, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=33, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=33, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=33, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=33, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=33, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=33, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=33, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=33, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=50] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=33, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=33, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=33, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=33, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=33, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=33, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=33, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-tagged-trap] 188.04
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-tagged-trap]">Starting testcase:test_acl_all_selectors[port-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1735' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=33, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=34] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=34] Local address: 172.17.0.3, port 44010 INFO asyncssh:logging.py:92 [conn=34] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=34] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=34] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 05:58:42 PM UTC INFO asyncssh:logging.py:92 [conn=34, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=34, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=34, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=34, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=34, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=5] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 3836 && bridge vlan add dev swp2 vid 3836 INFO asyncssh:logging.py:92 [conn=34, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=6] Command: bridge vlan add dev swp1 vid 3836 && bridge vlan add dev swp2 vid 3836 INFO asyncssh:logging.py:92 [conn=34, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=34, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=34, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:a4:79:d4:13:f5 dst_mac 02:eb:5b:31:cc:4d vlan_id 3836 vlan_ethtype ip src_ip 13.176.245.130 dst_ip 17.137.25.214 ip_proto udp src_port 13493 dst_port 7693 action trap INFO asyncssh:logging.py:92 [conn=34, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=10] Command: tc filter add dev swp1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:a4:79:d4:13:f5 dst_mac 02:eb:5b:31:cc:4d vlan_id 3836 vlan_ethtype ip src_ip 13.176.245.130 dst_ip 17.137.25.214 ip_proto udp src_port 13493 dst_port 7693 action trap INFO asyncssh:logging.py:92 [conn=34, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=34, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=12] Command: tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=34, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":3836,"vlan_ethtype":"ip","dst_mac":"02:eb:5b:31:cc:4d","src_mac":"02:a4:79:d4:13:f5","eth_type":"ipv4","ip_proto":"udp","dst_ip":"17.137.25.214","src_ip":"13.176.245.130","dst_port":7693,"src_port":13493},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 3836, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 3836, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_3836_vlan_ethtype_ip_dst_mac_02:eb:5b:31:cc:4d_src_mac_02:a4:79:d4:13:f5_eth_type_ipv4_ip_proto_udp_dst_ip_17.137.25.214_src_ip_13.176.245.130_dst_port_7693_src_port_13493 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_3836_vlan_ethtype_ip_dst_mac_02:eb:5b:31:cc:4d_src_mac_02:a4:79:d4:13:f5_eth_type_ipv4_ip_proto_udp_dst_ip_17.137.25.214_src_ip_13.176.245.130_dst_port_7693_src_port_13493_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_3836_vlan_ethtype_ip_dst_mac_02:eb:5b:31:cc:4d_src_mac_02:a4:79:d4:13:f5_eth_type_ipv4_ip_proto_udp_dst_ip_17.137.25.214_src_ip_13.176.245.130_dst_port_7693_src_port_13493_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_3836_vlan_ethtype_ip_dst_mac_02:eb:5b:31:cc:4d_src_mac_02:a4:79:d4:13:f5_eth_type_ipv4_ip_proto_udp_dst_ip_17.137.25.214_src_ip_13.176.245.130_dst_port_7693_src_port_13493_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_3836_vlan_ethtype_ip_dst_mac_02:eb:5b:31:cc:4d_src_mac_02:a4:79:d4:13:f5_eth_type_ipv4_ip_proto_udp_dst_ip_17.137.25.214_src_ip_13.176.245.130_dst_port_7693_src_port_13493_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_3836_vlan_ethtype_ip_dst_mac_02:eb:5b:31:cc:4d_src_mac_02:a4:79:d4:13:f5_eth_type_ipv4_ip_proto_udp_dst_ip_17.137.25.214_src_ip_13.176.245.130_dst_port_7693_src_port_13493_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_3836_vlan_ethtype_ip_dst_mac_02:eb:5b:31:cc:4d_src_mac_02:a4:79:d4:13:f5_eth_type_ipv4_ip_proto_udp_dst_ip_17.137.25.214_src_ip_13.176.245.130_dst_port_7693_src_port_13493_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_3836_vlan_ethtype_ip_dst_mac_02:eb:5b:31:cc:4d_src_mac_02:a4:79:d4:13:f5_eth_type_ipv4_ip_proto_udp_dst_ip_17.137.25.214_src_ip_13.176.245.130_dst_port_7693_src_port_13493_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6afd60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_3836_vlan_ethtype_ip_dst_mac_02:eb:5b:31:cc:4d_src_mac_02:a4:79:d4:13:f5_eth_type_ipv4_ip_proto_udp_dst_ip_17.137.25.214_src_ip_13.176.245.130_dst_port_7693_src_port_13493 SIP-DIP N/A Tx 44336 Rx 17754 Loss 59.956 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_3836_vlan_ethtype_ip_dst_mac_02:eb:5b:31:cc:4d_src_mac_02:a4:79:d4:13:f5_eth_type_ipv4_ip_proto_udp_dst_ip_17.137.25.214_src_ip_13.176.245.130_dst_port_7693_src_port_13493_unmatch_srcMac SIP-DIP N/A Tx 44336 Rx 44336 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_3836_vlan_ethtype_ip_dst_mac_02:eb:5b:31:cc:4d_src_mac_02:a4:79:d4:13:f5_eth_type_ipv4_ip_proto_udp_dst_ip_17.137.25.214_src_ip_13.176.245.130_dst_port_7693_src_port_13493_unmatch_dstMac SIP-DIP N/A Tx 44336 Rx 44336 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_3836_vlan_ethtype_ip_dst_mac_02:eb:5b:31:cc:4d_src_mac_02:a4:79:d4:13:f5_eth_type_ipv4_ip_proto_udp_dst_ip_17.137.25.214_src_ip_13.176.245.130_dst_port_7693_src_port_13493_unmatch_vlanID SIP-DIP N/A Tx 44336 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_3836_vlan_ethtype_ip_dst_mac_02:eb:5b:31:cc:4d_src_mac_02:a4:79:d4:13:f5_eth_type_ipv4_ip_proto_udp_dst_ip_17.137.25.214_src_ip_13.176.245.130_dst_port_7693_src_port_13493_unmatch_srcIp SIP-DIP N/A Tx 44336 Rx 44336 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_3836_vlan_ethtype_ip_dst_mac_02:eb:5b:31:cc:4d_src_mac_02:a4:79:d4:13:f5_eth_type_ipv4_ip_proto_udp_dst_ip_17.137.25.214_src_ip_13.176.245.130_dst_port_7693_src_port_13493_unmatch_dstIp SIP-DIP N/A Tx 44336 Rx 44336 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_3836_vlan_ethtype_ip_dst_mac_02:eb:5b:31:cc:4d_src_mac_02:a4:79:d4:13:f5_eth_type_ipv4_ip_proto_udp_dst_ip_17.137.25.214_src_ip_13.176.245.130_dst_port_7693_src_port_13493_unmatch_srcPort SIP-DIP N/A Tx 44336 Rx 44336 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_3836_vlan_ethtype_ip_dst_mac_02:eb:5b:31:cc:4d_src_mac_02:a4:79:d4:13:f5_eth_type_ipv4_ip_proto_udp_dst_ip_17.137.25.214_src_ip_13.176.245.130_dst_port_7693_src_port_13493_unmatch_dstPort SIP-DIP N/A Tx 44336 Rx 44336 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_3836_vlan_ethtype_ip_dst_mac_02:eb:5b:31:cc:4d_src_mac_02:a4:79:d4:13:f5_eth_type_ipv4_ip_proto_udp_dst_ip_17.137.25.214_src_ip_13.176.245.130_dst_port_7693_src_port_13493 Tx Frames: 44336, Rx Frames: 17754, loss = 59.956, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_3836_vlan_ethtype_ip_dst_mac_02:eb:5b:31:cc:4d_src_mac_02:a4:79:d4:13:f5_eth_type_ipv4_ip_proto_udp_dst_ip_17.137.25.214_src_ip_13.176.245.130_dst_port_7693_src_port_13493_unmatch_srcMac Tx Frames: 44336, Rx Frames: 44336, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_3836_vlan_ethtype_ip_dst_mac_02:eb:5b:31:cc:4d_src_mac_02:a4:79:d4:13:f5_eth_type_ipv4_ip_proto_udp_dst_ip_17.137.25.214_src_ip_13.176.245.130_dst_port_7693_src_port_13493_unmatch_dstMac Tx Frames: 44336, Rx Frames: 44336, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_3836_vlan_ethtype_ip_dst_mac_02:eb:5b:31:cc:4d_src_mac_02:a4:79:d4:13:f5_eth_type_ipv4_ip_proto_udp_dst_ip_17.137.25.214_src_ip_13.176.245.130_dst_port_7693_src_port_13493_unmatch_vlanID Tx Frames: 44336, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_3836_vlan_ethtype_ip_dst_mac_02:eb:5b:31:cc:4d_src_mac_02:a4:79:d4:13:f5_eth_type_ipv4_ip_proto_udp_dst_ip_17.137.25.214_src_ip_13.176.245.130_dst_port_7693_src_port_13493_unmatch_srcIp Tx Frames: 44336, Rx Frames: 44336, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_3836_vlan_ethtype_ip_dst_mac_02:eb:5b:31:cc:4d_src_mac_02:a4:79:d4:13:f5_eth_type_ipv4_ip_proto_udp_dst_ip_17.137.25.214_src_ip_13.176.245.130_dst_port_7693_src_port_13493_unmatch_dstIp Tx Frames: 44336, Rx Frames: 44336, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_3836_vlan_ethtype_ip_dst_mac_02:eb:5b:31:cc:4d_src_mac_02:a4:79:d4:13:f5_eth_type_ipv4_ip_proto_udp_dst_ip_17.137.25.214_src_ip_13.176.245.130_dst_port_7693_src_port_13493_unmatch_srcPort Tx Frames: 44336, Rx Frames: 44336, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_3836_vlan_ethtype_ip_dst_mac_02:eb:5b:31:cc:4d_src_mac_02:a4:79:d4:13:f5_eth_type_ipv4_ip_proto_udp_dst_ip_17.137.25.214_src_ip_13.176.245.130_dst_port_7693_src_port_13493_unmatch_dstPort Tx Frames: 44336, Rx Frames: 44336, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=34, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=34, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=14] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=34, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":3836,"vlan_ethtype":"ip","dst_mac":"02:eb:5b:31:cc:4d","src_mac":"02:a4:79:d4:13:f5","eth_type":"ipv4","ip_proto":"udp","dst_ip":"17.137.25.214","src_ip":"13.176.245.130","dst_port":7693,"src_port":13493},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":186,"stats":{"bytes":11350016,"packets":44336,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11350016,"hw_packets":44336,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 44336, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 44336, packets = 44336, expected = 44336, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 44336, hw_packets = 44336, expected = 44336, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=34, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=16] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:01:49 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=34, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=34, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=34, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":67,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=34, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=34, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=34, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=34, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:01:49 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=34, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=24] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:01:50 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=34, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=34, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=34, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=34, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=34, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=34, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=34, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=34, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=34, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=34, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=34, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=50] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=34, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=34, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=34, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=34, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=34, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=34, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=34, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-untagged-pass] 177.34
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-untagged-pass]">Starting testcase:test_acl_all_selectors[port-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1804' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=34, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=35] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=35] Local address: 172.17.0.3, port 60028 INFO asyncssh:logging.py:92 [conn=35] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=35] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=35] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:01:50 PM UTC INFO asyncssh:logging.py:92 [conn=35, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=35, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=35, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=35, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=35, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=5] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=35, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=6] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=35, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:61:75:17:6b:86 dst_mac 02:da:80:0d:30:12 src_ip 41.58.215.3 dst_ip 21.77.151.119 ip_proto udp src_port 47335 dst_port 50845 action pass INFO asyncssh:logging.py:92 [conn=35, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=8] Command: tc filter add dev swp1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:61:75:17:6b:86 dst_mac 02:da:80:0d:30:12 src_ip 41.58.215.3 dst_ip 21.77.151.119 ip_proto udp src_port 47335 dst_port 50845 action pass INFO asyncssh:logging.py:92 [conn=35, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=35, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=10] Command: tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=35, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:da:80:0d:30:12","src_mac":"02:61:75:17:6b:86","eth_type":"ipv4","ip_proto":"udp","dst_ip":"21.77.151.119","src_ip":"41.58.215.3","dst_port":50845,"src_port":47335},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:da:80:0d:30:12_src_mac_02:61:75:17:6b:86_eth_type_ipv4_ip_proto_udp_dst_ip_21.77.151.119_src_ip_41.58.215.3_dst_port_50845_src_port_47335 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:da:80:0d:30:12_src_mac_02:61:75:17:6b:86_eth_type_ipv4_ip_proto_udp_dst_ip_21.77.151.119_src_ip_41.58.215.3_dst_port_50845_src_port_47335_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:da:80:0d:30:12_src_mac_02:61:75:17:6b:86_eth_type_ipv4_ip_proto_udp_dst_ip_21.77.151.119_src_ip_41.58.215.3_dst_port_50845_src_port_47335_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:da:80:0d:30:12_src_mac_02:61:75:17:6b:86_eth_type_ipv4_ip_proto_udp_dst_ip_21.77.151.119_src_ip_41.58.215.3_dst_port_50845_src_port_47335_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:da:80:0d:30:12_src_mac_02:61:75:17:6b:86_eth_type_ipv4_ip_proto_udp_dst_ip_21.77.151.119_src_ip_41.58.215.3_dst_port_50845_src_port_47335_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:da:80:0d:30:12_src_mac_02:61:75:17:6b:86_eth_type_ipv4_ip_proto_udp_dst_ip_21.77.151.119_src_ip_41.58.215.3_dst_port_50845_src_port_47335_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:da:80:0d:30:12_src_mac_02:61:75:17:6b:86_eth_type_ipv4_ip_proto_udp_dst_ip_21.77.151.119_src_ip_41.58.215.3_dst_port_50845_src_port_47335_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6cb010>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:da:80:0d:30:12_src_mac_02:61:75:17:6b:86_eth_type_ipv4_ip_proto_udp_dst_ip_21.77.151.119_src_ip_41.58.215.3_dst_port_50845_src_port_47335 SIP-DIP N/A Tx 43987 Rx 43987 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:da:80:0d:30:12_src_mac_02:61:75:17:6b:86_eth_type_ipv4_ip_proto_udp_dst_ip_21.77.151.119_src_ip_41.58.215.3_dst_port_50845_src_port_47335_unmatch_srcMac SIP-DIP N/A Tx 43987 Rx 43987 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:da:80:0d:30:12_src_mac_02:61:75:17:6b:86_eth_type_ipv4_ip_proto_udp_dst_ip_21.77.151.119_src_ip_41.58.215.3_dst_port_50845_src_port_47335_unmatch_dstMac SIP-DIP N/A Tx 43987 Rx 43987 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:da:80:0d:30:12_src_mac_02:61:75:17:6b:86_eth_type_ipv4_ip_proto_udp_dst_ip_21.77.151.119_src_ip_41.58.215.3_dst_port_50845_src_port_47335_unmatch_srcIp SIP-DIP N/A Tx 43987 Rx 43987 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:da:80:0d:30:12_src_mac_02:61:75:17:6b:86_eth_type_ipv4_ip_proto_udp_dst_ip_21.77.151.119_src_ip_41.58.215.3_dst_port_50845_src_port_47335_unmatch_dstIp SIP-DIP N/A Tx 43987 Rx 43987 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:da:80:0d:30:12_src_mac_02:61:75:17:6b:86_eth_type_ipv4_ip_proto_udp_dst_ip_21.77.151.119_src_ip_41.58.215.3_dst_port_50845_src_port_47335_unmatch_srcPort SIP-DIP N/A Tx 43987 Rx 43987 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:da:80:0d:30:12_src_mac_02:61:75:17:6b:86_eth_type_ipv4_ip_proto_udp_dst_ip_21.77.151.119_src_ip_41.58.215.3_dst_port_50845_src_port_47335_unmatch_dstPort SIP-DIP N/A Tx 43987 Rx 43987 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:da:80:0d:30:12_src_mac_02:61:75:17:6b:86_eth_type_ipv4_ip_proto_udp_dst_ip_21.77.151.119_src_ip_41.58.215.3_dst_port_50845_src_port_47335 Tx Frames: 43987, Rx Frames: 43987, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:da:80:0d:30:12_src_mac_02:61:75:17:6b:86_eth_type_ipv4_ip_proto_udp_dst_ip_21.77.151.119_src_ip_41.58.215.3_dst_port_50845_src_port_47335_unmatch_srcMac Tx Frames: 43987, Rx Frames: 43987, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:da:80:0d:30:12_src_mac_02:61:75:17:6b:86_eth_type_ipv4_ip_proto_udp_dst_ip_21.77.151.119_src_ip_41.58.215.3_dst_port_50845_src_port_47335_unmatch_dstMac Tx Frames: 43987, Rx Frames: 43987, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:da:80:0d:30:12_src_mac_02:61:75:17:6b:86_eth_type_ipv4_ip_proto_udp_dst_ip_21.77.151.119_src_ip_41.58.215.3_dst_port_50845_src_port_47335_unmatch_srcIp Tx Frames: 43987, Rx Frames: 43987, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:da:80:0d:30:12_src_mac_02:61:75:17:6b:86_eth_type_ipv4_ip_proto_udp_dst_ip_21.77.151.119_src_ip_41.58.215.3_dst_port_50845_src_port_47335_unmatch_dstIp Tx Frames: 43987, Rx Frames: 43987, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:da:80:0d:30:12_src_mac_02:61:75:17:6b:86_eth_type_ipv4_ip_proto_udp_dst_ip_21.77.151.119_src_ip_41.58.215.3_dst_port_50845_src_port_47335_unmatch_srcPort Tx Frames: 43987, Rx Frames: 43987, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:da:80:0d:30:12_src_mac_02:61:75:17:6b:86_eth_type_ipv4_ip_proto_udp_dst_ip_21.77.151.119_src_ip_41.58.215.3_dst_port_50845_src_port_47335_unmatch_dstPort Tx Frames: 43987, Rx Frames: 43987, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=35, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=35, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=12] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=35, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:da:80:0d:30:12","src_mac":"02:61:75:17:6b:86","eth_type":"ipv4","ip_proto":"udp","dst_ip":"21.77.151.119","src_ip":"41.58.215.3","dst_port":50845,"src_port":47335},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":175,"stats":{"bytes":11260672,"packets":43987,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11260672,"hw_packets":43987,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 43987, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 43987, packets = 43987, expected = 43987, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 43987, hw_packets = 43987, expected = 43987, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=35, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=14] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:04:46 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=35, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=35, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=35, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":68,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=35, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=35, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=35, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=35, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:04:47 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=35, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:04:47 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=35, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=35, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=35, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=35, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=35, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=35, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=35, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=35, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=35, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=35, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=35, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=35, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=35, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=35, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=35, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=35, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=35, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=35, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-untagged-drop] 177.98
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-untagged-drop]">Starting testcase:test_acl_all_selectors[port-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1871' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=35, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=36] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=36] Local address: 172.17.0.3, port 51592 INFO asyncssh:logging.py:92 [conn=36] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=36] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=36] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:04:48 PM UTC INFO asyncssh:logging.py:92 [conn=36, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=36, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=36, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=36, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=36, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=5] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=36, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=6] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=36, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:d4:8d:b9:fc:13 dst_mac 02:a9:22:eb:72:7e src_ip 86.91.214.82 dst_ip 42.233.187.113 ip_proto udp src_port 4147 dst_port 20036 action drop INFO asyncssh:logging.py:92 [conn=36, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=8] Command: tc filter add dev swp1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:d4:8d:b9:fc:13 dst_mac 02:a9:22:eb:72:7e src_ip 86.91.214.82 dst_ip 42.233.187.113 ip_proto udp src_port 4147 dst_port 20036 action drop INFO asyncssh:logging.py:92 [conn=36, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=36, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=10] Command: tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=36, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:a9:22:eb:72:7e","src_mac":"02:d4:8d:b9:fc:13","eth_type":"ipv4","ip_proto":"udp","dst_ip":"42.233.187.113","src_ip":"86.91.214.82","dst_port":20036,"src_port":4147},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:a9:22:eb:72:7e_src_mac_02:d4:8d:b9:fc:13_eth_type_ipv4_ip_proto_udp_dst_ip_42.233.187.113_src_ip_86.91.214.82_dst_port_20036_src_port_4147 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:a9:22:eb:72:7e_src_mac_02:d4:8d:b9:fc:13_eth_type_ipv4_ip_proto_udp_dst_ip_42.233.187.113_src_ip_86.91.214.82_dst_port_20036_src_port_4147_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:a9:22:eb:72:7e_src_mac_02:d4:8d:b9:fc:13_eth_type_ipv4_ip_proto_udp_dst_ip_42.233.187.113_src_ip_86.91.214.82_dst_port_20036_src_port_4147_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:a9:22:eb:72:7e_src_mac_02:d4:8d:b9:fc:13_eth_type_ipv4_ip_proto_udp_dst_ip_42.233.187.113_src_ip_86.91.214.82_dst_port_20036_src_port_4147_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:a9:22:eb:72:7e_src_mac_02:d4:8d:b9:fc:13_eth_type_ipv4_ip_proto_udp_dst_ip_42.233.187.113_src_ip_86.91.214.82_dst_port_20036_src_port_4147_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:a9:22:eb:72:7e_src_mac_02:d4:8d:b9:fc:13_eth_type_ipv4_ip_proto_udp_dst_ip_42.233.187.113_src_ip_86.91.214.82_dst_port_20036_src_port_4147_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:a9:22:eb:72:7e_src_mac_02:d4:8d:b9:fc:13_eth_type_ipv4_ip_proto_udp_dst_ip_42.233.187.113_src_ip_86.91.214.82_dst_port_20036_src_port_4147_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6adc90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:a9:22:eb:72:7e_src_mac_02:d4:8d:b9:fc:13_eth_type_ipv4_ip_proto_udp_dst_ip_42.233.187.113_src_ip_86.91.214.82_dst_port_20036_src_port_4147 SIP-DIP N/A Tx 43931 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:a9:22:eb:72:7e_src_mac_02:d4:8d:b9:fc:13_eth_type_ipv4_ip_proto_udp_dst_ip_42.233.187.113_src_ip_86.91.214.82_dst_port_20036_src_port_4147_unmatch_srcMac SIP-DIP N/A Tx 43931 Rx 43931 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:a9:22:eb:72:7e_src_mac_02:d4:8d:b9:fc:13_eth_type_ipv4_ip_proto_udp_dst_ip_42.233.187.113_src_ip_86.91.214.82_dst_port_20036_src_port_4147_unmatch_dstMac SIP-DIP N/A Tx 43931 Rx 43931 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:a9:22:eb:72:7e_src_mac_02:d4:8d:b9:fc:13_eth_type_ipv4_ip_proto_udp_dst_ip_42.233.187.113_src_ip_86.91.214.82_dst_port_20036_src_port_4147_unmatch_srcIp SIP-DIP N/A Tx 43931 Rx 43931 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:a9:22:eb:72:7e_src_mac_02:d4:8d:b9:fc:13_eth_type_ipv4_ip_proto_udp_dst_ip_42.233.187.113_src_ip_86.91.214.82_dst_port_20036_src_port_4147_unmatch_dstIp SIP-DIP N/A Tx 43931 Rx 43931 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:a9:22:eb:72:7e_src_mac_02:d4:8d:b9:fc:13_eth_type_ipv4_ip_proto_udp_dst_ip_42.233.187.113_src_ip_86.91.214.82_dst_port_20036_src_port_4147_unmatch_srcPort SIP-DIP N/A Tx 43931 Rx 43931 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:a9:22:eb:72:7e_src_mac_02:d4:8d:b9:fc:13_eth_type_ipv4_ip_proto_udp_dst_ip_42.233.187.113_src_ip_86.91.214.82_dst_port_20036_src_port_4147_unmatch_dstPort SIP-DIP N/A Tx 43931 Rx 43931 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:a9:22:eb:72:7e_src_mac_02:d4:8d:b9:fc:13_eth_type_ipv4_ip_proto_udp_dst_ip_42.233.187.113_src_ip_86.91.214.82_dst_port_20036_src_port_4147 Tx Frames: 43931, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:a9:22:eb:72:7e_src_mac_02:d4:8d:b9:fc:13_eth_type_ipv4_ip_proto_udp_dst_ip_42.233.187.113_src_ip_86.91.214.82_dst_port_20036_src_port_4147_unmatch_srcMac Tx Frames: 43931, Rx Frames: 43931, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:a9:22:eb:72:7e_src_mac_02:d4:8d:b9:fc:13_eth_type_ipv4_ip_proto_udp_dst_ip_42.233.187.113_src_ip_86.91.214.82_dst_port_20036_src_port_4147_unmatch_dstMac Tx Frames: 43931, Rx Frames: 43931, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:a9:22:eb:72:7e_src_mac_02:d4:8d:b9:fc:13_eth_type_ipv4_ip_proto_udp_dst_ip_42.233.187.113_src_ip_86.91.214.82_dst_port_20036_src_port_4147_unmatch_srcIp Tx Frames: 43931, Rx Frames: 43931, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:a9:22:eb:72:7e_src_mac_02:d4:8d:b9:fc:13_eth_type_ipv4_ip_proto_udp_dst_ip_42.233.187.113_src_ip_86.91.214.82_dst_port_20036_src_port_4147_unmatch_dstIp Tx Frames: 43931, Rx Frames: 43931, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:a9:22:eb:72:7e_src_mac_02:d4:8d:b9:fc:13_eth_type_ipv4_ip_proto_udp_dst_ip_42.233.187.113_src_ip_86.91.214.82_dst_port_20036_src_port_4147_unmatch_srcPort Tx Frames: 43931, Rx Frames: 43931, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:a9:22:eb:72:7e_src_mac_02:d4:8d:b9:fc:13_eth_type_ipv4_ip_proto_udp_dst_ip_42.233.187.113_src_ip_86.91.214.82_dst_port_20036_src_port_4147_unmatch_dstPort Tx Frames: 43931, Rx Frames: 43931, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=36, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=36, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=12] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=36, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:a9:22:eb:72:7e","src_mac":"02:d4:8d:b9:fc:13","eth_type":"ipv4","ip_proto":"udp","dst_ip":"42.233.187.113","src_ip":"86.91.214.82","dst_port":20036,"src_port":4147},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":176,"stats":{"bytes":11246336,"packets":43931,"drops":43931,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11246336,"hw_packets":43931,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 43931, drops = 43931, expected = 43931, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 43931, packets = 43931, expected = 43931, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 43931, hw_packets = 43931, expected = 43931, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=36, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=14] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:07:44 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=36, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=36, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=36, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":69,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=36, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=36, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=36, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=36, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:07:45 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=36, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:07:45 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=36, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=36, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=36, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=36, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=36, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=36, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=36, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=36, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=36, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=36, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=36, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=36, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=36, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=36, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=36, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=36, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=36, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=36, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-untagged-trap] 181.37
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-untagged-trap]">Starting testcase:test_acl_all_selectors[port-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1938' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=36, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=37] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=37] Local address: 172.17.0.3, port 38728 INFO asyncssh:logging.py:92 [conn=37] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=37] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=37] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:07:46 PM UTC INFO asyncssh:logging.py:92 [conn=37, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=37, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=37, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=37, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=37, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=5] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=37, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=6] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=37, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:38:0a:c7:8b:11 dst_mac 02:c9:f1:86:10:26 src_ip 62.143.239.243 dst_ip 35.20.132.5 ip_proto udp src_port 56132 dst_port 28398 action trap INFO asyncssh:logging.py:92 [conn=37, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=8] Command: tc filter add dev swp1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:38:0a:c7:8b:11 dst_mac 02:c9:f1:86:10:26 src_ip 62.143.239.243 dst_ip 35.20.132.5 ip_proto udp src_port 56132 dst_port 28398 action trap INFO asyncssh:logging.py:92 [conn=37, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=37, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=10] Command: tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=37, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:c9:f1:86:10:26","src_mac":"02:38:0a:c7:8b:11","eth_type":"ipv4","ip_proto":"udp","dst_ip":"35.20.132.5","src_ip":"62.143.239.243","dst_port":28398,"src_port":56132},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:c9:f1:86:10:26_src_mac_02:38:0a:c7:8b:11_eth_type_ipv4_ip_proto_udp_dst_ip_35.20.132.5_src_ip_62.143.239.243_dst_port_28398_src_port_56132 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:c9:f1:86:10:26_src_mac_02:38:0a:c7:8b:11_eth_type_ipv4_ip_proto_udp_dst_ip_35.20.132.5_src_ip_62.143.239.243_dst_port_28398_src_port_56132_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:c9:f1:86:10:26_src_mac_02:38:0a:c7:8b:11_eth_type_ipv4_ip_proto_udp_dst_ip_35.20.132.5_src_ip_62.143.239.243_dst_port_28398_src_port_56132_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:c9:f1:86:10:26_src_mac_02:38:0a:c7:8b:11_eth_type_ipv4_ip_proto_udp_dst_ip_35.20.132.5_src_ip_62.143.239.243_dst_port_28398_src_port_56132_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:c9:f1:86:10:26_src_mac_02:38:0a:c7:8b:11_eth_type_ipv4_ip_proto_udp_dst_ip_35.20.132.5_src_ip_62.143.239.243_dst_port_28398_src_port_56132_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:c9:f1:86:10:26_src_mac_02:38:0a:c7:8b:11_eth_type_ipv4_ip_proto_udp_dst_ip_35.20.132.5_src_ip_62.143.239.243_dst_port_28398_src_port_56132_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:c9:f1:86:10:26_src_mac_02:38:0a:c7:8b:11_eth_type_ipv4_ip_proto_udp_dst_ip_35.20.132.5_src_ip_62.143.239.243_dst_port_28398_src_port_56132_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6ae620>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:c9:f1:86:10:26_src_mac_02:38:0a:c7:8b:11_eth_type_ipv4_ip_proto_udp_dst_ip_35.20.132.5_src_ip_62.143.239.243_dst_port_28398_src_port_56132 SIP-DIP N/A Tx 44564 Rx 17840 Loss 59.968 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:c9:f1:86:10:26_src_mac_02:38:0a:c7:8b:11_eth_type_ipv4_ip_proto_udp_dst_ip_35.20.132.5_src_ip_62.143.239.243_dst_port_28398_src_port_56132_unmatch_srcMac SIP-DIP N/A Tx 44564 Rx 44564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:c9:f1:86:10:26_src_mac_02:38:0a:c7:8b:11_eth_type_ipv4_ip_proto_udp_dst_ip_35.20.132.5_src_ip_62.143.239.243_dst_port_28398_src_port_56132_unmatch_dstMac SIP-DIP N/A Tx 44564 Rx 44564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:c9:f1:86:10:26_src_mac_02:38:0a:c7:8b:11_eth_type_ipv4_ip_proto_udp_dst_ip_35.20.132.5_src_ip_62.143.239.243_dst_port_28398_src_port_56132_unmatch_srcIp SIP-DIP N/A Tx 44564 Rx 44564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:c9:f1:86:10:26_src_mac_02:38:0a:c7:8b:11_eth_type_ipv4_ip_proto_udp_dst_ip_35.20.132.5_src_ip_62.143.239.243_dst_port_28398_src_port_56132_unmatch_dstIp SIP-DIP N/A Tx 44564 Rx 44564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:c9:f1:86:10:26_src_mac_02:38:0a:c7:8b:11_eth_type_ipv4_ip_proto_udp_dst_ip_35.20.132.5_src_ip_62.143.239.243_dst_port_28398_src_port_56132_unmatch_srcPort SIP-DIP N/A Tx 44564 Rx 44564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:c9:f1:86:10:26_src_mac_02:38:0a:c7:8b:11_eth_type_ipv4_ip_proto_udp_dst_ip_35.20.132.5_src_ip_62.143.239.243_dst_port_28398_src_port_56132_unmatch_dstPort SIP-DIP N/A Tx 44564 Rx 44564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:c9:f1:86:10:26_src_mac_02:38:0a:c7:8b:11_eth_type_ipv4_ip_proto_udp_dst_ip_35.20.132.5_src_ip_62.143.239.243_dst_port_28398_src_port_56132 Tx Frames: 44564, Rx Frames: 17840, loss = 59.968, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:c9:f1:86:10:26_src_mac_02:38:0a:c7:8b:11_eth_type_ipv4_ip_proto_udp_dst_ip_35.20.132.5_src_ip_62.143.239.243_dst_port_28398_src_port_56132_unmatch_srcMac Tx Frames: 44564, Rx Frames: 44564, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:c9:f1:86:10:26_src_mac_02:38:0a:c7:8b:11_eth_type_ipv4_ip_proto_udp_dst_ip_35.20.132.5_src_ip_62.143.239.243_dst_port_28398_src_port_56132_unmatch_dstMac Tx Frames: 44564, Rx Frames: 44564, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:c9:f1:86:10:26_src_mac_02:38:0a:c7:8b:11_eth_type_ipv4_ip_proto_udp_dst_ip_35.20.132.5_src_ip_62.143.239.243_dst_port_28398_src_port_56132_unmatch_srcIp Tx Frames: 44564, Rx Frames: 44564, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:c9:f1:86:10:26_src_mac_02:38:0a:c7:8b:11_eth_type_ipv4_ip_proto_udp_dst_ip_35.20.132.5_src_ip_62.143.239.243_dst_port_28398_src_port_56132_unmatch_dstIp Tx Frames: 44564, Rx Frames: 44564, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:c9:f1:86:10:26_src_mac_02:38:0a:c7:8b:11_eth_type_ipv4_ip_proto_udp_dst_ip_35.20.132.5_src_ip_62.143.239.243_dst_port_28398_src_port_56132_unmatch_srcPort Tx Frames: 44564, Rx Frames: 44564, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:c9:f1:86:10:26_src_mac_02:38:0a:c7:8b:11_eth_type_ipv4_ip_proto_udp_dst_ip_35.20.132.5_src_ip_62.143.239.243_dst_port_28398_src_port_56132_unmatch_dstPort Tx Frames: 44564, Rx Frames: 44564, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=37, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=37, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=12] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=37, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:c9:f1:86:10:26","src_mac":"02:38:0a:c7:8b:11","eth_type":"ipv4","ip_proto":"udp","dst_ip":"35.20.132.5","src_ip":"62.143.239.243","dst_port":28398,"src_port":56132},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":179,"stats":{"bytes":11408384,"packets":44564,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11408384,"hw_packets":44564,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 44564, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 44564, packets = 44564, expected = 44564, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 44564, hw_packets = 44564, expected = 44564, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=37, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=14] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:10:46 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=37, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=37, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=37, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":70,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=37, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=37, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=37, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=37, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:10:46 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=37, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:10:46 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=37, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=37, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=37, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=37, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=37, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=37, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=37, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=37, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=37, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=37, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=37, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=37, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=37, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=37, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=37, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=37, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=37, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=37, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_negative.py::test_acl_rule_without_qdisc 0.80
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_rule_without_qdisc">Starting testcase:test_acl_rule_without_qdisc from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_negative.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2003' coro=<test_acl_rule_without_qdisc() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_negative.py:31> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=37, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=38] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=38] Local address: 172.17.0.3, port 52342 INFO asyncssh:logging.py:92 [conn=38] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=38] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=38] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=38, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:10:47 PM UTC INFO asyncssh:logging.py:92 [conn=38, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=1] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=2] Command: tc qdisc add dev swp1 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=38, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=3] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=4] Command: tc filter add dev swp1 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=38, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=5] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=6] Command: tc qdisc delete dev swp1 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=38, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=8] Command: tc filter add dev swp1 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=8] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=8] Channel closed DEBUG agg1:Logger.py:156 Error: Parent Qdisc doesn't exists. We have an error talking to the kernel
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_rule_without_qdisc from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_negative.py INFO asyncssh:logging.py:92 [conn=38, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=9] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=38, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=10] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:10:47 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=38, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=38, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=12] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=38, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=38, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=38, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=14] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=38, chan=14] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=14] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=38, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=16] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=38, chan=16] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=16] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=18] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=18] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=18] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=20] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=20] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=20] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=22] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=22] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=24] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=24] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=26] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=38, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=34] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=38, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=38, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=36] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=38, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=38, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=38] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=38, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=38, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=40] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=38, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/bridging/test_bridging_admin_state_down_up.py::test_bridging_admin_state_down_up 216.55
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_admin_state_down_up">Starting testcase:test_bridging_admin_state_down_up from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_admin_state_down_up.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2052' coro=<test_bridging_admin_state_down_up() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_admin_state_down_up.py:60> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=38, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=39] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=39] Local address: 172.17.0.3, port 52356 INFO asyncssh:logging.py:92 [conn=39] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=39] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=39] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=39, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:10:48 PM UTC INFO asyncssh:logging.py:92 [conn=39, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=39, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=39, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=39, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=39, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=39, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=39, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=39, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=39, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=8] Command: bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=39, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=39, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 down INFO asyncssh:logging.py:92 [conn=39, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=10] Command: ip link set dev br0 down INFO asyncssh:logging.py:92 [conn=39, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e842230>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI bridge_1 SIP-DIP N/A Tx 341 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI bridge_2 SIP-DIP N/A Tx 341 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI bridge_3 SIP-DIP N/A Tx 341 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI bridge_4 SIP-DIP N/A Tx 341 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=39, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=39, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6adb40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 341 Rx 0 Frames Delta 341 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 341 Rx 0 Frames Delta 341 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 341 Rx 0 Frames Delta 341 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 341 Rx 0 Frames Delta 341 Loss 100.000 INFO asyncssh:logging.py:92 [conn=39, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_admin_state_down_up from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_admin_state_down_up.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=39, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=39, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=18] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:14:21 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=39, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=39, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:14:24 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=39, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=39, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=39, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":71,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=39, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=39, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=39, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=24] Channel closed DEBUG agg1:Logger.py:156
Passed functional/bridging/test_bridging_ageing.py::test_bridging_ageing_refresh 305.20
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_ageing_refresh">Starting testcase:test_bridging_ageing_refresh from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2086' coro=<test_bridging_ageing_refresh() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=39, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=40] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=40] Local address: 172.17.0.3, port 34940 INFO asyncssh:logging.py:92 [conn=40] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=40] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=40] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=40, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:14:24 PM UTC INFO asyncssh:logging.py:92 [conn=40, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=40, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=40, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=40, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=40, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge ageing_time 4000 INFO asyncssh:logging.py:92 [conn=40, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=6] Command: ip link set dev br0 type bridge ageing_time 4000 INFO asyncssh:logging.py:92 [conn=40, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=40, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=40, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning on && bridge link set dev swp2 learning on && bridge link set dev swp3 learning on && bridge link set dev swp4 learning on INFO asyncssh:logging.py:92 [conn=40, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=10] Command: bridge link set dev swp1 learning on && bridge link set dev swp2 learning on && bridge link set dev swp3 learning on && bridge link set dev swp4 learning on INFO asyncssh:logging.py:92 [conn=40, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e8429e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI bridge SIP-DIP N/A Tx 246 Rx 246 Loss 0.000 INFO asyncssh:logging.py:92 [conn=40, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:67:69:c9","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e8418d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI bridge SIP-DIP N/A Tx 246 Rx 246 Loss 0.000 INFO asyncssh:logging.py:92 [conn=40, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=14] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:67:69:c9","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e867af0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI bridge SIP-DIP N/A Tx 3621 Rx 3621 Loss 0.000 INFO asyncssh:logging.py:92 [conn=40, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:67:69:c9","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_ageing_refresh from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=40, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=40, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=18] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:19:29 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=40, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=40, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:19:29 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=40, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=40, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=40, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":72,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=40, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=40, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=40, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=24] Channel closed DEBUG agg1:Logger.py:156
Passed functional/bridging/test_bridging_ageing.py::test_bridging_ageing_under_continue 207.17
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_ageing_under_continue">Starting testcase:test_bridging_ageing_under_continue from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2120' coro=<test_bridging_ageing_under_continue() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py:191> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=40, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=41] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=41] Local address: 172.17.0.3, port 51536 INFO asyncssh:logging.py:92 [conn=41] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=41] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=41] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=41, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:19:30 PM UTC INFO asyncssh:logging.py:92 [conn=41, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=41, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=41, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=41, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=41, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge ageing_time 1000 INFO asyncssh:logging.py:92 [conn=41, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=6] Command: ip link set dev br0 type bridge ageing_time 1000 INFO asyncssh:logging.py:92 [conn=41, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=41, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=41, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=41, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=10] Command: bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=41, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6c9c00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 1999 Rx 1998 Frames Delta 1 Loss 0.050 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 1999 Rx 1998 Frames Delta 1 Loss 0.050 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 1999 Rx 1998 Frames Delta 1 Loss 0.050 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 1999 Rx 1998 Frames Delta 1 Loss 0.050 INFO asyncssh:logging.py:92 [conn=41, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=41, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=41, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:d0:07:97","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_ageing_under_continue from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=41, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=41, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=14] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:22:56 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=41, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=41, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=16] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:22:56 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=41, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=41, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=41, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":73,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=41, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=41, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=41, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=20] Channel closed DEBUG agg1:Logger.py:156
Passed functional/bridging/test_bridging_bum_traffic_bridge.py::test_bridging_bum_traffic_bridge_with_rif 263.25
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_bridge_with_rif">Starting testcase:test_bridging_bum_traffic_bridge_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2151' coro=<test_bridging_bum_traffic_bridge_with_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=41, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=42] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=42] Local address: 172.17.0.3, port 54162 INFO asyncssh:logging.py:92 [conn=42] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=42] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=42] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:22:57 PM UTC INFO asyncssh:logging.py:92 [conn=42, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=42, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=42, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=42, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=42, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=42, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=42, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip address add 100.1.1.253/24 dev br0 INFO asyncssh:logging.py:92 [conn=42, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=8] Command: ip address add 100.1.1.253/24 dev br0 INFO asyncssh:logging.py:92 [conn=42, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip -j link show swp1 INFO asyncssh:logging.py:92 [conn=42, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=10] Command: ip -j link show swp1 INFO asyncssh:logging.py:92 [conn=42, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 15 tcpdump -i swp1 -n on agg1... INFO asyncssh:logging.py:92 [conn=42, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=11] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp1 -n INFO asyncssh:logging.py:92 [conn=42, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=12] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp1 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6af1f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 442 Rx 442 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI BridgedLLDP SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI LACPDU SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4ToMe SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI ARP_Request_BC SIP-DIP N/A Tx 442 Rx 442 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI ARP_Reply SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_Broadcast SIP-DIP N/A Tx 442 Rx 442 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPV4_SSH SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPV4_Telnet SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_ICMP_Request SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_DCHP_BC SIP-DIP N/A Tx 442 Rx 442 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_Reserved_MC SIP-DIP N/A Tx 442 Rx 442 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 442 Rx 442 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 442 Rx 442 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_OSPFIGP SIP-DIP N/A Tx 442 Rx 442 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 442 Rx 442 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 442 Rx 442 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 442 Rx 442 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_VRRP SIP-DIP N/A Tx 442 Rx 442 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_IGMP SIP-DIP N/A Tx 442 Rx 442 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPV4_BGP SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=42, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=12] Channel closed DEBUG agg1:Logger.py:156 18:27:01.233152 LLDP, length 219: localhost 18:27:04.882143 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.882144 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:04.882144 LLDP, length 82 [|LLDP] 18:27:04.882144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:04.882144 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:04.882144 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 033c e78e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:04.882144 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:04.882144 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:04.882144 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.882144 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:04.882144 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:04.882144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.882144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.882144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:04.882144 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:04.892134 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.892134 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:04.892134 LLDP, length 82 [|LLDP] 18:27:04.892134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:04.892134 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:04.892134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0344 88ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:04.892134 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.892134 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:04.892134 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:04.892134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.892135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.892135 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:04.892135 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:04.892135 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:04.892135 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:04.902122 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.902122 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:04.902122 LLDP, length 82 [|LLDP] 18:27:04.902122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:04.902122 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:04.902122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 034c 29ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:04.902122 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:04.902122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:04.902122 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.902122 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:04.902122 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:04.902122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.902123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.902123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:04.902123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:04.912120 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.912120 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:04.912120 LLDP, length 82 [|LLDP] 18:27:04.912120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:04.912120 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.912120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:04.912120 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:04.912120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.912120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.912120 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:04.912120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0353 caee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:04.912121 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:04.912121 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:04.912121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:04.912121 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:04.922107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.922107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:04.922107 LLDP, length 82 [|LLDP] 18:27:04.922107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:04.922107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:04.922107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 035b 6c0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:04.922107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:04.922107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.922107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:04.922107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:04.922107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.922107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.922107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:04.922108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:04.922108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:04.932104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.932104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:04.932104 LLDP, length 82 [|LLDP] 18:27:04.932104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:04.932104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:04.932104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0363 0d2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:04.932104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:04.932104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:04.932105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.932105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:04.932105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:04.932105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.932105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.932105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:04.932105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:04.942103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.942103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:04.942103 LLDP, length 82 [|LLDP] 18:27:04.942103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:04.942103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:04.942103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.942103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:04.942103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:04.942103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.942103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.942103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 036a ae4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:04.942103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:04.942103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:04.942104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:04.942104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:04.952102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.952102 LLDP, length 82 [|LLDP] 18:27:04.952102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:04.952102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:04.952102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0372 4f6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:04.952102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:04.952103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:04.952103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.952103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:04.952103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:04.952103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.952103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.952103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:04.952103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:04.952103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:04.962100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.962100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:04.962100 LLDP, length 82 [|LLDP] 18:27:04.962101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:04.962101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:04.962101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0379 f08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:04.962101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:04.962101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:04.962101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.962101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:04.962101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:04.962101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.962101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.962101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:04.962101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:04.972106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.972106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:04.972106 LLDP, length 82 [|LLDP] 18:27:04.972106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:04.972106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:04.972106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0381 91ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:04.972106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.972107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:04.972107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:04.972107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.972107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.972107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:04.972107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:04.972107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:04.972107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:04.982098 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.982098 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:04.982098 LLDP, length 82 [|LLDP] 18:27:04.982098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:04.982098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:04.982098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0389 32ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:04.982098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:04.982098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:04.982098 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.982098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:04.982098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:04.982099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.982099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.982099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:04.982099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:04.992098 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.992098 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:04.992098 LLDP, length 82 [|LLDP] 18:27:04.992098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:04.992098 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.992098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:04.992098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:04.992098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.992098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.992098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:04.992098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0390 d3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:04.992098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:04.992098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:04.992098 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:04.992098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.002100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.002100 LLDP, length 82 [|LLDP] 18:27:05.002100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.002100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.002100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0398 750e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.002100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.002100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.002100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.002100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.002100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.002100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.002100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.002101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.002101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.002101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.012104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.012104 LLDP, length 82 [|LLDP] 18:27:05.012104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.012104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.012104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03a0 162e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.012104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.012104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.012105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.012105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.012105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.012105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.012105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.012105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.012105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.012105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.022100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.022100 LLDP, length 82 [|LLDP] 18:27:05.022100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.022100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.022100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.022100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.022100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.022100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.022100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.022100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.022100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03a7 b74e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.022100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.022100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.022100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.022100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.032100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.032100 LLDP, length 82 [|LLDP] 18:27:05.032100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.032100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.032101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03af 586e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.032101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.032101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.032101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.032101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.032101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.032101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.032101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.032101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.032101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.032101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.042102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.042102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.042102 LLDP, length 82 [|LLDP] 18:27:05.042102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.042102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.042102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03b6 f98e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.042102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.042102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.042102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.042103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.042103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.042103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.042103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.042103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.042103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.052102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.052102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.052102 LLDP, length 82 [|LLDP] 18:27:05.052102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.052102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.052102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03be 9aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.052102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.052102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.052102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.052102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.052102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.052102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.052103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.052103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.052103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.062100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.062101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.062101 LLDP, length 82 [|LLDP] 18:27:05.062101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.062101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.062101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03c6 3bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.062101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.062101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.062101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.062101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.062101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.062101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.062101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.062101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.062101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.072112 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.072112 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.072112 LLDP, length 82 [|LLDP] 18:27:05.072112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.072112 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.072112 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.072112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.072112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.072112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.072112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.072112 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03cd dcee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.072112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.072112 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.072113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.072113 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.082104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.082104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.082104 LLDP, length 82 [|LLDP] 18:27:05.082104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.082104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.082104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03d5 7e0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.082104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.082104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.082105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.082105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.082105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.082105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.082105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.082105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.082105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.092119 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.092119 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.092119 LLDP, length 82 [|LLDP] 18:27:05.092119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.092119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.092119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03dd 1f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.092119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.092119 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.092119 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.092119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.092119 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.092119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.092119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.092119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.092120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.102120 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.102120 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.102121 LLDP, length 82 [|LLDP] 18:27:05.102121 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.102121 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.102121 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.102121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.102121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.102121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.102121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.102121 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03e4 c04e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.102121 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.102121 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.102121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.102121 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.112104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.112104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.112104 LLDP, length 82 [|LLDP] 18:27:05.112104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.112104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.112104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03ec 616e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.112104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.112104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.112104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.112105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.112105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.112105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.112105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.112105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.112105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.122109 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.122109 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.122109 LLDP, length 82 [|LLDP] 18:27:05.122109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.122109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.122109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03f4 028e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.122109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.122109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.122110 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.122110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.122110 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.122110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.122110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.122110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.122110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.132101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.132101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.132101 LLDP, length 82 [|LLDP] 18:27:05.132101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.132101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.132102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03fb a3ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.132102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.132102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.132102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.132102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.132102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.132102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.132102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.132102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.132102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.142103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.142103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.142104 LLDP, length 82 [|LLDP] 18:27:05.142104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.142104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.142104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0403 44ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.142104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.142104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.142104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.142104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.142104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.142104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.142104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.142104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.142104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.152099 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.152099 LLDP, length 82 [|LLDP] 18:27:05.152099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.152099 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.152100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.152100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.152100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.152100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.152100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.152100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.152100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 040a e5ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.152100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.152100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.152100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.152100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.162100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.162100 LLDP, length 82 [|LLDP] 18:27:05.162100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.162100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.162100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0412 870e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.162100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.162100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.162100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.162100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.162100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.162100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.162100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.162100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.162100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.162101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.172099 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.172100 LLDP, length 82 [|LLDP] 18:27:05.172100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.172100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.172100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 041a 282e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.172100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.172100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.172100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.172100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.172100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.172100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.172100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.172100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.172100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.172100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.182098 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.182098 LLDP, length 82 [|LLDP] 18:27:05.182098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.182098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.182098 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.182099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.182099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.182099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.182099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.182099 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.182099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0421 c94e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.182099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.182099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.182099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.182099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.192098 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.192098 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.192098 LLDP, length 82 [|LLDP] 18:27:05.192098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.192098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.192098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0429 6a6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.192098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.192098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.192098 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.192098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.192098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.192098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.192098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.192098 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.192099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.202097 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.202097 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.202097 LLDP, length 82 [|LLDP] 18:27:05.202097 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.202097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.202097 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0431 0b8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.202097 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.202097 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.202097 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.202097 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.202098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.202098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.202098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.202098 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.202098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.212101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.212101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.212101 LLDP, length 82 [|LLDP] 18:27:05.212101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.212101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.212101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0438 acae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.212101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.212102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.212102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.212102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.212102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.212102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.212102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.212102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.212102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.222100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.222100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.222100 LLDP, length 82 [|LLDP] 18:27:05.222100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.222100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.222100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0440 4dce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.222100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.222100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.222100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.222100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.222100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.222100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.222101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.222101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.222101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.232098 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.232098 LLDP, length 82 [|LLDP] 18:27:05.232098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.232098 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.232098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.232098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.232098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.232098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.232098 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.232098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.232098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0447 eeee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.232098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.232098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.232098 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.232099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.242107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.242107 LLDP, length 82 [|LLDP] 18:27:05.242107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.242107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.242108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 044f 900e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.242108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.242108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.242108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.242108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.242108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.242108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.242108 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.242108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.242108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.242108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.252102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.252102 LLDP, length 82 [|LLDP] 18:27:05.252102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.252102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.252103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0457 312e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.252103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.252103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.252103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.252103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.252103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.252103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.252103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.252103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.252103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.252103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.262103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.262103 LLDP, length 82 [|LLDP] 18:27:05.262103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.262103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.262103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.262103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.262104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.262104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.262104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.262104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.262104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 045e d24e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.262104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.262104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.262104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.262104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.272116 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.272116 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.272116 LLDP, length 82 [|LLDP] 18:27:05.272116 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.272116 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.272116 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0466 736e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.272116 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.272116 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.272116 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.272116 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.272116 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.272116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.272116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.272117 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.272117 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.282104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.282104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.282104 LLDP, length 82 [|LLDP] 18:27:05.282104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.282104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.282104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 046e 148e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.282104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.282104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.282105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.282105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.282105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.282105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.282105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.282105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.282105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.292101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.292101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.292102 LLDP, length 82 [|LLDP] 18:27:05.292102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.292102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.292102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0475 b5ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.292102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.292102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.292102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.292102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.292102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.292102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.292102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.292102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.292102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.302100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.302101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.302101 LLDP, length 82 [|LLDP] 18:27:05.302101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.302101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.302101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 047d 56ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.302101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.302101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.302101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.302101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.302101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.302101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.302101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.302101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.302101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.312100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.312100 LLDP, length 82 [|LLDP] 18:27:05.312100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.312100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.312100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.312100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.312100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.312100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.312100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.312101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.312101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0484 f7ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.312101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.312101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.312101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.312101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.322106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.322106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.322106 LLDP, length 82 [|LLDP] 18:27:05.322106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.322106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.322106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 048c 990e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.322106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.322106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.322106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.322106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.322107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.322107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.322107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.322107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.322107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.332103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.332103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.332103 LLDP, length 82 [|LLDP] 18:27:05.332103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.332103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.332104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0494 3a2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.332104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.332104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.332104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.332104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.332104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.332104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.332104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.332104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.332104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.342103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.342103 LLDP, length 82 [|LLDP] 18:27:05.342103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.342103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.342103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.342103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.342103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.342103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.342103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.342103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.342103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 049b db4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.342103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.342104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.342104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.342104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.352119 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.352119 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.352119 LLDP, length 82 [|LLDP] 18:27:05.352119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.352119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.352119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04a3 7c6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.352119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.352119 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.352119 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.352120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.352120 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.352120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.352120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.352120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.352120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.362105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.362105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.362105 LLDP, length 82 [|LLDP] 18:27:05.362105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.362105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.362105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04ab 1d8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.362105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.362105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.362105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.362105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.362106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.362106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.362106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.362106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.362106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.372101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.372101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.372101 LLDP, length 82 [|LLDP] 18:27:05.372101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.372101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.372101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04b2 beae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.372101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.372101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.372101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.372101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.372102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.372102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.372102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.372102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.372102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.382099 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.382100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.382100 LLDP, length 82 [|LLDP] 18:27:05.382100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.382100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.382100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04ba 5fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.382100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.382100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.382100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.382100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.382100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.382100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.382100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.382100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.382100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.392105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.392105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.392106 LLDP, length 82 [|LLDP] 18:27:05.392106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.392106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.392106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.392106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.392106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.392106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.392106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.392106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04c2 00ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.392106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.392106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.392106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.392106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.402107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.402107 LLDP, length 82 [|LLDP] 18:27:05.402108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.402108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.402108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04c9 a20e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.402108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.402108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.402108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.402108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.402108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.402108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.402108 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.402108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.402108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.402108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.412102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.412102 LLDP, length 82 [|LLDP] 18:27:05.412102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.412102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.412102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04d1 432e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.412102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.412102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.412102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.412102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.412103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.412103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.412103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.412103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.412103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.412103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.422098 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.422098 LLDP, length 82 [|LLDP] 18:27:05.422098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.422098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.422099 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.422099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.422099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.422099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.422099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.422099 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.422099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04d8 e44e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.422099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.422099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.422099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.422099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.432100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.432100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.432101 LLDP, length 82 [|LLDP] 18:27:05.432101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.432101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.432101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04e0 856e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.432101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.432101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.432101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.432101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.432101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.432101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.432101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.432101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.432101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.442102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.442102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.442102 LLDP, length 82 [|LLDP] 18:27:05.442102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.442102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.442102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04e8 268e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.442102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.442102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.442102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.442102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.442102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.442102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.442102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.442102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.442103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.452106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.452106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.452106 LLDP, length 82 [|LLDP] 18:27:05.452106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.452106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.452106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04ef c7ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.452106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.452106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.452106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.452107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.452107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.452107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.452107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.452107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.452107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.462105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.462105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.462105 LLDP, length 82 [|LLDP] 18:27:05.462105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.462106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.462106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04f7 68ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.462106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.462106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.462106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.462106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.462106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.462106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.462106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.462106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.462106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.472098 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.472098 LLDP, length 82 [|LLDP] 18:27:05.472098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.472098 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.472098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.472098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.472098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.472098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.472098 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.472098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.472099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04ff 09ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.472099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.472099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.472099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.472099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.482101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.482101 LLDP, length 82 [|LLDP] 18:27:05.482101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.482101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.482102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0506 ab0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.482102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.482102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.482102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.482102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.482102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.482102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.482102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.482102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.482102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.482102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.492102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.492102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.492102 LLDP, length 82 [|LLDP] 18:27:05.492102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.492102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.492102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 050e 4c2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.492103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.492103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.492103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.492103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.492103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.492103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.492103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.492103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.492103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.502101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.502101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.502101 LLDP, length 82 [|LLDP] 18:27:05.502101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.502101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.502101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.502101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.502101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.502102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.502102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.502102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0515 ed4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.502102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.502102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.502102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.502102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.512105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.512105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.512106 LLDP, length 82 [|LLDP] 18:27:05.512106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.512106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.512106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 051d 8e6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.512106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.512106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.512106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.512106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.512106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.512106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.512106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.512106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.512106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.522106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.522106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.522107 LLDP, length 82 [|LLDP] 18:27:05.522107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.522107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.522107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0525 2f8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.522107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.522107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.522107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.522107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.522107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.522107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.522107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.522107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.522107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.532101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.532102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.532102 LLDP, length 82 [|LLDP] 18:27:05.532102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.532102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.532102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 052c d0ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.532102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.532102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.532102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.532102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.532102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.532102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.532102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.532102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.532102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.542101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.542101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.542101 LLDP, length 82 [|LLDP] 18:27:05.542101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.542101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.542101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0534 71ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.542101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.542101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.542101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.542102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.542102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.542102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.542102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.542102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.542102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.552099 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.552099 LLDP, length 82 [|LLDP] 18:27:05.552099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.552099 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.552099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.552100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.552100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.552100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.552100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.552100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.552100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 053c 12ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.552100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.552100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.552100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.552100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.562097 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.562097 LLDP, length 82 [|LLDP] 18:27:05.562097 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.562097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.562097 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0543 b40e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.562097 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.562098 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.562098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.562098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.562098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.562098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.562098 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.562098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.562098 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.562098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.572102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.572102 LLDP, length 82 [|LLDP] 18:27:05.572102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.572102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.572102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 054b 552e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.572102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.572102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.572102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.572102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.572102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.572102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.572103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.572103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.572103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.572103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.582107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.582107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.582107 LLDP, length 82 [|LLDP] 18:27:05.582107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.582107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.582107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.582107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.582107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.582107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.582107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.582107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0552 f64e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.582108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.582108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.582108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.582108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.592100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.592100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.592100 LLDP, length 82 [|LLDP] 18:27:05.592100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.592100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.592100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 055a 976e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.592100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.592100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.592100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.592100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.592100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.592100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.592100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.592101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.592101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.602100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.602100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.602100 LLDP, length 82 [|LLDP] 18:27:05.602100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.602100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.602100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0562 388e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.602100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.602101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.602101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.602101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.602101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.602101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.602101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.602101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.602101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.612100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.612100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.612100 LLDP, length 82 [|LLDP] 18:27:05.612100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.612100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.612100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0569 d9ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.612100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.612100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.612100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.612101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.612101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.612101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.612101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.612101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.612101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.622098 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.622098 LLDP, length 82 [|LLDP] 18:27:05.622098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.622098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.622098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0571 7ace 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.622098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.622098 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.622099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.622099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.622099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.622099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.622099 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.622099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.622099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.622099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.632099 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.632099 LLDP, length 82 [|LLDP] 18:27:05.632099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.632099 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.632099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.632100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.632100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.632100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.632100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.632100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.632100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0579 1bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.632100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.632100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.632100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.632100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.642099 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.642099 LLDP, length 82 [|LLDP] 18:27:05.642099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.642099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.642099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0580 bd0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.642099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.642099 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.642100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.642100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.642100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.642100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.642100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.642100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.642100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.642100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.652097 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.652097 LLDP, length 82 [|LLDP] 18:27:05.652097 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.652097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.652097 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0588 5e2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.652097 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.652098 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.652098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.652098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.652098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.652098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.652098 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.652098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.652098 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.652098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.662105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.662105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.662105 LLDP, length 82 [|LLDP] 18:27:05.662105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.662105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.662105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.662105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.662105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.662106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.662106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.662106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 058f ff4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.662106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.662106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.662106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.662106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.672107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.672107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.672107 LLDP, length 82 [|LLDP] 18:27:05.672107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.672108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.672108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0597 a06e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.672108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.672108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.672108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.672108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.672108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.672108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.672108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.672108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.672108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.682103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.682103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.682103 LLDP, length 82 [|LLDP] 18:27:05.682103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.682103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.682104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 059f 418e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.682104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.682104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.682104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.682104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.682104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.682104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.682104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.682104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.682104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.692101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.692101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.692101 LLDP, length 82 [|LLDP] 18:27:05.692101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.692101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.692101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05a6 e2ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.692101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.692102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.692102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.692102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.692102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.692102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.692102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.692102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.692102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.702100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.702100 LLDP, length 82 [|LLDP] 18:27:05.702100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.702100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.702100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05ae 83ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.702100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.702100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.702100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.702100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.702100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.702100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.702101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.702101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.702101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.702101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.712098 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.712098 LLDP, length 82 [|LLDP] 18:27:05.712099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.712099 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.712099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.712099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.712099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.712099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.712099 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.712099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.712099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05b6 24ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.712099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.712099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.712099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.712099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.722099 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.722099 LLDP, length 82 [|LLDP] 18:27:05.722099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.722099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.722099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05bd c60e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.722099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.722099 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.722099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.722099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.722099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.722099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.722099 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.722100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.722100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.722100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.732101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.732101 LLDP, length 82 [|LLDP] 18:27:05.732101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.732101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.732101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05c5 672e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.732101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.732101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.732101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.732102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.732102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.732102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.732102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.732102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.732102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.732102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.742097 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.742097 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.742097 LLDP, length 82 [|LLDP] 18:27:05.742097 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.742097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.742098 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.742098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.742098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.742098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.742098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.742098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05cd 084e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.742098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.742098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.742098 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.742098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.752118 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.752118 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.752119 LLDP, length 82 [|LLDP] 18:27:05.752119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.752119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.752119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05d4 a96e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.752119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.752119 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.752119 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.752119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.752119 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.752119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.752119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.752119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.752119 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.762099 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.762099 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.762099 LLDP, length 82 [|LLDP] 18:27:05.762099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.762100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.762100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05dc 4a8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.762100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.762100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.762100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.762100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.762100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.762100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.762100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.762100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.762100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.772100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.772100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.772100 LLDP, length 82 [|LLDP] 18:27:05.772100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.772100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.772100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05e3 ebae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.772100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.772100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.772100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.772101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.772101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.772101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.772101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.772101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.772101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.782100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.782100 LLDP, length 82 [|LLDP] 18:27:05.782100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.782100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.782101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05eb 8cce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.782101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.782101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.782101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.782101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.782101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.782101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.782101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.782101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.782101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.782101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.792106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.792106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.792106 LLDP, length 82 [|LLDP] 18:27:05.792106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.792106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.792106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.792106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.792106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.792106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.792106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.792106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05f3 2dee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.792107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.792107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.792107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.792107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.802107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.802107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.802107 LLDP, length 82 [|LLDP] 18:27:05.802107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.802107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.802107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05fa cf0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.802107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.802107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.802107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.802107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.802107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.802107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.802107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.802107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.802108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.812103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.812103 LLDP, length 82 [|LLDP] 18:27:05.812103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.812103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.812103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0602 702e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.812103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.812103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.812103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.812103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.812103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.812103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.812103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.812104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.812104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.812104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.822104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.822104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.822104 LLDP, length 82 [|LLDP] 18:27:05.822104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.822104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.822104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.822104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.822105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.822105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.822105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.822105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 060a 114e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.822105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.822105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.822105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.822105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.832102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.832102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.832102 LLDP, length 82 [|LLDP] 18:27:05.832102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.832102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.832102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0611 b26e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.832102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.832102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.832102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.832102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.832102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.832102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.832102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.832102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.832103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.842100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.842100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.842100 LLDP, length 82 [|LLDP] 18:27:05.842100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.842100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.842101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0619 538e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.842101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.842101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.842101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.842101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.842101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.842101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.842101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.842101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.842101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.852104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.852104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.852104 LLDP, length 82 [|LLDP] 18:27:05.852104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.852104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.852104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0620 f4ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.852104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.852104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.852104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.852104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.852104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.852104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.852105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.852105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.852105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.862106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.862106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.862106 LLDP, length 82 [|LLDP] 18:27:05.862106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.862106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.862106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0628 95ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.862106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.862106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.862106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.862106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.862106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.862106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.862106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.862107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.862107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.872108 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.872108 LLDP, length 82 [|LLDP] 18:27:05.872108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.872108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.872108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.872108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.872108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.872108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.872108 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.872108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.872109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0630 36ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.872109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.872109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.872109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.872109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.882103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.882103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.882103 LLDP, length 82 [|LLDP] 18:27:05.882103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.882103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.882103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0637 d80e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.882103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.882103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.882103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.882104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.882104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.882104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.882104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.882104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.882104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.892120 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.892120 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.892120 LLDP, length 82 [|LLDP] 18:27:05.892120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.892120 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.892120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 063f 792e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.892120 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.892120 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.892120 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.892120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.892120 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.892120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.892120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.892121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.892121 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.902138 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.902138 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.902138 LLDP, length 82 [|LLDP] 18:27:05.902138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.902138 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.902138 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.902138 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.902138 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.902138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.902138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.902139 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0647 1a4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.902139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.902139 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.902139 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.902139 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.912123 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.912123 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.912123 LLDP, length 82 [|LLDP] 18:27:05.912123 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.912123 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.912123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 064e bb6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.912123 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.912123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.912123 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.912123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.912123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.912123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.912123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.912124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.912124 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.922123 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.922123 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.922123 LLDP, length 82 [|LLDP] 18:27:05.922124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.922124 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.922124 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0656 5c8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.922124 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.922124 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.922124 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.922124 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.922124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.922124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.922124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.922124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.922124 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.932120 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.932120 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.932120 LLDP, length 82 [|LLDP] 18:27:05.932120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.932120 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.932120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 065d fdae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.932120 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.932120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.932121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.932121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.932121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.932121 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.932121 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.932121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.932121 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.942103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.942103 LLDP, length 82 [|LLDP] 18:27:05.942103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.942103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.942103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0665 9ece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.942104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.942104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.942104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.942104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.942104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.942104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.942104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.942104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.942104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.942104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.952109 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.952109 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.952109 LLDP, length 82 [|LLDP] 18:27:05.952109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.952109 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.952109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.952109 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.952109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.952109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.952110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.952110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 066d 3fee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.952110 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.952110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.952110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.952110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.962101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.962102 LLDP, length 82 [|LLDP] 18:27:05.962102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.962102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.962102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0674 e10e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.962102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.962102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.962102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.962102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.962102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.962102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.962102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.962102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.962102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.962102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.972102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.972102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.972102 LLDP, length 82 [|LLDP] 18:27:05.972102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.972102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.972102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 067c 822e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.972102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.972102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.972103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.972103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.972103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.972103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.972103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.972103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.972103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.982103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.982103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.982103 LLDP, length 82 [|LLDP] 18:27:05.982103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.982103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.982103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.982103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.982103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.982103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.982103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.982103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0684 234e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.982104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.982104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.982104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.982104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.992106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.992106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.992106 LLDP, length 82 [|LLDP] 18:27:05.992106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.992106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.992106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 068b c46e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.992106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.992107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.992107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.992107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.992107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.992107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.992107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.992107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.992107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.002101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.002101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.002101 LLDP, length 82 [|LLDP] 18:27:06.002101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.002101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.002101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0693 658e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.002102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.002102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.002102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.002102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.002102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.002102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.002102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.002102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.002102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.012105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.012105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.012105 LLDP, length 82 [|LLDP] 18:27:06.012105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.012105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.012105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 069b 06ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.012105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.012105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.012105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.012105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.012105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.012105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.012105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.012105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.012106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.022103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.022103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.022103 LLDP, length 82 [|LLDP] 18:27:06.022103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.022103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.022103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06a2 a7ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.022103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.022103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.022103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.022103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.022103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.022104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.022104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.022104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.022104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.032101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.032101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.032101 LLDP, length 82 [|LLDP] 18:27:06.032101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.032102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.032102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.032102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.032102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.032102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.032102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.032102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06aa 48ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.032102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.032102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.032102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.032102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.042100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.042100 LLDP, length 82 [|LLDP] 18:27:06.042100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.042100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.042100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06b1 ea0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.042100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.042100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.042100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.042100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.042100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.042100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.042100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.042100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.042100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.042101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.052099 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.052099 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.052099 LLDP, length 82 [|LLDP] 18:27:06.052099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.052099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.052099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06b9 8b2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.052099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.052099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.052100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.052100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.052100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.052100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.052100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.052100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.052100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.062106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.062106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.062107 LLDP, length 82 [|LLDP] 18:27:06.062107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.062107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.062107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.062107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.062107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.062107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.062107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.062107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06c1 2c4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.062107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.062107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.062107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.062107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.072105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.072105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.072105 LLDP, length 82 [|LLDP] 18:27:06.072105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.072105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.072105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06c8 cd6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.072105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.072106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.072106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.072106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.072106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.072106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.072106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.072106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.072106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.082105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.082105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.082105 LLDP, length 82 [|LLDP] 18:27:06.082106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.082106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.082106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06d0 6e8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.082106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.082106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.082106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.082106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.082106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.082106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.082106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.082106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.082106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.092108 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.092108 LLDP, length 82 [|LLDP] 18:27:06.092108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.092108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.092108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06d8 0fae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.092108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.092108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.092108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.092109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.092109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.092109 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.092109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.092109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.092109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.092109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.102104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.102104 LLDP, length 82 [|LLDP] 18:27:06.102104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.102105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.102105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06df b0ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.102105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.102105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.102105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.102105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.102105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.102105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.102105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.102105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.102105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.102105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.112103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.112103 LLDP, length 82 [|LLDP] 18:27:06.112103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.112104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.112104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.112104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.112104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.112104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.112104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.112104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.112104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06e7 51ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.112104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.112104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.112104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.112104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.122099 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.122100 LLDP, length 82 [|LLDP] 18:27:06.122100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.122100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.122100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06ee f30e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.122100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.122100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.122100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.122100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.122100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.122100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.122100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.122100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.122100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.122100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.132107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.132107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.132107 LLDP, length 82 [|LLDP] 18:27:06.132107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.132108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.132108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06f6 942e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.132108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.132108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.132108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.132108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.132108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.132108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.132108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.132108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.132108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.142107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.142107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.142107 LLDP, length 82 [|LLDP] 18:27:06.142107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.142107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.142107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.142108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.142108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.142108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.142108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.142108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06fe 354e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.142108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.142108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.142108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.142108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.152102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.152102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.152102 LLDP, length 82 [|LLDP] 18:27:06.152102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.152102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.152102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0705 d66e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.152102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.152102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.152102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.152102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.152102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.152103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.152103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.152103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.152103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.162100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.162101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.162101 LLDP, length 82 [|LLDP] 18:27:06.162101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.162101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.162101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 070d 778e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.162101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.162101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.162101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.162101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.162101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.162101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.162101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.162101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.162101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.172106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.172106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.172106 LLDP, length 82 [|LLDP] 18:27:06.172107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.172107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.172107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0715 18ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.172107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.172107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.172107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.172107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.172107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.172107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.172107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.172107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.172107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.182105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.182105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.182105 LLDP, length 82 [|LLDP] 18:27:06.182105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.182105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.182105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 071c b9ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.182105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.182105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.182105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.182105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.182105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.182105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.182106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.182106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.182106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.192102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.192102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.192102 LLDP, length 82 [|LLDP] 18:27:06.192102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.192102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.192102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.192102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.192102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.192102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.192102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.192102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0724 5aee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.192102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.192103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.192103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.192103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.202103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.202103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.202103 LLDP, length 82 [|LLDP] 18:27:06.202103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.202103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.202103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 072b fc0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.202103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.202103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.202103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.202104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.202104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.202104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.202104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.202104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.202104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.212102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.212102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.212102 LLDP, length 82 [|LLDP] 18:27:06.212102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.212103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.212103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0733 9d2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.212103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.212103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.212103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.212103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.212103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.212103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.212103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.212103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.212103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.222117 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.222117 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.222117 LLDP, length 82 [|LLDP] 18:27:06.222117 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.222117 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.222117 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.222117 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.222117 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.222117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.222117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.222117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 073b 3e4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.222117 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.222117 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.222117 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.222118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.232111 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.232111 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.232111 LLDP, length 82 [|LLDP] 18:27:06.232111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.232111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.232111 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0742 df6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.232112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.232112 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.232112 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.232112 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.232112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.232112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.232112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.232112 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.232112 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.242106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.242106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.242106 LLDP, length 82 [|LLDP] 18:27:06.242106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.242106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.242106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 074a 808e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.242106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.242106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.242106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.242106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.242106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.242106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.242107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.242107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.242107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.252102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.252102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.252102 LLDP, length 82 [|LLDP] 18:27:06.252102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.252102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.252102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0752 21ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.252102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.252102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.252102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.252103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.252103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.252103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.252103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.252103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.252103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.262102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.262102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.262102 LLDP, length 82 [|LLDP] 18:27:06.262102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.262102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.262102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0759 c2ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.262102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.262102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.262102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.262102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.262103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.262103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.262103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.262103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.262103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.272106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.272106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.272106 LLDP, length 82 [|LLDP] 18:27:06.272106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.272106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.272106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.272106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.272107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.272107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.272107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.272107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0761 63ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.272107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.272107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.272107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.272107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.282104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.282105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.282105 LLDP, length 82 [|LLDP] 18:27:06.282105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.282105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.282105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0769 050e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.282105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.282105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.282105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.282105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.282105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.282105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.282105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.282105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.282105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.292105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.292105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.292105 LLDP, length 82 [|LLDP] 18:27:06.292105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.292105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.292105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0770 a62e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.292105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.292105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.292105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.292105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.292105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.292105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.292105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.292105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.292105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.302102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.302102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.302102 LLDP, length 82 [|LLDP] 18:27:06.302102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.302102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.302102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.302102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.302102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.302103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.302103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.302103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0778 474e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.302103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.302103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.302103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.302103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.312101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.312101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.312101 LLDP, length 82 [|LLDP] 18:27:06.312101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.312102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.312102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 077f e86e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.312102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.312102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.312102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.312102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.312102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.312102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.312102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.312102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.312102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.322100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.322100 LLDP, length 82 [|LLDP] 18:27:06.322100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.322100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.322100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0787 898e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.322100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.322100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.322100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.322100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.322100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.322101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.322101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.322101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.322101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.322101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.332101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.332101 LLDP, length 82 [|LLDP] 18:27:06.332101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.332101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.332102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 078f 2aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.332102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.332102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.332102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.332102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.332102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.332102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.332102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.332102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.332102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.332102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.342101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.342101 LLDP, length 82 [|LLDP] 18:27:06.342101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.342101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.342101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0796 cbce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.342101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.342101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.342101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.342101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.342102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.342102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.342102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.342102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.342102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.342102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.352103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.352103 LLDP, length 82 [|LLDP] 18:27:06.352103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.352103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.352103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.352103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.352103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.352103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.352103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.352103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.352103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 079e 6cee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.352103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.352104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.352104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.352104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.362104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.362104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.362104 LLDP, length 82 [|LLDP] 18:27:06.362104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.362104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.362104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07a6 0e0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.362105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.362105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.362105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.362105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.362105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.362105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.362105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.362105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.362105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.372102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.372102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.372102 LLDP, length 82 [|LLDP] 18:27:06.372102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.372102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.372102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07ad af2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.372102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.372102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.372103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.372103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.372103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.372103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.372103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.372103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.372103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.382100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.382100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.382101 LLDP, length 82 [|LLDP] 18:27:06.382101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.382101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.382101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.382101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.382101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.382101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.382101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.382101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07b5 504e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.382101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.382101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.382101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.382101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.392101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.392101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.392101 LLDP, length 82 [|LLDP] 18:27:06.392102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.392102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.392102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07bc f16e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.392102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.392102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.392102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.392102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.392102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.392102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.392102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.392102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.392102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.402100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.402100 LLDP, length 82 [|LLDP] 18:27:06.402100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.402100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.402100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07c4 928e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.402101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.402101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.402101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.402101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.402101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.402101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.402101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.402101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.402101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.402101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.412102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.412102 LLDP, length 82 [|LLDP] 18:27:06.412102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.412102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.412102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07cc 33ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.412102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.412102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.412102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.412102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.412102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.412102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.412102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.412102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.412102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.412103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.422104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.422104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.422104 LLDP, length 82 [|LLDP] 18:27:06.422104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.422104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.422104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07d3 d4ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.422104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.422104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.422105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.422105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.422105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.422105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.422105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.422105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.422105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.432108 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.432108 LLDP, length 82 [|LLDP] 18:27:06.432108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.432108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.432108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.432108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.432108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.432108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.432108 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.432108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.432108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07db 75ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.432108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.432108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.432108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.432109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.442102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.442103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.442103 LLDP, length 82 [|LLDP] 18:27:06.442103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.442103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.442103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07e3 170e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.442103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.442103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.442103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.442103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.442103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.442103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.442103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.442103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.442103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.452106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.452106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.452106 LLDP, length 82 [|LLDP] 18:27:06.452107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.452107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.452107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07ea b82e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.452107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.452107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.452107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.452107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.452107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.452107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.452107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.452107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.452107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.462106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.462106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.462106 LLDP, length 82 [|LLDP] 18:27:06.462106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.462106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.462106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.462106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.462106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.462106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.462106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.462106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07f2 594e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.462106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.462106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.462106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.462107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.472101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.472101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.472101 LLDP, length 82 [|LLDP] 18:27:06.472101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.472101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.472102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07f9 fa6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.472102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.472102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.472102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.472102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.472102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.472102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.472102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.472102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.472102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.482103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.482103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.482103 LLDP, length 82 [|LLDP] 18:27:06.482103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.482103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.482103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0801 9b8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.482103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.482103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.482103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.482103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.482103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.482104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.482104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.482104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.482104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.492101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.492101 LLDP, length 82 [|LLDP] 18:27:06.492101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.492101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.492101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0809 3cae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.492101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.492101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.492101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.492102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.492102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.492102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.492102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.492102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.492102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.492102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.502102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.502102 LLDP, length 82 [|LLDP] 18:27:06.502102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.502102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.502103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0810 ddce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.502103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.502103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.502103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.502103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.502103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.502103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.502103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.502103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.502103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.502103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.512105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.512105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.512105 LLDP, length 82 [|LLDP] 18:27:06.512105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.512105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.512105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.512105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.512105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.512106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.512106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.512106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0818 7eee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.512106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.512106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.512106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.512106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.522103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.522104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.522104 LLDP, length 82 [|LLDP] 18:27:06.522104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.522104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.522104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0820 200e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.522104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.522104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.522104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.522104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.522104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.522104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.522104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.522104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.522104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.532101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.532101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.532101 LLDP, length 82 [|LLDP] 18:27:06.532101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.532101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.532101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0827 c12e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.532101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.532102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.532102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.532102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.532102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.532102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.532102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.532102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.532102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.542108 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.542108 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.542108 LLDP, length 82 [|LLDP] 18:27:06.542108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.542108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.542108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.542108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.542108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.542108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.542108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.542108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 082f 624e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.542108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.542108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.542109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.542109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.552102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.552102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.552102 LLDP, length 82 [|LLDP] 18:27:06.552102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.552102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.552102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0837 036e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.552102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.552102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.552102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.552102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.552102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.552102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.552103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.552103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.552103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.562099 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.562099 LLDP, length 82 [|LLDP] 18:27:06.562099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.562099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.562099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 083e a48e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.562099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.562099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.562099 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.562100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.562100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.562100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.562100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.562100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.562100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.562100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.572105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.572105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.572105 LLDP, length 82 [|LLDP] 18:27:06.572105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.572105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.572105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0846 45ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.572105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.572105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.572105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.572106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.572106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.572106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.572106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.572106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.572106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.582101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.582101 LLDP, length 82 [|LLDP] 18:27:06.582101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.582101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.582101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 084d e6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.582101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.582101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.582102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.582102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.582102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.582102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.582102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.582102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.582102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.582102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.592101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.592101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.592101 LLDP, length 82 [|LLDP] 18:27:06.592101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.592101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.592101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.592101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.592101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.592101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.592102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.592102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0855 87ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.592102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.592102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.592102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.592102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.602106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.602106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.602106 LLDP, length 82 [|LLDP] 18:27:06.602106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.602106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.602106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 085d 290e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.602106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.602106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.602106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.602106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.602106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.602106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.602106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.602106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.602107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.612101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.612101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.612101 LLDP, length 82 [|LLDP] 18:27:06.612101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.612101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.612101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0864 ca2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.612101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.612101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.612102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.612102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.612102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.612102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.612102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.612102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.612102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.622101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.622101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.622102 LLDP, length 82 [|LLDP] 18:27:06.622102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.622102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.622102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.622102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.622102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.622102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.622102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.622102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 086c 6b4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.622102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.622102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.622102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.622102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.632112 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.632112 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.632113 LLDP, length 82 [|LLDP] 18:27:06.632113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.632113 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.632113 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0874 0c6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.632113 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.632113 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.632113 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.632113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.632113 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.632113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.632113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.632113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.632113 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.642101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.642101 LLDP, length 82 [|LLDP] 18:27:06.642101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.642101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.642101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 087b ad8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.642101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.642101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.642101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.642101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.642101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.642101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.642101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.642102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.642102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.642102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.652100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.652100 LLDP, length 82 [|LLDP] 18:27:06.652101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.652101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.652101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0883 4eae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.652101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.652101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.652101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.652101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.652101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.652101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.652101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.652101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.652101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.652101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.662101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.662101 LLDP, length 82 [|LLDP] 18:27:06.662101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.662101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.662101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 088a efce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.662101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.662101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.662101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.662101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.662101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.662102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.662102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.662102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.662102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.662102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.672102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.672102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.672102 LLDP, length 82 [|LLDP] 18:27:06.672102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.672102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.672102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.672102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.672102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.672102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.672102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.672102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0892 90ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.672102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.672103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.672103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.672103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.682102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.682102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.682102 LLDP, length 82 [|LLDP] 18:27:06.682102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.682102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.682102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 089a 320e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.682102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.682102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.682102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.682102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.682102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.682102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.682102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.682102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.682103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.692104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.692104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.692104 LLDP, length 82 [|LLDP] 18:27:06.692105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.692105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.692105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08a1 d32e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.692105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.692105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.692105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.692105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.692105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.692105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.692105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.692105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.692105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.702102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.702102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.702102 LLDP, length 82 [|LLDP] 18:27:06.702102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.702102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.702102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.702102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.702102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.702103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.702103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.702103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08a9 744e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.702103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.702103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.702103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.702103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.712101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.712101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.712101 LLDP, length 82 [|LLDP] 18:27:06.712101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.712101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.712101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08b1 156e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.712102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.712102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.712102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.712102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.722103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.722103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.722103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.722103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.722103 LLDP, length 82 [|LLDP] 18:27:06.722104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.722104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.722104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.722104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.722104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.722104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.722104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08b8 b68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.722104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.722104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.722104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.732102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.732102 LLDP, length 82 [|LLDP] 18:27:06.732102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.732102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.732102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08c0 57ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.732102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.732102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.732102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.732102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.732102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.732102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.732103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.732103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.732103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.732103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.742106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.742106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.742106 LLDP, length 82 [|LLDP] 18:27:06.742106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.742106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.742106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08c7 f8ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.742106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.742106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.742106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.742106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.742106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.742106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.742106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.742106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.742106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.752101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.752101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.752101 LLDP, length 82 [|LLDP] 18:27:06.752101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.752101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.752101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.752101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.752101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.752102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08cf 99ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.752102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.752102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.752102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.752102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.752102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.752102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.762100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.762100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.762100 LLDP, length 82 [|LLDP] 18:27:06.762100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.762100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.762100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08d7 3b0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.762100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.762100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.762101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.762101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.762101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.762101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.762101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.762101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.762101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.772101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.772101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.772101 LLDP, length 82 [|LLDP] 18:27:06.772101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.772101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.772101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08de dc2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.772101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.772101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.772101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.772101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.772101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.772101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.772101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.772101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.772102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.782110 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.782110 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.782110 LLDP, length 82 [|LLDP] 18:27:06.782110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.782110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.782110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08e6 7d4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.782110 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.782110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.782110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.782111 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.782111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.782111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.782111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.782111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.782111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.792102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.792102 LLDP, length 82 [|LLDP] 18:27:06.792102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.792102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.792102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08ee 1e6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.792102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.792102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.792102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.792102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.792102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.792102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.792102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.792102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.792103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.792103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.802102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.802102 LLDP, length 82 [|LLDP] 18:27:06.802102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.802102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.802102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.802102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.802102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.802102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.802102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08f5 bf8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.802102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.802102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.802102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.802103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.802103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.802103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.812102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.812102 LLDP, length 82 [|LLDP] 18:27:06.812103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.812103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.812103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08fd 60ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.812103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.812103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.812103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.812103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.812103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.812103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.812103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.812103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.812103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.812103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.822101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.822101 LLDP, length 82 [|LLDP] 18:27:06.822101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.822101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.822102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0905 01ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.822102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.822102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.822102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.822102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.822102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.822102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.822102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.822102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.822102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.822102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.832102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.832102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.832102 LLDP, length 82 [|LLDP] 18:27:06.832102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.832102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.832102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.832102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.832102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.832102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 090c a2ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.832102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.832102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.832102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.832102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.832103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.832103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.842103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.842103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.842103 LLDP, length 82 [|LLDP] 18:27:06.842103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.842104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.842104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0914 440e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.842104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.842104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.842104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.842104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.842104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.842104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.842104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.842104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.842104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.852102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.852102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.852102 LLDP, length 82 [|LLDP] 18:27:06.852102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.852102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.852102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 091b e52e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.852102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.852102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.852102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.852102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.852102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.852102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.852103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.852103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.852103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.862101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.862101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.862102 LLDP, length 82 [|LLDP] 18:27:06.862102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.862102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.862102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0923 864e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.862102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.862102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.862102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.862102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.862102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.862102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.862102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.862102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.862102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.872101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.872101 LLDP, length 82 [|LLDP] 18:27:06.872101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.872101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.872101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 092b 276e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.872101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.872101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.872101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.872101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.872101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.872101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.872101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.872101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.872101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.872102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.882105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.882105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.882105 LLDP, length 82 [|LLDP] 18:27:06.882105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.882105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.882105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.882105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.882105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.882105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0932 c88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.882105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.882105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.882105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.882105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.882106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.882106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.892104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.892104 LLDP, length 82 [|LLDP] 18:27:06.892104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.892104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.892104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 093a 69ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.892104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.892104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.892104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.892104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.892104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.892104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.892104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.892104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.892105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.892105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.902105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.902105 LLDP, length 82 [|LLDP] 18:27:06.902105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.902105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.902105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0942 0ace 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.902105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.902105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.902106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.902106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.902106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.902106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.902106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.902106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.902106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.902106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.912106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.912106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.912106 LLDP, length 82 [|LLDP] 18:27:06.912106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.912106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.912106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.912106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.912106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.912106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0949 abee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.912106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.912106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.912106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.912106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.912106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.912106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.922102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.922102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.922102 LLDP, length 82 [|LLDP] 18:27:06.922102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.922102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.922102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0951 4d0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.922103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.922103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.922103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.922103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.922103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.922103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.922103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.922103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.922103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.932104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.932104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.932104 LLDP, length 82 [|LLDP] 18:27:06.932105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.932105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.932105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0958 ee2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.932105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.932105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.932105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.932105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.932105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.932105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.932105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.932105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.932105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.942105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.942105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.942105 LLDP, length 82 [|LLDP] 18:27:06.942105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.942105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.942106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0960 8f4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.942106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.942106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.942106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.942106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.942106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.942106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.942106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.942106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.942106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.952103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.952103 LLDP, length 82 [|LLDP] 18:27:06.952103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.952103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.952103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0968 306e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.952103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.952103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.952103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.952103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.952103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.952103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.952103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.952103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.952104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.952104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.962105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.962105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.962105 LLDP, length 82 [|LLDP] 18:27:06.962105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.962105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.962105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.962106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.962106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.962106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 096f d18e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.962106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.962106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.962106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.962106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.962106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.962106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.972101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.972101 LLDP, length 82 [|LLDP] 18:27:06.972101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.972102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.972102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0977 72ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.972102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.972102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.972102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.972102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.972102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.972102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.972102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.972102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.972102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.972102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.982103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.982103 LLDP, length 82 [|LLDP] 18:27:06.982103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.982103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.982103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 097f 13ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.982103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.982103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.982103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.982103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.982103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.982103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.982103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.982103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.982104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.982104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.992103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.992103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.992103 LLDP, length 82 [|LLDP] 18:27:06.992103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.992103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.992103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.992104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.992104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.992104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0986 b4ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.992104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.992104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.992104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.992104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.992104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.992104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.002102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.002103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.002103 LLDP, length 82 [|LLDP] 18:27:07.002103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.002103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.002103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 098e 560e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.002103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.002103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.002103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.002103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.002103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.002103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.002103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.002103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.002103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.012100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.012100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.012100 LLDP, length 82 [|LLDP] 18:27:07.012100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.012100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.012101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0995 f72e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.012101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.012101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.012101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.012101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.012101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.012101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.012101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.012101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.012101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.022104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.022104 LLDP, length 82 [|LLDP] 18:27:07.022104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.022104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.022104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 099d 984e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.022104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.022104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.022105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.022105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.022105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.022105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.022105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.022105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.022105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.022105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.032102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.032102 LLDP, length 82 [|LLDP] 18:27:07.032102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.032102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.032102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09a5 396e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.032102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.032102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.032102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.032102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.032102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.032102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.032102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.032102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.032102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.032102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.042102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.042103 LLDP, length 82 [|LLDP] 18:27:07.042103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.042103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.042103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.042103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.042103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.042103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.042103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09ac da8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.042103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.042103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.042103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.042103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.042103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.042103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.052103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.052103 LLDP, length 82 [|LLDP] 18:27:07.052104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.052104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.052104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09b4 7bae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.052104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.052104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.052104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.052104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.052104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.052104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.052104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.052104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.052104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.052104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.062106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.062106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.062106 LLDP, length 82 [|LLDP] 18:27:07.062106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.062106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.062106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09bc 1cce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.062106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.062106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.062106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.062106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.062106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.062106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.062106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.062106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.062107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.072101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.072102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.072102 LLDP, length 82 [|LLDP] 18:27:07.072102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.072102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.072102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.072102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.072102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.072102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09c3 bdee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.072102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.072102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.072102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.072102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.072102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.072102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.082120 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.082120 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.082120 LLDP, length 82 [|LLDP] 18:27:07.082120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.082120 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.082120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09cb 5f0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.082120 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.082120 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.082120 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.082120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.082120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.082120 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.082120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.082120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.082121 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.092106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.092106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.092106 LLDP, length 82 [|LLDP] 18:27:07.092106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.092106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.092106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09d3 002e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.092106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.092106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.092106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.092106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.092106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.092106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.092106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.092106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.092107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.102108 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.102108 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.102108 LLDP, length 82 [|LLDP] 18:27:07.102109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.102109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.102109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09da a14e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.102109 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.102109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.102109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.102109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.102109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.102109 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.102109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.102109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.102109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.112105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.112105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.112105 LLDP, length 82 [|LLDP] 18:27:07.112105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.112105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.112106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09e2 426e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.112106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.112106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.112106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.112106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.112106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.112106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.112106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.112106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.112106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.122103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.122103 LLDP, length 82 [|LLDP] 18:27:07.122103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.122103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.122103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.122103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.122103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.122103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.122103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09e9 e38e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.122103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.122104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.122104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.122104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.122104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.122104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.132104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.132104 LLDP, length 82 [|LLDP] 18:27:07.132104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.132104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.132104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09f1 84ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.132104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.132104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.132104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.132104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.132104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.132104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.132104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.132104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.132104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.132104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.142103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.142103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.142103 LLDP, length 82 [|LLDP] 18:27:07.142103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.142103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.142103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09f9 25ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.142103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.142103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.142103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.142103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.142103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.142103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.142103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.142104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.142104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.152102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.152103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.152103 LLDP, length 82 [|LLDP] 18:27:07.152103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.152103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.152103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.152103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.152103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.152103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a00 c6ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.152103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.152103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.152103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.152103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.152103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.152103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.162105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.162105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.162105 LLDP, length 82 [|LLDP] 18:27:07.162105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.162105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.162105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a08 680e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.162105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.162105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.162105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.162105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.162105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.162105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.162106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.162106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.162106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.172104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.172104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.172104 LLDP, length 82 [|LLDP] 18:27:07.172105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.172105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.172105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a10 092e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.172105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.172105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.172105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.172105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.172105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.172105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.172105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.172105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.172105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.182103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.182103 LLDP, length 82 [|LLDP] 18:27:07.182103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.182103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.182103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a17 aa4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.182103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.182103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.182103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.182103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.182103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.182104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.182104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.182104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.182104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.182104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.192104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.192104 LLDP, length 82 [|LLDP] 18:27:07.192104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.192104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.192104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a1f 4b6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.192104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.192104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.192104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.192104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.192104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.192104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.192104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.192105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.192105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.192105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.202105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.202106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.202106 LLDP, length 82 [|LLDP] 18:27:07.202106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.202106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.202106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.202106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.202106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.202106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a26 ec8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.202106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.202106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.202106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.202106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.202106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.202106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.212104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.212104 LLDP, length 82 [|LLDP] 18:27:07.212104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.212104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.212104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a2e 8dae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.212104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.212104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.212104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.212104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.212104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.212105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.212105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.212105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.212105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.212105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.222103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.222103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.222103 LLDP, length 82 [|LLDP] 18:27:07.222103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.222103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.222103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a36 2ece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.222103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.222103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.222103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.222104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.222104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.222104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.222104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.222104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.222104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.232103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.232103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.232103 LLDP, length 82 [|LLDP] 18:27:07.232103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.232103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.232103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.232104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.232104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.232104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a3d cfee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.232104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.232104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.232104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.232104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.232104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.232104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.242103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.242103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.242103 LLDP, length 82 [|LLDP] 18:27:07.242103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.242103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.242103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a45 710e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.242103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.242104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.242104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.242104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.242104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.242104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.242104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.242104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.242104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.252105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.252105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.252105 LLDP, length 82 [|LLDP] 18:27:07.252105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.252105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.252105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a4d 122e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.252105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.252105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.252105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.252105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.252106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.252106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.252106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.252106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.252106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.262109 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.262109 LLDP, length 82 [|LLDP] 18:27:07.262109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.262109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.262109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a54 b34e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.262109 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.262109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.262109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.262109 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.262109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.262109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.262109 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.262110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.262110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.262110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.272114 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.272114 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.272114 LLDP, length 82 [|LLDP] 18:27:07.272114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.272114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.272114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a5c 546e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.272114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.272114 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.272114 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.272114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.272114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.272114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.272114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.272115 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.272115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.282107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.282107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.282107 LLDP, length 82 [|LLDP] 18:27:07.282107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.282107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.282107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.282108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.282108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.282108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a63 f58e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.282108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.282108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.282108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.282108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.282108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.282108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.292105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.292105 LLDP, length 82 [|LLDP] 18:27:07.292105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.292105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.292105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a6b 96ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.292105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.292105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.292105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.292105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.292105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.292105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.292105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.292105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.292105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.292105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.302115 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.302115 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.302115 LLDP, length 82 [|LLDP] 18:27:07.302115 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.302115 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.302115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a73 37ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.302115 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.302115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.302116 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.302116 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.302116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.302116 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.302116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.302116 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.302116 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.312102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.312102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.312102 LLDP, length 82 [|LLDP] 18:27:07.312102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.312102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.312102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.312102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.312102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.312102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a7a d8ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.312102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.312103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.312103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.312103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.312103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.312103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.322103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.322103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.322103 LLDP, length 82 [|LLDP] 18:27:07.322103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.322104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.322104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a82 7a0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.322104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.322104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.322104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.322104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.322104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.322104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.322104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.322104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.322104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.332102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.332102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.332102 LLDP, length 82 [|LLDP] 18:27:07.332102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.332102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.332103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a8a 1b2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.332103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.332103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.332103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.332103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.332103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.332103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.332103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.332103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.332103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.342102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.342102 LLDP, length 82 [|LLDP] 18:27:07.342102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.342102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.342102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a91 bc4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.342102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.342102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.342103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.342103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.342103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.342103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.342103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.342103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.342103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.342103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.352103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.352103 LLDP, length 82 [|LLDP] 18:27:07.352103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.352103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.352103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a99 5d6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.352104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.352104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.352104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.352104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.352104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.352104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.352104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.352104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.352104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.352104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.362108 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.362108 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.362108 LLDP, length 82 [|LLDP] 18:27:07.362108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.362108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.362108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.362108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.362108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.362108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aa0 fe8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.362108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.362108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.362108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.362108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.362109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.362109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.372104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.372104 LLDP, length 82 [|LLDP] 18:27:07.372104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.372104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.372104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aa8 9fae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.372104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.372105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.372105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.372105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.372105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.372105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.372105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.372105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.372105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.372105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.382104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.382104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.382104 LLDP, length 82 [|LLDP] 18:27:07.382104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.382104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.382104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ab0 40ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.382104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.382104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.382104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.382104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.382104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.382105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.382105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.382105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.382105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.392104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.392104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.392104 LLDP, length 82 [|LLDP] 18:27:07.392104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.392104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.392104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.392104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.392104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.392105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ab7 e1ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.392105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.392105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.392105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.392105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.392105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.392105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.402103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.402103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.402103 LLDP, length 82 [|LLDP] 18:27:07.402103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.402103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.402104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0abf 830e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.402104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.402104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.402104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.402104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.402104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.402104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.402104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.402104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.402104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.412104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.412104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.412104 LLDP, length 82 [|LLDP] 18:27:07.412104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.412104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.412104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ac7 242e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.412104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.412104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.412104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.412104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.412104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.412105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.412105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.412105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.412105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.422103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.422103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.422103 LLDP, length 82 [|LLDP] 18:27:07.422103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.422103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.422103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ace c54e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.422103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.422103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.422103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.422103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.422103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.422104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.422104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.422104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.422104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.432103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.432103 LLDP, length 82 [|LLDP] 18:27:07.432103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.432103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.432103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ad6 666e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.432103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.432103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.432103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.432103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.432103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.432103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.432103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.432103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.432104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.432104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.442106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.442106 LLDP, length 82 [|LLDP] 18:27:07.442106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.442106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.442106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.442106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.442106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.442106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.442106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ade 078e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.442106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.442106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.442106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.442106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.442106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.442107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.452105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.452105 LLDP, length 82 [|LLDP] 18:27:07.452105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.452105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.452105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ae5 a8ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.452105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.452105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.452105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.452105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.452105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.452105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.452105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.452105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.452106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.452106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.462105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.462105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.462105 LLDP, length 82 [|LLDP] 18:27:07.462105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.462105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.462105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aed 49ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.462105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.462105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.462105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.462105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.462105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.462105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.462105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.462105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.462106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.472103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.472103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.472103 LLDP, length 82 [|LLDP] 18:27:07.472103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.472103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.472103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.472103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.472103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.472103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0af4 eaee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.472103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.472104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.472104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.472104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.472104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.472104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.482105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.482105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.482105 LLDP, length 82 [|LLDP] 18:27:07.482105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.482105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.482105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0afc 8c0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.482105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.482105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.482105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.482105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.482105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.482106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.482106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.482106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.482106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.492106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.492106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.492106 LLDP, length 82 [|LLDP] 18:27:07.492106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.492106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.492106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b04 2d2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.492106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.492106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.492107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.492107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.492107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.492107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.492107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.492107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.492107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.502103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.502103 LLDP, length 82 [|LLDP] 18:27:07.502103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.502103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.502103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b0b ce4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.502103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.502103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.502103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.502103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.502103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.502104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.502104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.502104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.502104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.502104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.512105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.512105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.512105 LLDP, length 82 [|LLDP] 18:27:07.512105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.512105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.512105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b13 6f6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.512105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.512105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.512105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.512105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.512105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.512105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.512105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.512105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.512106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.522104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.522104 LLDP, length 82 [|LLDP] 18:27:07.522104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.522104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.522104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.522104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.522104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.522104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.522104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b1b 108e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.522104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.522104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.522104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.522104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.522104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.522105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.532104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.532104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.532104 LLDP, length 82 [|LLDP] 18:27:07.532104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.532104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.532104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b22 b1ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.532104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.532104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.532105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.532105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.532105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.532105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.532105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.532105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.532105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.542102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.542102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.542102 LLDP, length 82 [|LLDP] 18:27:07.542102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.542102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.542102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b2a 52ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.542102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.542102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.542102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.542102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.542102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.542102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.542102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.542103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.542103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.552108 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.552108 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.552108 LLDP, length 82 [|LLDP] 18:27:07.552108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.552108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.552108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.552108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.552108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.552108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b31 f3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.552108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.552108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.552108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.552108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.552108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.552108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.562102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.562102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.562102 LLDP, length 82 [|LLDP] 18:27:07.562102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.562102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.562102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b39 950e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.562102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.562102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.562102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.562102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.562102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.562103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.562103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.562103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.562103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.572103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.572103 LLDP, length 82 [|LLDP] 18:27:07.572103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.572103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.572103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b41 362e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.572103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.572103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.572103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.572103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.572103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.572103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.572103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.572103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.572103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.572104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.582104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.582104 LLDP, length 82 [|LLDP] 18:27:07.582104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.582104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.582104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b48 d74e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.582104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.582104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.582104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.582104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.582104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.582104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.582104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.582105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.582105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.582105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.592103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.592103 LLDP, length 82 [|LLDP] 18:27:07.592103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.592103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.592103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b50 786e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.592103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.592103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.592104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.592104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.592104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.592104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.592104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.592104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.592104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.592104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.602104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.602104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.602104 LLDP, length 82 [|LLDP] 18:27:07.602104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.602104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.602104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.602104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.602104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.602105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b58 198e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.602105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.602105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.602105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.602105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.602105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.602105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.612104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.612104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.612104 LLDP, length 82 [|LLDP] 18:27:07.612104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.612104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.612104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b5f baae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.612105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.612105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.612105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.612105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.612105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.612105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.612105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.612105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.612105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.622102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.622102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.622102 LLDP, length 82 [|LLDP] 18:27:07.622102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.622102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.622102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b67 5bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.622102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.622102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.622102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.622102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.622103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.622103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.622103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.622103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.622103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.632101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.632101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.632101 LLDP, length 82 [|LLDP] 18:27:07.632101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.632102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.632102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.632102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.632102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.632102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b6e fcee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.632102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.632102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.632102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.632102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.632102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.632102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.642104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.642104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.642104 LLDP, length 82 [|LLDP] 18:27:07.642104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.642104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.642105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b76 9e0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.642105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.642105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.642105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.642105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.642105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.642105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.642105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.642105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.642105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.652104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.652104 LLDP, length 82 [|LLDP] 18:27:07.652104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.652104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.652104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b7e 3f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.652104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.652104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.652105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.652105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.652105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.652105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.652105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.652105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.652105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.652105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.662102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.662102 LLDP, length 82 [|LLDP] 18:27:07.662102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.662102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.662103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b85 e04e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.662103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.662103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.662103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.662103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.662103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.662103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.662103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.662103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.662103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.662103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.672102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.672103 LLDP, length 82 [|LLDP] 18:27:07.672103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.672103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.672103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b8d 816e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.672103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.672103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.672103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.672103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.672103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.672103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.672103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.672103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.672103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.672104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.682103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.682103 LLDP, length 82 [|LLDP] 18:27:07.682103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.682103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.682103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.682103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.682103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.682103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.682103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b95 228e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.682103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.682103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.682103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.682103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.682103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.682104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.692104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.692104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.692104 LLDP, length 82 [|LLDP] 18:27:07.692104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.692104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.692105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b9c c3ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.692105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.692105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.692105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.692105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.692105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.692105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.692105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.692105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.692105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.702104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.702104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.702104 LLDP, length 82 [|LLDP] 18:27:07.702104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.702104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.702105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ba4 64ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.702105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.702105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.702105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.702105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.702105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.702105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.702105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.702105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.702105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.712101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.712102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.712102 LLDP, length 82 [|LLDP] 18:27:07.712102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.712102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.712102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.712102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.712102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.712102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bac 05ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.712102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.712102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.712102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.712102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.712102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.712102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.722108 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.722108 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.722108 LLDP, length 82 [|LLDP] 18:27:07.722108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.722108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.722108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bb3 a70e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.722108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.722108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.722108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.722108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.722108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.722109 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.722109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.722109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.722109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.732105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.732105 LLDP, length 82 [|LLDP] 18:27:07.732105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.732105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.732105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bbb 482e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.732105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.732105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.732105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.732105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.732105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.732106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.732106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.732106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.732106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.732106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.742113 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.742113 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.742114 LLDP, length 82 [|LLDP] 18:27:07.742114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.742114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.742114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bc2 e94e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.742114 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.742114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.742114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.742114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.742114 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.742114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.742114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.742114 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.742114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.752104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.752104 LLDP, length 82 [|LLDP] 18:27:07.752105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.752105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.752105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bca 8a6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.752105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.752105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.752105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.752105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.752105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.752105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.752105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.752105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.752105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.752105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.762107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.762107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.762107 LLDP, length 82 [|LLDP] 18:27:07.762107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.762107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.762108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.762108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.762108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.762108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bd2 2b8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.762108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.762108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.762108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.762108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.762108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.762108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.772103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.772103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.772103 LLDP, length 82 [|LLDP] 18:27:07.772103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.772103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.772103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bd9 ccae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.772103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.772103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.772103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.772103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.772104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.772104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.772104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.772104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.772104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.782103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.782103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.782103 LLDP, length 82 [|LLDP] 18:27:07.782103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.782103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.782103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0be1 6dce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.782103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.782103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.782103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.782103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.782103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.782103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.782103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.782104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.782104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.792104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.792104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.792104 LLDP, length 82 [|LLDP] 18:27:07.792104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.792104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.792104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.792104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.792104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.792104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0be9 0eee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.792104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.792104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.792105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.792105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.792105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.792105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.802104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.802104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.802104 LLDP, length 82 [|LLDP] 18:27:07.802104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.802104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.802104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bf0 b00e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.802104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.802104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.802104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.802104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.802104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.802104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.802105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.802105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.802105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.812104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.812104 LLDP, length 82 [|LLDP] 18:27:07.812104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.812104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.812104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bf8 512e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.812104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.812104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.812104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.812104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.812104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.812104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.812105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.812105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.812105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.812105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.822105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.822105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.822105 LLDP, length 82 [|LLDP] 18:27:07.822105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.822105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.822105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bff f24e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.822106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.822106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.822106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.822106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.822106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.822106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.822106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.822106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.822106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.832104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.832104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.832104 LLDP, length 82 [|LLDP] 18:27:07.832104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.832105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.832105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c07 936e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.832105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.832105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.832105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.832105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.832105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.832105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.832105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.832105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.832105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.842101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.842101 LLDP, length 82 [|LLDP] 18:27:07.842101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.842101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.842101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.842101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.842102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.842102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.842102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c0f 348e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.842102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.842102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.842102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.842102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.842102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.842102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.852106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.852106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.852106 LLDP, length 82 [|LLDP] 18:27:07.852106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.852106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.852106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c16 d5ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.852106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.852106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.852106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.852106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.852106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.852106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.852106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.852107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.852107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.862103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.862103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.862103 LLDP, length 82 [|LLDP] 18:27:07.862103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.862103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.862103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c1e 76ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.862103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.862103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.862103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.862103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.862103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.862103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.862104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.862104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.862104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.872102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.872102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.872102 LLDP, length 82 [|LLDP] 18:27:07.872102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.872102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.872102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.872102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.872102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.872102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c26 17ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.872102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.872102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.872103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.872103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.872103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.872103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.882106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.882106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.882107 LLDP, length 82 [|LLDP] 18:27:07.882107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.882107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.882107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c2d b90e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.882107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.882107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.882107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.882107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.882107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.882107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.882107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.882107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.882107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.892107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.892107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.892107 LLDP, length 82 [|LLDP] 18:27:07.892107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.892107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.892107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c35 5a2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.892107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.892107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.892107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.892107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.892108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.892108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.892108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.892108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.892108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.902104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.902104 LLDP, length 82 [|LLDP] 18:27:07.902104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.902104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.902104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c3c fb4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.902104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.902104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.902104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.902104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.902104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.902104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.902104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.902105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.902105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.902105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.912107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.912107 LLDP, length 82 [|LLDP] 18:27:07.912107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.912108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.912108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c44 9c6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.912108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.912108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.912108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.912108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.912108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.912108 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.912108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.912108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.912108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.912108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.922105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.922105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.922106 LLDP, length 82 [|LLDP] 18:27:07.922106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.922106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.922106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.922106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.922106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.922106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c4c 3d8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.922106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.922106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.922106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.922106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.922106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.922106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.932104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.932104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.932104 LLDP, length 82 [|LLDP] 18:27:07.932104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.932104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.932104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c53 deae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.932105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.932105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.932105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.932105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.932105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.932105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.932105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.932105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.932105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.942120 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.942120 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.942121 LLDP, length 82 [|LLDP] 18:27:07.942121 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.942121 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.942121 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c5b 7fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.942121 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.942121 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.942121 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.942121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.942121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.942121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.942121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.942121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.942121 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.952109 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.952109 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.952110 LLDP, length 82 [|LLDP] 18:27:07.952110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.952110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.952110 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.952110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.952110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.952110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c63 20ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.952110 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.952110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.952110 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.952110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.952110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.952110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.962106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.962106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.962106 LLDP, length 82 [|LLDP] 18:27:07.962106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.962106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.962106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c6a c20e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.962106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.962106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.962106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.962106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.962106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.962106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.962106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.962106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.962107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.972104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.972104 LLDP, length 82 [|LLDP] 18:27:07.972104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.972104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.972105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c72 632e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.972105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.972105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.972105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.972105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.972105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.972105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.972105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.972105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.972105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.972105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.982102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.982102 LLDP, length 82 [|LLDP] 18:27:07.982102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.982102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.982102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c7a 044e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.982102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.982102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.982103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.982103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.982103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.982103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.982103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.982103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.982103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.982103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.992105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.992105 LLDP, length 82 [|LLDP] 18:27:07.992105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.992106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.992106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c81 a56e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.992106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.992106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.992106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.992106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.992106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.992106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.992106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.992106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.992106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.992106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.002104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.002104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.002104 LLDP, length 82 [|LLDP] 18:27:08.002104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.002104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.002104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.002104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.002104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.002104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c89 468e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.002104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.002104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.002104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.002104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.002105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.002105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.012103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.012103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.012103 LLDP, length 82 [|LLDP] 18:27:08.012103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.012103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.012104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c90 e7ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.012104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.012104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.012104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.012104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.012104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.012104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.012104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.012104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.012104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.022106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.022106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.022106 LLDP, length 82 [|LLDP] 18:27:08.022106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.022106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.022106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c98 88ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.022106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.022106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.022106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.022107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.022107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.022107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.022107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.022107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.022107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.032105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.032105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.032105 LLDP, length 82 [|LLDP] 18:27:08.032105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.032105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.032105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.032105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.032105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.032105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ca0 29ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.032105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.032105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.032105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.032106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.032106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.032106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.042104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.042104 LLDP, length 82 [|LLDP] 18:27:08.042104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.042104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.042105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ca7 cb0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.042105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.042105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.042105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.042105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.042105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.042105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.042105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.042105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.042105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.042105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.052103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.052103 LLDP, length 82 [|LLDP] 18:27:08.052103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.052104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.052104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0caf 6c2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.052104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.052104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.052104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.052104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.052104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.052104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.052104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.052104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.052104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.052104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.062103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.062103 LLDP, length 82 [|LLDP] 18:27:08.062103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.062103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.062103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cb7 0d4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.062103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.062103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.062103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.062103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.062103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.062104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.062104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.062104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.062104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.062104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.072105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.072106 LLDP, length 82 [|LLDP] 18:27:08.072106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.072106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.072106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cbe ae6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.072106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.072106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.072106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.072106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.072106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.072106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.072106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.072106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.072106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.072106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.082102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.082102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.082102 LLDP, length 82 [|LLDP] 18:27:08.082102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.082102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.082102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.082103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.082103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.082103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cc6 4f8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.082103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.082103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.082103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.082103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.082103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.082103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.092119 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.092119 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.092119 LLDP, length 82 [|LLDP] 18:27:08.092119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.092119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.092119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ccd f0ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.092119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.092119 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.092119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.092119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.092119 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.092119 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.092119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.092119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.092120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.102114 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.102114 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.102114 LLDP, length 82 [|LLDP] 18:27:08.102114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.102114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.102114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cd5 91ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.102114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.102114 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.102114 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.102114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.102114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.102115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.102115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.102115 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.102115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.112111 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.112111 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.112111 LLDP, length 82 [|LLDP] 18:27:08.112111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.112111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.112111 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.112111 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.112111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.112111 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cdd 32ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.112111 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.112111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.112111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.112111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.112112 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.112112 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.122107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.122107 LLDP, length 82 [|LLDP] 18:27:08.122107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.122107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.122107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ce4 d40e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.122107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.122107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.122107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.122107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.122107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.122107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.122107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.122107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.122107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.122108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.132105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.132105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.132105 LLDP, length 82 [|LLDP] 18:27:08.132105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.132105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.132105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cec 752e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.132105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.132105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.132105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.132105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.132106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.132106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.132106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.132106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.132106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.142122 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.142122 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.142122 LLDP, length 82 [|LLDP] 18:27:08.142122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.142123 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.142123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cf4 164e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.142123 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.142123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.142123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.142123 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.142123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.142123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.142123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.142123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.142123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.152142 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.152142 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.152142 LLDP, length 82 [|LLDP] 18:27:08.152143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.152143 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.152143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cfb b76e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.152143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.152143 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.152143 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.152143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.152143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.152143 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.152143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.152143 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.152143 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.162129 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.162129 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.162129 LLDP, length 82 [|LLDP] 18:27:08.162129 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.162129 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.162129 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.162129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.162129 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.162129 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d03 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.162129 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.162129 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.162129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.162129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.162129 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.162130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.172107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.172107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.172107 LLDP, length 82 [|LLDP] 18:27:08.172107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.172107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.172107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d0a f9ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.172107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.172107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.172107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.172107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.172107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.172107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.172108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.172108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.172108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.182107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.182107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.182107 LLDP, length 82 [|LLDP] 18:27:08.182107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.182107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.182107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d12 9ace 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.182107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.182107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.182108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.182108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.182108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.182108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.182108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.182108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.182108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.192105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.192105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.192105 LLDP, length 82 [|LLDP] 18:27:08.192106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.192106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.192106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.192106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.192106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.192106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d1a 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.192106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.192106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.192106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.192106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.192106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.192106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.202105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.202106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.202106 LLDP, length 82 [|LLDP] 18:27:08.202106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.202106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.202106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d21 dd0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.202106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.202106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.202106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.202106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.202106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.202106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.202106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.202106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.202106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.212104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.212104 LLDP, length 82 [|LLDP] 18:27:08.212104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.212104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.212104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d29 7e2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.212104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.212105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.212105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.212105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.212105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.212105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.212105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.212105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.212105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.212105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.222106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.222106 LLDP, length 82 [|LLDP] 18:27:08.222106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.222106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.222106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d31 1f4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.222106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.222106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.222106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.222106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.222106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.222107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.222107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.222107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.222107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.222107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.232104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.232104 LLDP, length 82 [|LLDP] 18:27:08.232104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.232104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.232104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d38 c06e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.232104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.232104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.232105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.232105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.232105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.232105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.232105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.232105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.232105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.232105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.242103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.242103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.242104 LLDP, length 82 [|LLDP] 18:27:08.242104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.242104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.242104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.242104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.242104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.242104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d40 618e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.242104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.242104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.242104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.242104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.242104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.242104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.252104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.252104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.252104 LLDP, length 82 [|LLDP] 18:27:08.252104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.252104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.252104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d48 02ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.252104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.252104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.252104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.252105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.252105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.252105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.252105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.252105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.252105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.262104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.262104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.262105 LLDP, length 82 [|LLDP] 18:27:08.262105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.262105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.262105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d4f a3ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.262105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.262105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.262105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.262105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.262105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.262105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.262105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.262105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.262105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.272113 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.272113 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.272113 LLDP, length 82 [|LLDP] 18:27:08.272113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.272113 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.272113 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.272113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.272114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.272114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d57 44ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.272114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.272114 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.272114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.272114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.272114 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.272114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.282105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.282106 LLDP, length 82 [|LLDP] 18:27:08.282106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.282106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.282106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d5e e60e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.282106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.282106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.282106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.282106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.282106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.282106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.282106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.282106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.282106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.282106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.292104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.292104 LLDP, length 82 [|LLDP] 18:27:08.292104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.292104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.292104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d66 872e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.292105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.292105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.292105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.292105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.292105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.292105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.292105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.292105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.292105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.292105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.302103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.302103 LLDP, length 82 [|LLDP] 18:27:08.302103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.302103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.302103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d6e 284e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.302103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.302103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.302103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.302104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.302104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.302104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.302104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.302104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.302104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.302104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.312105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.312105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.312105 LLDP, length 82 [|LLDP] 18:27:08.312105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.312105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.312105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d75 c96e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.312105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.312105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.312105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.312105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.312105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.312106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.312106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.312106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.312106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.322103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.322103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.322103 LLDP, length 82 [|LLDP] 18:27:08.322103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.322103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.322103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.322104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.322104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.322104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d7d 6a8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.322104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.322104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.322104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.322104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.322104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.322104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.332105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.332105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.332105 LLDP, length 82 [|LLDP] 18:27:08.332105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.332105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.332105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d85 0bae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.332105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.332105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.332105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.332105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.332105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.332105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.332106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.332106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.332106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.342103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.342103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.342103 LLDP, length 82 [|LLDP] 18:27:08.342103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.342103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.342103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d8c acce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.342104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.342104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.342104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.342104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.342104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.342104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.342104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.342104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.342104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.352103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.352103 LLDP, length 82 [|LLDP] 18:27:08.352104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.352104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.352104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.352104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.352104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.352104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.352104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d94 4dee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.352104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.352104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.352104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.352104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.352104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.352104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.362104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.362104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.362104 LLDP, length 82 [|LLDP] 18:27:08.362104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.362104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.362104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d9b ef0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.362104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.362104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.362104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.362104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.362105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.362105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.362105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.362105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.362105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.372104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.372104 LLDP, length 82 [|LLDP] 18:27:08.372104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.372104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.372104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0da3 902e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.372104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.372104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.372104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.372104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.372104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.372104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.372104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.372104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.372104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.372105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.382104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.382104 LLDP, length 82 [|LLDP] 18:27:08.382104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.382104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.382104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dab 314e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.382104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.382104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.382104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.382104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.382104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.382104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.382104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.382104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.382104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.382105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.392103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.392103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.392104 LLDP, length 82 [|LLDP] 18:27:08.392104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.392104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.392104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0db2 d26e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.392104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.392104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.392104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.392104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.392104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.392104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.392104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.392104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.392104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.402104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.402104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.402104 LLDP, length 82 [|LLDP] 18:27:08.402104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.402104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.402104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.402104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.402104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.402104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dba 738e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.402104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.402105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.402105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.402105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.402105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.402105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.412105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.412105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.412106 LLDP, length 82 [|LLDP] 18:27:08.412106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.412106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.412106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dc2 14ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.412106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.412106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.412106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.412106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.412106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.412106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.412106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.412106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.412106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.422102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.422102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.422102 LLDP, length 82 [|LLDP] 18:27:08.422102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.422102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.422103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dc9 b5ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.422103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.422103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.422103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.422103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.422103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.422103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.422103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.422103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.422103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.432105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.432105 LLDP, length 82 [|LLDP] 18:27:08.432105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.432106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.432106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.432106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.432106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.432106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.432106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dd1 56ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.432106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.432106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.432106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.432106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.432106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.432106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.442105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.442105 LLDP, length 82 [|LLDP] 18:27:08.442105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.442105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.442106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dd8 f80e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.442106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.442106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.442106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.442106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.442106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.442106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.442106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.442106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.442106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.442106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.452105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.452105 LLDP, length 82 [|LLDP] 18:27:08.452105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.452105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.452105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0de0 992e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.452105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.452105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.452105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.452105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.452105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.452105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.452105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.452105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.452105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.452106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.462105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.462105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.462105 LLDP, length 82 [|LLDP] 18:27:08.462106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.462106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.462106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0de8 3a4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.462106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.462106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.462106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.462106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.462106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.462106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.462106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.462106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.462106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.472104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.472104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.472104 LLDP, length 82 [|LLDP] 18:27:08.472104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.472104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.472105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0def db6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.472105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.472105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.472105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.472105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.472105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.472105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.472105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.472105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.472105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.482103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.482103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.482103 LLDP, length 82 [|LLDP] 18:27:08.482103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.482103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.482104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.482104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.482104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.482104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0df7 7c8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.482104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.482104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.482104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.482104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.482104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.482104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.492106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.492106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.492106 LLDP, length 82 [|LLDP] 18:27:08.492106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.492106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.492106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dff 1dae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.492106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.492106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.492106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.492106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.492106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.492106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.492106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.492107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.492107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.502103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.502103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.502103 LLDP, length 82 [|LLDP] 18:27:08.502103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.502103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.502103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e06 bece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.502103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.502103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.502103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.502103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.502103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.502104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.502104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.502104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.502104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.512104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.512104 LLDP, length 82 [|LLDP] 18:27:08.512104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.512104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.512104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.512104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.512105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.512105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.512105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e0e 5fee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.512105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.512105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.512105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.512105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.512105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.512105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.522103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.522103 LLDP, length 82 [|LLDP] 18:27:08.522103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.522103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.522104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e16 010e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.522104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.522104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.522104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.522104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.522104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.522104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.522104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.522104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.522104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.522104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.532104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.532104 LLDP, length 82 [|LLDP] 18:27:08.532104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.532104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.532104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e1d a22e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.532104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.532104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.532104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.532104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.532104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.532104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.532104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.532105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.532105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.532105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.542104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.542104 LLDP, length 82 [|LLDP] 18:27:08.542104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.542104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.542104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e25 434e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.542104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.542104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.542104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.542104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.542105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.542105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.542105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.542105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.542105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.542105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.552104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.552104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.552104 LLDP, length 82 [|LLDP] 18:27:08.552104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.552104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.552104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e2c e46e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.552104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.552104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.552104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.552104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.552104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.552104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.552105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.552105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.552105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.562102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.562102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.562102 LLDP, length 82 [|LLDP] 18:27:08.562102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.562102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.562102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.562102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.562102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.562102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e34 858e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.562102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.562103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.562103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.562103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.562103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.562103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.572104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.572104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.572104 LLDP, length 82 [|LLDP] 18:27:08.572104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.572104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.572104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e3c 26ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.572104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.572104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.572104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.572104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.572105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.572105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.572105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.572105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.572105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.582105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.582105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.582105 LLDP, length 82 [|LLDP] 18:27:08.582105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.582105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.582106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e43 c7ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.582106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.582106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.582106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.582106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.582106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.582106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.582106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.582106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.582106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.592104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.592104 LLDP, length 82 [|LLDP] 18:27:08.592104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.592104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.592104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.592104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.592104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.592104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.592104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e4b 68ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.592104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.592104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.592105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.592105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.592105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.592105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.602105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.602106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.602106 LLDP, length 82 [|LLDP] 18:27:08.602106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.602106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.602106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e53 0a0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.602106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.602106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.602106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.602106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.602106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.602106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.602106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.602106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.602106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.612103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.612103 LLDP, length 82 [|LLDP] 18:27:08.612104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.612104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.612104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e5a ab2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.612104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.612104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.612104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.612104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.612104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.612104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.612104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.612104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.612104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.612104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.622104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.622104 LLDP, length 82 [|LLDP] 18:27:08.622104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.622104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.622104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e62 4c4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.622104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.622105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.622105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.622105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.622105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.622105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.622105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.622105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.622105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.622105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.632104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.632104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.632104 LLDP, length 82 [|LLDP] 18:27:08.632105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.632105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.632105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e69 ed6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.632105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.632105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.632105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.632105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.632105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.632105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.632105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.632105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.632105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.642106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.642106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.642106 LLDP, length 82 [|LLDP] 18:27:08.642106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.642106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.642106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.642106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.642106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.642106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e71 8e8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.642107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.642107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.642107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.642107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.642107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.642107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.652102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.652102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.652102 LLDP, length 82 [|LLDP] 18:27:08.652102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.652102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.652102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e79 2fae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.652103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.652103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.652103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.652103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.652103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.652103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.652103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.652103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.652103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.662102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.662102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.662103 LLDP, length 82 [|LLDP] 18:27:08.662103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.662103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.662103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e80 d0ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.662103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.662103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.662103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.662103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.662103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.662103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.662103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.662103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.662103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.672102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.672102 LLDP, length 82 [|LLDP] 18:27:08.672102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.672102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.672102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.672103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.672103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.672103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.672103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e88 71ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.672103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.672103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.672103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.672103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.672103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.672103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.682102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.682102 LLDP, length 82 [|LLDP] 18:27:08.682102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.682102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.682102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e90 130e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.682102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.682102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.682102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.682102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.682102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.682102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.682102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.682102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.682103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.682103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.692104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.692104 LLDP, length 82 [|LLDP] 18:27:08.692104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.692104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.692105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e97 b42e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.692105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.692105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.692105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.692105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.692105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.692105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.692105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.692105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.692105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.692105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.702110 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.702110 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.702110 LLDP, length 82 [|LLDP] 18:27:08.702110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.702110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.702110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e9f 554e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.702110 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.702110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.702110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.702110 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.702110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.702110 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.702110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.702110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.702111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.712105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.712105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.712105 LLDP, length 82 [|LLDP] 18:27:08.712105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.712105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.712105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ea6 f66e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.712105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.712106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.712106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.712106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.712106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.712106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.712106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.712106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.712106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.722104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.722105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.722105 LLDP, length 82 [|LLDP] 18:27:08.722105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.722105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.722105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.722105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.722105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.722105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eae 978e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.722105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.722105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.722105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.722105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.722105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.722105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.732104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.732104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.732104 LLDP, length 82 [|LLDP] 18:27:08.732104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.732104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.732104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eb6 38ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.732104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.732104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.732105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.732105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.732105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.732105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.732105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.732105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.732105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.742110 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.742110 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.742110 LLDP, length 82 [|LLDP] 18:27:08.742110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.742110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.742110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ebd d9ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.742110 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.742110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.742110 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.742110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.742110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.742110 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.742110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.742111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.742111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.752111 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.752111 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.752111 LLDP, length 82 [|LLDP] 18:27:08.752111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.752111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.752111 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.752112 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.752112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.752112 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ec5 7aee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.752112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.752112 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.752112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.752112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.752112 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.752112 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.762104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.762104 LLDP, length 82 [|LLDP] 18:27:08.762104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.762104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.762104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ecd 1c0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.762104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.762104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.762104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.762104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.762104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.762104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.762104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.762104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.762104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.762104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.772104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.772104 LLDP, length 82 [|LLDP] 18:27:08.772104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.772104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.772104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ed4 bd2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.772104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.772104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.772104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.772104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.772104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.772104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.772104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.772105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.772105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.772105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.782109 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.782109 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.782109 LLDP, length 82 [|LLDP] 18:27:08.782109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.782109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.782109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0edc 5e4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.782109 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.782109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.782109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.782109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.782109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.782109 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.782109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.782110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.782110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.792105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.792105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.792105 LLDP, length 82 [|LLDP] 18:27:08.792105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.792105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.792105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ee3 ff6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.792106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.792106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.792106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.792106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.792106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.792106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.792106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.792106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.792106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.802104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.802105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.802105 LLDP, length 82 [|LLDP] 18:27:08.802105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.802105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.802105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.802105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.802105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.802105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eeb a08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.802105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.802105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.802105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.802105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.802105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.802105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.812114 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.812114 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.812114 LLDP, length 82 [|LLDP] 18:27:08.812114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.812114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.812114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ef3 41ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.812114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.812114 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.812115 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.812115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.812115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.812115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.812115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.812115 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.812115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.822110 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.822110 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.822110 LLDP, length 82 [|LLDP] 18:27:08.822111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.822111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.822111 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0efa e2ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.822111 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.822111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.822111 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.822111 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.822111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.822111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.822111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.822111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.822111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.832104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.832104 LLDP, length 82 [|LLDP] 18:27:08.832104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.832104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.832104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.832104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.832104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.832104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.832104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f02 83ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.832105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.832105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.832105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.832105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.832105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.832105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.842102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.842103 LLDP, length 82 [|LLDP] 18:27:08.842103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.842103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.842103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f0a 250e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.842103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.842103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.842103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.842103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.842103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.842103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.842103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.842103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.842103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.842103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.852102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.852102 LLDP, length 82 [|LLDP] 18:27:08.852102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.852102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.852102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f11 c62e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.852102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.852103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.852103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.852103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.852103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.852103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.852103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.852103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.852103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.852103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.862101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.862101 LLDP, length 82 [|LLDP] 18:27:08.862101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.862101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.862101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f19 674e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.862101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.862101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.862101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.862101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.862102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.862102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.862102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.862102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.862102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.862102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.872104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.872104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.872104 LLDP, length 82 [|LLDP] 18:27:08.872104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.872104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.872104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f21 086e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.872104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.872104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.872104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.872104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.872104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.872104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.872104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.872105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.872105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.882106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.882106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.882106 LLDP, length 82 [|LLDP] 18:27:08.882106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.882106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.882106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.882106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.882106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.882107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f28 a98e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.882107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.882107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.882107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.882107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.882107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.882107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.892104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.892104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.892104 LLDP, length 82 [|LLDP] 18:27:08.892104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.892104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.892104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f30 4aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.892104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.892104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.892104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.892105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.892105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.892105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.892105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.892105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.892105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.902114 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.902114 LLDP, length 82 [|LLDP] 18:27:08.902114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.902114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.902114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f37 ebce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.902114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.902115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.902115 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.902115 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.902115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.902115 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.902115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.902115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.902115 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.902115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.912101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.912101 LLDP, length 82 [|LLDP] 18:27:08.912101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.912101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.912101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.912101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.912102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.912102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.912102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f3f 8cee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.912102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.912102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.912102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.912102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.912102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.912102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.922102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.922102 LLDP, length 82 [|LLDP] 18:27:08.922102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.922102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.922103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f47 2e0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.922103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.922103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.922103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.922103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.922103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.922103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.922103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.922103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.922103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.922103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.932104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.932104 LLDP, length 82 [|LLDP] 18:27:08.932104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.932104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.932105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f4e cf2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.932105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.932105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.932105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.932105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.932105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.932105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.932105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.932105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.932105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.932105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.942103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.942103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.942103 LLDP, length 82 [|LLDP] 18:27:08.942103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.942103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.942103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f56 704e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.942104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.942104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.942104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.942104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.942104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.942104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.942104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.942104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.942104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.952105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.952105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.952105 LLDP, length 82 [|LLDP] 18:27:08.952105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.952105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.952105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f5e 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.952105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.952105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.952105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.952105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.952105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.952105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.952105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.952106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.952106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.962103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.962103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.962103 LLDP, length 82 [|LLDP] 18:27:08.962103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.962103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.962103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.962103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.962103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.962103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f65 b28e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.962103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.962103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.962104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.962104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.962104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.962104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.972104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.972104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.972104 LLDP, length 82 [|LLDP] 18:27:08.972104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.972104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.972104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f6d 53ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.972104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.972104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.972104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.972104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.972104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.972105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.972105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.972105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.972105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.982104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.982104 LLDP, length 82 [|LLDP] 18:27:08.982104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.982104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.982104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f74 f4ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.982104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.982105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.982105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.982105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.982105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.982105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.982105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.982105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.982105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.982105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.992101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.992101 LLDP, length 82 [|LLDP] 18:27:08.992101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.992102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.992102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.992102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.992102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.992102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.992102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f7c 95ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.992102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.992102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.992102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.992102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.992102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.992102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.002103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.002103 LLDP, length 82 [|LLDP] 18:27:09.002103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.002103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.002103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f84 370e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.002103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.002103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.002103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.002104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.002104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.002104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.002104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.002104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.002104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.002104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.012104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.012104 LLDP, length 82 [|LLDP] 18:27:09.012104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.012104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.012104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f8b d82e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.012104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.012104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.012104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.012104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.012104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.012104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.012105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.012105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.012105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.012105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.022103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.022103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.022103 LLDP, length 82 [|LLDP] 18:27:09.022103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.022103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.022103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f93 794e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.022103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.022103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.022103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.022103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.022103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.022103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.022104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.022104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.022104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.032102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.032102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.032102 LLDP, length 82 [|LLDP] 18:27:09.032103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.032103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.032103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f9b 1a6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.032103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.032103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.032103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.032103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.032103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.032103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.032103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.032103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.032103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.042103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.042103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.042103 LLDP, length 82 [|LLDP] 18:27:09.042103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.042104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.042104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.042104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.042104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.042104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fa2 bb8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.042104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.042104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.042104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.042104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.042104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.042104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.052105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.052105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.052105 LLDP, length 82 [|LLDP] 18:27:09.052105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.052105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.052105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0faa 5cae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.052105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.052105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.052105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.052105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.052105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.052105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.052106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.052106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.052106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.062105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.062105 LLDP, length 82 [|LLDP] 18:27:09.062105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.062105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.062106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fb1 fdce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.062106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.062106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.062106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.062106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.062106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.062106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.062106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.062106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.062106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.062106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.072105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.072105 LLDP, length 82 [|LLDP] 18:27:09.072105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.072105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.072105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.072105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.072105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.072106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.072106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fb9 9eee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.072106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.072106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.072106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.072106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.072106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.072106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.082105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.082105 LLDP, length 82 [|LLDP] 18:27:09.082105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.082105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.082105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fc1 400e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.082105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.082105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.082105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.082105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.082105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.082105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.082105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.082105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.082106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.082106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.092105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.092105 LLDP, length 82 [|LLDP] 18:27:09.092105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.092105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.092105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fc8 e12e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.092105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.092106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.092106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.092106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.092106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.092106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.092106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.092106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.092106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.092106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.102103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.102103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.102103 LLDP, length 82 [|LLDP] 18:27:09.102103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.102103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.102104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fd0 824e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.102104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.102104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.102104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.102104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.102104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.102104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.102104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.102104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.102104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.112103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.112103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.112104 LLDP, length 82 [|LLDP] 18:27:09.112104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.112104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.112104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fd8 236e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.112104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.112104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.112104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.112104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.112104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.112104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.112104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.112104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.112104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.122104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.122104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.122104 LLDP, length 82 [|LLDP] 18:27:09.122104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.122104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.122104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.122105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.122105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.122105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fdf c48e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.122105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.122105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.122105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.122105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.122105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.122105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.132102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.132102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.132102 LLDP, length 82 [|LLDP] 18:27:09.132102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.132103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.132103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fe7 65ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.132103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.132103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.132103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.132103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.132103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.132103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.132103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.132103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.132103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.142106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.142106 LLDP, length 82 [|LLDP] 18:27:09.142106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.142106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.142106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fef 06ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.142106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.142106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.142106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.142106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.142106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.142106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.142106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.142106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.142106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.142107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.152104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.152104 LLDP, length 82 [|LLDP] 18:27:09.152104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.152105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.152105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.152105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.152105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.152105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.152105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ff6 a7ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.152105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.152105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.152105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.152105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.152105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.152105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.162103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.162103 LLDP, length 82 [|LLDP] 18:27:09.162103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.162104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.162104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ffe 490e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.162104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.162104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.162104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.162104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.162104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.162104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.162104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.162104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.162104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.162104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.172104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.172104 LLDP, length 82 [|LLDP] 18:27:09.172104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.172104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.172104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1005 ea2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.172104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.172104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.172104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.172104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.172104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.172104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.172104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.172104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.172104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.172105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.182104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.182104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.182104 LLDP, length 82 [|LLDP] 18:27:09.182104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.182104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.182104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 100d 8b4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.182104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.182105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.182105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.182105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.182105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.182105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.182105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.182105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.182105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.192103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.192103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.192104 LLDP, length 82 [|LLDP] 18:27:09.192104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.192104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.192104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1015 2c6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.192104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.192104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.192104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.192104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.192104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.192104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.192104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.192104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.192104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.202105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.202105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.202105 LLDP, length 82 [|LLDP] 18:27:09.202105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.202105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.202105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.202105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.202105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.202105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 101c cd8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.202105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.202105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.202105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.202106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.202106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.202106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.212104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.212104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.212104 LLDP, length 82 [|LLDP] 18:27:09.212104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.212104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.212104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1024 6eae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.212105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.212105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.212105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.212105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.212105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.212105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.212105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.212105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.212105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.222104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.222104 LLDP, length 82 [|LLDP] 18:27:09.222104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.222104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.222104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 102c 0fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.222105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.222105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.222105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.222105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.222105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.222105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.222105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.222105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.222105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.222105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.232104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.232105 LLDP, length 82 [|LLDP] 18:27:09.232105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.232105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.232105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.232105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.232105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.232105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.232105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1033 b0ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.232105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.232105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.232105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.232105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.232105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.232105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.242105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.242105 LLDP, length 82 [|LLDP] 18:27:09.242105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.242105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.242105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 103b 520e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.242105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.242105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.242105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.242105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.242105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.242105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.242105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.242105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.242106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.242106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.252105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.252105 LLDP, length 82 [|LLDP] 18:27:09.252105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.252106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.252106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1042 f32e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.252106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.252106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.252106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.252106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.252106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.252106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.252106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.252106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.252106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.252106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.262105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.262105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.262105 LLDP, length 82 [|LLDP] 18:27:09.262105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.262105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.262105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 104a 944e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.262105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.262105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.262105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.262105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.262105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.262106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.262106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.262106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.262106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.272114 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.272114 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.272114 LLDP, length 82 [|LLDP] 18:27:09.272114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.272115 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.272115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1052 356e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.272115 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.272115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.272115 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.272115 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.272115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.272115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.272115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.272115 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.272115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.282107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.282107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.282107 LLDP, length 82 [|LLDP] 18:27:09.282108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.282108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.282108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.282108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.282108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.282108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1059 d68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.282108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.282108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.282108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.282108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.282108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.282108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.292107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.292107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.292108 LLDP, length 82 [|LLDP] 18:27:09.292108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.292108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.292108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1061 77ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.292108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.292108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.292108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.292108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.292108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.292108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.292108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.292108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.292108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 6626 packets captured 6626 packets received by filter 0 packets dropped by kernel 884 packets dropped by interface INFO DENT:Logger.py:84 [DENT aggregation 1] Ran timeout --preserve-status 15 tcpdump -i swp1 -n on agg1 with rc 0 and out 18:27:01.233152 LLDP, length 219: localhost 18:27:04.882143 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.882144 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:04.882144 LLDP, length 82 [|LLDP] 18:27:04.882144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:04.882144 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:04.882144 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 033c e78e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:04.882144 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:04.882144 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:04.882144 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.882144 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:04.882144 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:04.882144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.882144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.882144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:04.882144 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:04.892134 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.892134 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:04.892134 LLDP, length 82 [|LLDP] 18:27:04.892134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:04.892134 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:04.892134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0344 88ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:04.892134 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.892134 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:04.892134 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:04.892134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.892135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.892135 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:04.892135 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:04.892135 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:04.892135 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:04.902122 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.902122 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:04.902122 LLDP, length 82 [|LLDP] 18:27:04.902122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:04.902122 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:04.902122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 034c 29ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:04.902122 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:04.902122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:04.902122 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.902122 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:04.902122 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:04.902122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.902123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.902123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:04.902123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:04.912120 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.912120 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:04.912120 LLDP, length 82 [|LLDP] 18:27:04.912120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:04.912120 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.912120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:04.912120 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:04.912120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.912120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.912120 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:04.912120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0353 caee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:04.912121 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:04.912121 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:04.912121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:04.912121 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:04.922107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.922107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:04.922107 LLDP, length 82 [|LLDP] 18:27:04.922107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:04.922107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:04.922107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 035b 6c0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:04.922107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:04.922107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.922107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:04.922107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:04.922107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.922107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.922107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:04.922108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:04.922108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:04.932104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.932104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:04.932104 LLDP, length 82 [|LLDP] 18:27:04.932104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:04.932104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:04.932104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0363 0d2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:04.932104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:04.932104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:04.932105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.932105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:04.932105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:04.932105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.932105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.932105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:04.932105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:04.942103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.942103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:04.942103 LLDP, length 82 [|LLDP] 18:27:04.942103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:04.942103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:04.942103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.942103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:04.942103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:04.942103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.942103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.942103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 036a ae4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:04.942103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:04.942103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:04.942104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:04.942104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:04.952102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.952102 LLDP, length 82 [|LLDP] 18:27:04.952102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:04.952102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:04.952102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0372 4f6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:04.952102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:04.952103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:04.952103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.952103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:04.952103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:04.952103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.952103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.952103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:04.952103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:04.952103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:04.962100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.962100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:04.962100 LLDP, length 82 [|LLDP] 18:27:04.962101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:04.962101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:04.962101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0379 f08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:04.962101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:04.962101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:04.962101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.962101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:04.962101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:04.962101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.962101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.962101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:04.962101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:04.972106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.972106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:04.972106 LLDP, length 82 [|LLDP] 18:27:04.972106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:04.972106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:04.972106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0381 91ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:04.972106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.972107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:04.972107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:04.972107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.972107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.972107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:04.972107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:04.972107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:04.972107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:04.982098 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.982098 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:04.982098 LLDP, length 82 [|LLDP] 18:27:04.982098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:04.982098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:04.982098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0389 32ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:04.982098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:04.982098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:04.982098 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.982098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:04.982098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:04.982099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.982099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.982099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:04.982099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:04.992098 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.992098 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:04.992098 LLDP, length 82 [|LLDP] 18:27:04.992098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:04.992098 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:04.992098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:04.992098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:04.992098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.992098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:04.992098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:04.992098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0390 d3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:04.992098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:04.992098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:04.992098 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:04.992098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.002100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.002100 LLDP, length 82 [|LLDP] 18:27:05.002100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.002100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.002100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0398 750e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.002100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.002100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.002100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.002100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.002100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.002100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.002100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.002101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.002101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.002101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.012104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.012104 LLDP, length 82 [|LLDP] 18:27:05.012104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.012104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.012104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03a0 162e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.012104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.012104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.012105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.012105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.012105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.012105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.012105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.012105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.012105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.012105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.022100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.022100 LLDP, length 82 [|LLDP] 18:27:05.022100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.022100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.022100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.022100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.022100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.022100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.022100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.022100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.022100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03a7 b74e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.022100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.022100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.022100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.022100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.032100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.032100 LLDP, length 82 [|LLDP] 18:27:05.032100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.032100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.032101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03af 586e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.032101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.032101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.032101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.032101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.032101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.032101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.032101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.032101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.032101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.032101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.042102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.042102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.042102 LLDP, length 82 [|LLDP] 18:27:05.042102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.042102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.042102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03b6 f98e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.042102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.042102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.042102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.042103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.042103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.042103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.042103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.042103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.042103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.052102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.052102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.052102 LLDP, length 82 [|LLDP] 18:27:05.052102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.052102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.052102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03be 9aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.052102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.052102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.052102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.052102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.052102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.052102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.052103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.052103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.052103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.062100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.062101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.062101 LLDP, length 82 [|LLDP] 18:27:05.062101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.062101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.062101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03c6 3bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.062101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.062101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.062101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.062101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.062101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.062101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.062101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.062101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.062101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.072112 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.072112 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.072112 LLDP, length 82 [|LLDP] 18:27:05.072112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.072112 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.072112 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.072112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.072112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.072112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.072112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.072112 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03cd dcee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.072112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.072112 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.072113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.072113 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.082104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.082104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.082104 LLDP, length 82 [|LLDP] 18:27:05.082104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.082104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.082104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03d5 7e0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.082104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.082104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.082105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.082105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.082105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.082105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.082105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.082105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.082105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.092119 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.092119 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.092119 LLDP, length 82 [|LLDP] 18:27:05.092119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.092119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.092119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03dd 1f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.092119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.092119 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.092119 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.092119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.092119 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.092119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.092119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.092119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.092120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.102120 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.102120 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.102121 LLDP, length 82 [|LLDP] 18:27:05.102121 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.102121 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.102121 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.102121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.102121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.102121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.102121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.102121 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03e4 c04e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.102121 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.102121 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.102121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.102121 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.112104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.112104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.112104 LLDP, length 82 [|LLDP] 18:27:05.112104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.112104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.112104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03ec 616e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.112104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.112104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.112104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.112105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.112105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.112105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.112105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.112105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.112105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.122109 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.122109 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.122109 LLDP, length 82 [|LLDP] 18:27:05.122109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.122109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.122109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03f4 028e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.122109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.122109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.122110 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.122110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.122110 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.122110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.122110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.122110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.122110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.132101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.132101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.132101 LLDP, length 82 [|LLDP] 18:27:05.132101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.132101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.132102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03fb a3ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.132102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.132102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.132102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.132102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.132102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.132102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.132102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.132102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.132102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.142103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.142103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.142104 LLDP, length 82 [|LLDP] 18:27:05.142104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.142104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.142104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0403 44ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.142104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.142104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.142104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.142104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.142104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.142104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.142104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.142104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.142104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.152099 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.152099 LLDP, length 82 [|LLDP] 18:27:05.152099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.152099 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.152100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.152100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.152100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.152100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.152100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.152100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.152100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 040a e5ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.152100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.152100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.152100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.152100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.162100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.162100 LLDP, length 82 [|LLDP] 18:27:05.162100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.162100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.162100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0412 870e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.162100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.162100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.162100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.162100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.162100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.162100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.162100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.162100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.162100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.162101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.172099 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.172100 LLDP, length 82 [|LLDP] 18:27:05.172100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.172100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.172100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 041a 282e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.172100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.172100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.172100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.172100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.172100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.172100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.172100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.172100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.172100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.172100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.182098 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.182098 LLDP, length 82 [|LLDP] 18:27:05.182098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.182098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.182098 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.182099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.182099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.182099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.182099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.182099 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.182099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0421 c94e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.182099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.182099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.182099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.182099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.192098 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.192098 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.192098 LLDP, length 82 [|LLDP] 18:27:05.192098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.192098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.192098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0429 6a6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.192098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.192098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.192098 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.192098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.192098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.192098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.192098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.192098 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.192099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.202097 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.202097 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.202097 LLDP, length 82 [|LLDP] 18:27:05.202097 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.202097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.202097 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0431 0b8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.202097 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.202097 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.202097 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.202097 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.202098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.202098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.202098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.202098 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.202098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.212101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.212101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.212101 LLDP, length 82 [|LLDP] 18:27:05.212101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.212101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.212101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0438 acae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.212101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.212102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.212102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.212102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.212102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.212102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.212102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.212102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.212102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.222100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.222100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.222100 LLDP, length 82 [|LLDP] 18:27:05.222100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.222100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.222100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0440 4dce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.222100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.222100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.222100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.222100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.222100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.222100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.222101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.222101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.222101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.232098 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.232098 LLDP, length 82 [|LLDP] 18:27:05.232098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.232098 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.232098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.232098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.232098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.232098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.232098 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.232098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.232098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0447 eeee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.232098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.232098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.232098 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.232099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.242107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.242107 LLDP, length 82 [|LLDP] 18:27:05.242107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.242107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.242108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 044f 900e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.242108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.242108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.242108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.242108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.242108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.242108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.242108 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.242108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.242108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.242108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.252102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.252102 LLDP, length 82 [|LLDP] 18:27:05.252102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.252102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.252103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0457 312e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.252103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.252103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.252103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.252103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.252103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.252103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.252103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.252103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.252103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.252103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.262103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.262103 LLDP, length 82 [|LLDP] 18:27:05.262103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.262103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.262103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.262103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.262104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.262104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.262104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.262104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.262104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 045e d24e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.262104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.262104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.262104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.262104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.272116 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.272116 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.272116 LLDP, length 82 [|LLDP] 18:27:05.272116 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.272116 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.272116 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0466 736e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.272116 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.272116 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.272116 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.272116 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.272116 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.272116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.272116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.272117 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.272117 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.282104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.282104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.282104 LLDP, length 82 [|LLDP] 18:27:05.282104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.282104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.282104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 046e 148e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.282104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.282104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.282105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.282105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.282105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.282105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.282105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.282105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.282105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.292101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.292101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.292102 LLDP, length 82 [|LLDP] 18:27:05.292102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.292102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.292102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0475 b5ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.292102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.292102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.292102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.292102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.292102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.292102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.292102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.292102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.292102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.302100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.302101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.302101 LLDP, length 82 [|LLDP] 18:27:05.302101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.302101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.302101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 047d 56ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.302101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.302101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.302101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.302101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.302101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.302101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.302101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.302101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.302101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.312100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.312100 LLDP, length 82 [|LLDP] 18:27:05.312100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.312100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.312100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.312100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.312100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.312100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.312100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.312101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.312101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0484 f7ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.312101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.312101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.312101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.312101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.322106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.322106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.322106 LLDP, length 82 [|LLDP] 18:27:05.322106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.322106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.322106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 048c 990e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.322106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.322106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.322106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.322106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.322107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.322107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.322107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.322107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.322107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.332103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.332103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.332103 LLDP, length 82 [|LLDP] 18:27:05.332103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.332103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.332104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0494 3a2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.332104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.332104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.332104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.332104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.332104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.332104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.332104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.332104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.332104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.342103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.342103 LLDP, length 82 [|LLDP] 18:27:05.342103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.342103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.342103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.342103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.342103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.342103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.342103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.342103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.342103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 049b db4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.342103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.342104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.342104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.342104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.352119 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.352119 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.352119 LLDP, length 82 [|LLDP] 18:27:05.352119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.352119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.352119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04a3 7c6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.352119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.352119 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.352119 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.352120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.352120 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.352120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.352120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.352120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.352120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.362105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.362105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.362105 LLDP, length 82 [|LLDP] 18:27:05.362105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.362105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.362105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04ab 1d8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.362105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.362105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.362105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.362105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.362106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.362106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.362106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.362106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.362106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.372101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.372101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.372101 LLDP, length 82 [|LLDP] 18:27:05.372101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.372101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.372101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04b2 beae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.372101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.372101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.372101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.372101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.372102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.372102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.372102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.372102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.372102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.382099 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.382100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.382100 LLDP, length 82 [|LLDP] 18:27:05.382100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.382100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.382100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04ba 5fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.382100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.382100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.382100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.382100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.382100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.382100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.382100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.382100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.382100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.392105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.392105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.392106 LLDP, length 82 [|LLDP] 18:27:05.392106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.392106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.392106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.392106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.392106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.392106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.392106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.392106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04c2 00ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.392106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.392106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.392106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.392106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.402107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.402107 LLDP, length 82 [|LLDP] 18:27:05.402108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.402108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.402108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04c9 a20e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.402108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.402108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.402108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.402108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.402108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.402108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.402108 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.402108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.402108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.402108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.412102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.412102 LLDP, length 82 [|LLDP] 18:27:05.412102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.412102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.412102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04d1 432e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.412102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.412102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.412102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.412102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.412103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.412103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.412103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.412103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.412103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.412103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.422098 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.422098 LLDP, length 82 [|LLDP] 18:27:05.422098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.422098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.422099 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.422099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.422099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.422099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.422099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.422099 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.422099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04d8 e44e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.422099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.422099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.422099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.422099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.432100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.432100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.432101 LLDP, length 82 [|LLDP] 18:27:05.432101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.432101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.432101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04e0 856e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.432101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.432101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.432101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.432101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.432101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.432101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.432101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.432101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.432101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.442102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.442102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.442102 LLDP, length 82 [|LLDP] 18:27:05.442102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.442102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.442102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04e8 268e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.442102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.442102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.442102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.442102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.442102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.442102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.442102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.442102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.442103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.452106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.452106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.452106 LLDP, length 82 [|LLDP] 18:27:05.452106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.452106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.452106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04ef c7ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.452106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.452106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.452106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.452107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.452107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.452107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.452107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.452107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.452107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.462105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.462105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.462105 LLDP, length 82 [|LLDP] 18:27:05.462105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.462106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.462106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04f7 68ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.462106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.462106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.462106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.462106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.462106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.462106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.462106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.462106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.462106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.472098 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.472098 LLDP, length 82 [|LLDP] 18:27:05.472098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.472098 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.472098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.472098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.472098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.472098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.472098 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.472098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.472099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04ff 09ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.472099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.472099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.472099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.472099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.482101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.482101 LLDP, length 82 [|LLDP] 18:27:05.482101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.482101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.482102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0506 ab0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.482102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.482102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.482102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.482102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.482102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.482102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.482102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.482102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.482102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.482102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.492102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.492102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.492102 LLDP, length 82 [|LLDP] 18:27:05.492102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.492102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.492102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 050e 4c2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.492103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.492103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.492103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.492103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.492103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.492103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.492103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.492103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.492103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.502101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.502101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.502101 LLDP, length 82 [|LLDP] 18:27:05.502101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.502101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.502101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.502101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.502101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.502102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.502102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.502102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0515 ed4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.502102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.502102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.502102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.502102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.512105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.512105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.512106 LLDP, length 82 [|LLDP] 18:27:05.512106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.512106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.512106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 051d 8e6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.512106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.512106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.512106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.512106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.512106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.512106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.512106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.512106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.512106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.522106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.522106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.522107 LLDP, length 82 [|LLDP] 18:27:05.522107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.522107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.522107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0525 2f8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.522107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.522107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.522107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.522107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.522107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.522107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.522107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.522107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.522107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.532101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.532102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.532102 LLDP, length 82 [|LLDP] 18:27:05.532102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.532102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.532102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 052c d0ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.532102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.532102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.532102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.532102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.532102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.532102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.532102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.532102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.532102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.542101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.542101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.542101 LLDP, length 82 [|LLDP] 18:27:05.542101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.542101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.542101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0534 71ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.542101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.542101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.542101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.542102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.542102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.542102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.542102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.542102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.542102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.552099 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.552099 LLDP, length 82 [|LLDP] 18:27:05.552099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.552099 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.552099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.552100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.552100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.552100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.552100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.552100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.552100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 053c 12ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.552100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.552100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.552100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.552100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.562097 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.562097 LLDP, length 82 [|LLDP] 18:27:05.562097 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.562097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.562097 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0543 b40e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.562097 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.562098 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.562098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.562098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.562098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.562098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.562098 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.562098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.562098 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.562098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.572102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.572102 LLDP, length 82 [|LLDP] 18:27:05.572102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.572102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.572102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 054b 552e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.572102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.572102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.572102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.572102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.572102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.572102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.572103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.572103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.572103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.572103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.582107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.582107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.582107 LLDP, length 82 [|LLDP] 18:27:05.582107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.582107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.582107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.582107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.582107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.582107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.582107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.582107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0552 f64e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.582108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.582108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.582108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.582108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.592100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.592100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.592100 LLDP, length 82 [|LLDP] 18:27:05.592100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.592100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.592100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 055a 976e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.592100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.592100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.592100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.592100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.592100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.592100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.592100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.592101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.592101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.602100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.602100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.602100 LLDP, length 82 [|LLDP] 18:27:05.602100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.602100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.602100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0562 388e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.602100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.602101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.602101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.602101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.602101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.602101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.602101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.602101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.602101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.612100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.612100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.612100 LLDP, length 82 [|LLDP] 18:27:05.612100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.612100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.612100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0569 d9ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.612100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.612100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.612100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.612101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.612101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.612101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.612101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.612101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.612101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.622098 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.622098 LLDP, length 82 [|LLDP] 18:27:05.622098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.622098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.622098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0571 7ace 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.622098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.622098 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.622099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.622099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.622099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.622099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.622099 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.622099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.622099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.622099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.632099 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.632099 LLDP, length 82 [|LLDP] 18:27:05.632099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.632099 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.632099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.632100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.632100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.632100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.632100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.632100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.632100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0579 1bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.632100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.632100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.632100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.632100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.642099 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.642099 LLDP, length 82 [|LLDP] 18:27:05.642099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.642099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.642099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0580 bd0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.642099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.642099 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.642100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.642100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.642100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.642100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.642100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.642100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.642100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.642100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.652097 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.652097 LLDP, length 82 [|LLDP] 18:27:05.652097 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.652097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.652097 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0588 5e2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.652097 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.652098 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.652098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.652098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.652098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.652098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.652098 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.652098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.652098 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.652098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.662105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.662105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.662105 LLDP, length 82 [|LLDP] 18:27:05.662105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.662105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.662105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.662105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.662105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.662106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.662106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.662106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 058f ff4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.662106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.662106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.662106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.662106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.672107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.672107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.672107 LLDP, length 82 [|LLDP] 18:27:05.672107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.672108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.672108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0597 a06e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.672108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.672108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.672108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.672108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.672108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.672108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.672108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.672108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.672108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.682103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.682103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.682103 LLDP, length 82 [|LLDP] 18:27:05.682103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.682103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.682104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 059f 418e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.682104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.682104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.682104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.682104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.682104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.682104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.682104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.682104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.682104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.692101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.692101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.692101 LLDP, length 82 [|LLDP] 18:27:05.692101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.692101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.692101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05a6 e2ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.692101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.692102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.692102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.692102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.692102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.692102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.692102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.692102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.692102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.702100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.702100 LLDP, length 82 [|LLDP] 18:27:05.702100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.702100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.702100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05ae 83ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.702100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.702100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.702100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.702100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.702100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.702100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.702101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.702101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.702101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.702101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.712098 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.712098 LLDP, length 82 [|LLDP] 18:27:05.712099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.712099 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.712099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.712099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.712099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.712099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.712099 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.712099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.712099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05b6 24ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.712099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.712099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.712099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.712099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.722099 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.722099 LLDP, length 82 [|LLDP] 18:27:05.722099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.722099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.722099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05bd c60e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.722099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.722099 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.722099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.722099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.722099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.722099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.722099 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.722100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.722100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.722100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.732101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.732101 LLDP, length 82 [|LLDP] 18:27:05.732101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.732101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.732101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05c5 672e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.732101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.732101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.732101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.732102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.732102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.732102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.732102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.732102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.732102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.732102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.742097 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.742097 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.742097 LLDP, length 82 [|LLDP] 18:27:05.742097 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.742097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.742098 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.742098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.742098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.742098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.742098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.742098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05cd 084e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.742098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.742098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.742098 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.742098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.752118 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.752118 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.752119 LLDP, length 82 [|LLDP] 18:27:05.752119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.752119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.752119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05d4 a96e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.752119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.752119 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.752119 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.752119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.752119 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.752119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.752119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.752119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.752119 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.762099 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.762099 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.762099 LLDP, length 82 [|LLDP] 18:27:05.762099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.762100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.762100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05dc 4a8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.762100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.762100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.762100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.762100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.762100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.762100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.762100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.762100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.762100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.772100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.772100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.772100 LLDP, length 82 [|LLDP] 18:27:05.772100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.772100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.772100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05e3 ebae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.772100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.772100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.772100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.772101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.772101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.772101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.772101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.772101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.772101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.782100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.782100 LLDP, length 82 [|LLDP] 18:27:05.782100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.782100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.782101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05eb 8cce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.782101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.782101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.782101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.782101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.782101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.782101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.782101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.782101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.782101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.782101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.792106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.792106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.792106 LLDP, length 82 [|LLDP] 18:27:05.792106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.792106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.792106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.792106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.792106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.792106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.792106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.792106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05f3 2dee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.792107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.792107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.792107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.792107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.802107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.802107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.802107 LLDP, length 82 [|LLDP] 18:27:05.802107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.802107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.802107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05fa cf0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.802107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.802107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.802107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.802107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.802107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.802107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.802107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.802107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.802108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.812103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.812103 LLDP, length 82 [|LLDP] 18:27:05.812103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.812103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.812103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0602 702e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.812103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.812103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.812103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.812103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.812103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.812103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.812103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.812104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.812104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.812104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.822104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.822104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.822104 LLDP, length 82 [|LLDP] 18:27:05.822104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.822104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.822104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.822104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.822105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.822105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.822105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.822105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 060a 114e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.822105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.822105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.822105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.822105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.832102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.832102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.832102 LLDP, length 82 [|LLDP] 18:27:05.832102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.832102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.832102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0611 b26e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.832102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.832102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.832102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.832102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.832102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.832102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.832102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.832102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.832103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.842100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.842100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.842100 LLDP, length 82 [|LLDP] 18:27:05.842100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.842100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.842101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0619 538e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.842101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.842101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.842101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.842101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.842101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.842101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.842101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.842101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.842101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.852104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.852104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.852104 LLDP, length 82 [|LLDP] 18:27:05.852104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.852104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.852104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0620 f4ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.852104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.852104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.852104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.852104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.852104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.852104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.852105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.852105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.852105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.862106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.862106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.862106 LLDP, length 82 [|LLDP] 18:27:05.862106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.862106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.862106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0628 95ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.862106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.862106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.862106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.862106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.862106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.862106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.862106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.862107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.862107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.872108 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.872108 LLDP, length 82 [|LLDP] 18:27:05.872108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.872108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.872108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.872108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.872108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.872108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.872108 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.872108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.872109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0630 36ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.872109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.872109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.872109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.872109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.882103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.882103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.882103 LLDP, length 82 [|LLDP] 18:27:05.882103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.882103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.882103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0637 d80e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.882103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.882103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.882103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.882104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.882104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.882104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.882104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.882104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.882104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.892120 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.892120 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.892120 LLDP, length 82 [|LLDP] 18:27:05.892120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.892120 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.892120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 063f 792e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.892120 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.892120 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.892120 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.892120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.892120 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.892120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.892120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.892121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.892121 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.902138 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.902138 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.902138 LLDP, length 82 [|LLDP] 18:27:05.902138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.902138 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.902138 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.902138 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.902138 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.902138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.902138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.902139 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0647 1a4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.902139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.902139 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.902139 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.902139 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.912123 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.912123 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.912123 LLDP, length 82 [|LLDP] 18:27:05.912123 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.912123 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.912123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 064e bb6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.912123 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.912123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.912123 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.912123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.912123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.912123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.912123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.912124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.912124 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.922123 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.922123 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.922123 LLDP, length 82 [|LLDP] 18:27:05.922124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.922124 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.922124 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0656 5c8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.922124 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.922124 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.922124 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.922124 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.922124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.922124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.922124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.922124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.922124 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.932120 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.932120 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.932120 LLDP, length 82 [|LLDP] 18:27:05.932120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.932120 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.932120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 065d fdae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.932120 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.932120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.932121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.932121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.932121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.932121 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.932121 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.932121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.932121 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.942103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.942103 LLDP, length 82 [|LLDP] 18:27:05.942103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.942103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.942103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0665 9ece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.942104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.942104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.942104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.942104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.942104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.942104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.942104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.942104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.942104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.942104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.952109 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.952109 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.952109 LLDP, length 82 [|LLDP] 18:27:05.952109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.952109 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.952109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.952109 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.952109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.952109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.952110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.952110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 066d 3fee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.952110 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.952110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.952110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.952110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.962101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.962102 LLDP, length 82 [|LLDP] 18:27:05.962102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.962102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.962102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0674 e10e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.962102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.962102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.962102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.962102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.962102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.962102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.962102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.962102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.962102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.962102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.972102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.972102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.972102 LLDP, length 82 [|LLDP] 18:27:05.972102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.972102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.972102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 067c 822e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.972102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.972102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.972103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.972103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.972103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.972103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.972103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.972103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.972103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.982103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.982103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.982103 LLDP, length 82 [|LLDP] 18:27:05.982103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.982103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.982103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.982103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.982103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.982103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.982103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.982103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0684 234e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.982104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.982104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.982104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.982104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:05.992106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.992106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:05.992106 LLDP, length 82 [|LLDP] 18:27:05.992106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:05.992106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:05.992106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 068b c46e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:05.992106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:05.992107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:05.992107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:05.992107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:05.992107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:05.992107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.992107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:05.992107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:05.992107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.002101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.002101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.002101 LLDP, length 82 [|LLDP] 18:27:06.002101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.002101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.002101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0693 658e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.002102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.002102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.002102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.002102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.002102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.002102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.002102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.002102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.002102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.012105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.012105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.012105 LLDP, length 82 [|LLDP] 18:27:06.012105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.012105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.012105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 069b 06ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.012105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.012105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.012105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.012105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.012105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.012105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.012105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.012105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.012106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.022103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.022103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.022103 LLDP, length 82 [|LLDP] 18:27:06.022103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.022103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.022103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06a2 a7ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.022103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.022103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.022103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.022103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.022103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.022104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.022104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.022104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.022104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.032101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.032101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.032101 LLDP, length 82 [|LLDP] 18:27:06.032101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.032102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.032102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.032102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.032102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.032102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.032102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.032102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06aa 48ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.032102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.032102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.032102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.032102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.042100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.042100 LLDP, length 82 [|LLDP] 18:27:06.042100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.042100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.042100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06b1 ea0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.042100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.042100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.042100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.042100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.042100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.042100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.042100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.042100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.042100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.042101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.052099 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.052099 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.052099 LLDP, length 82 [|LLDP] 18:27:06.052099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.052099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.052099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06b9 8b2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.052099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.052099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.052100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.052100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.052100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.052100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.052100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.052100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.052100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.062106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.062106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.062107 LLDP, length 82 [|LLDP] 18:27:06.062107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.062107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.062107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.062107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.062107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.062107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.062107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.062107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06c1 2c4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.062107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.062107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.062107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.062107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.072105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.072105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.072105 LLDP, length 82 [|LLDP] 18:27:06.072105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.072105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.072105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06c8 cd6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.072105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.072106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.072106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.072106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.072106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.072106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.072106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.072106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.072106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.082105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.082105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.082105 LLDP, length 82 [|LLDP] 18:27:06.082106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.082106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.082106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06d0 6e8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.082106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.082106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.082106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.082106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.082106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.082106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.082106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.082106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.082106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.092108 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.092108 LLDP, length 82 [|LLDP] 18:27:06.092108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.092108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.092108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06d8 0fae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.092108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.092108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.092108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.092109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.092109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.092109 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.092109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.092109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.092109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.092109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.102104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.102104 LLDP, length 82 [|LLDP] 18:27:06.102104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.102105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.102105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06df b0ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.102105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.102105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.102105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.102105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.102105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.102105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.102105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.102105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.102105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.102105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.112103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.112103 LLDP, length 82 [|LLDP] 18:27:06.112103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.112104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.112104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.112104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.112104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.112104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.112104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.112104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.112104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06e7 51ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.112104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.112104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.112104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.112104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.122099 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.122100 LLDP, length 82 [|LLDP] 18:27:06.122100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.122100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.122100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06ee f30e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.122100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.122100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.122100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.122100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.122100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.122100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.122100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.122100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.122100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.122100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.132107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.132107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.132107 LLDP, length 82 [|LLDP] 18:27:06.132107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.132108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.132108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06f6 942e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.132108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.132108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.132108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.132108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.132108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.132108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.132108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.132108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.132108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.142107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.142107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.142107 LLDP, length 82 [|LLDP] 18:27:06.142107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.142107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.142107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.142108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.142108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.142108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.142108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.142108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06fe 354e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.142108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.142108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.142108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.142108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.152102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.152102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.152102 LLDP, length 82 [|LLDP] 18:27:06.152102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.152102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.152102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0705 d66e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.152102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.152102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.152102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.152102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.152102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.152103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.152103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.152103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.152103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.162100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.162101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.162101 LLDP, length 82 [|LLDP] 18:27:06.162101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.162101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.162101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 070d 778e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.162101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.162101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.162101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.162101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.162101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.162101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.162101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.162101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.162101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.172106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.172106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.172106 LLDP, length 82 [|LLDP] 18:27:06.172107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.172107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.172107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0715 18ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.172107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.172107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.172107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.172107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.172107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.172107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.172107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.172107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.172107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.182105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.182105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.182105 LLDP, length 82 [|LLDP] 18:27:06.182105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.182105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.182105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 071c b9ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.182105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.182105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.182105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.182105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.182105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.182105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.182106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.182106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.182106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.192102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.192102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.192102 LLDP, length 82 [|LLDP] 18:27:06.192102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.192102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.192102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.192102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.192102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.192102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.192102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.192102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0724 5aee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.192102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.192103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.192103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.192103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.202103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.202103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.202103 LLDP, length 82 [|LLDP] 18:27:06.202103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.202103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.202103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 072b fc0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.202103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.202103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.202103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.202104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.202104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.202104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.202104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.202104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.202104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.212102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.212102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.212102 LLDP, length 82 [|LLDP] 18:27:06.212102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.212103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.212103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0733 9d2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.212103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.212103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.212103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.212103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.212103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.212103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.212103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.212103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.212103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.222117 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.222117 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.222117 LLDP, length 82 [|LLDP] 18:27:06.222117 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.222117 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.222117 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.222117 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.222117 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.222117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.222117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.222117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 073b 3e4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.222117 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.222117 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.222117 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.222118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.232111 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.232111 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.232111 LLDP, length 82 [|LLDP] 18:27:06.232111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.232111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.232111 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0742 df6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.232112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.232112 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.232112 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.232112 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.232112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.232112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.232112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.232112 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.232112 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.242106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.242106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.242106 LLDP, length 82 [|LLDP] 18:27:06.242106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.242106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.242106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 074a 808e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.242106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.242106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.242106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.242106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.242106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.242106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.242107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.242107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.242107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.252102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.252102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.252102 LLDP, length 82 [|LLDP] 18:27:06.252102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.252102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.252102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0752 21ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.252102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.252102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.252102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.252103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.252103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.252103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.252103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.252103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.252103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.262102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.262102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.262102 LLDP, length 82 [|LLDP] 18:27:06.262102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.262102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.262102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0759 c2ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.262102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.262102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.262102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.262102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.262103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.262103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.262103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.262103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.262103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.272106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.272106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.272106 LLDP, length 82 [|LLDP] 18:27:06.272106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.272106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.272106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.272106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.272107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.272107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.272107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.272107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0761 63ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.272107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.272107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.272107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.272107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.282104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.282105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.282105 LLDP, length 82 [|LLDP] 18:27:06.282105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.282105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.282105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0769 050e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.282105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.282105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.282105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.282105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.282105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.282105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.282105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.282105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.282105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.292105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.292105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.292105 LLDP, length 82 [|LLDP] 18:27:06.292105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.292105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.292105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0770 a62e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.292105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.292105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.292105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.292105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.292105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.292105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.292105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.292105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.292105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.302102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.302102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.302102 LLDP, length 82 [|LLDP] 18:27:06.302102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.302102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.302102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.302102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.302102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.302103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.302103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.302103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0778 474e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.302103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.302103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.302103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.302103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.312101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.312101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.312101 LLDP, length 82 [|LLDP] 18:27:06.312101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.312102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.312102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 077f e86e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.312102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.312102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.312102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.312102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.312102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.312102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.312102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.312102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.312102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.322100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.322100 LLDP, length 82 [|LLDP] 18:27:06.322100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.322100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.322100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0787 898e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.322100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.322100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.322100 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.322100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.322100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.322101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.322101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.322101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.322101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.322101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.332101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.332101 LLDP, length 82 [|LLDP] 18:27:06.332101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.332101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.332102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 078f 2aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.332102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.332102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.332102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.332102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.332102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.332102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.332102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.332102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.332102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.332102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.342101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.342101 LLDP, length 82 [|LLDP] 18:27:06.342101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.342101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.342101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0796 cbce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.342101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.342101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.342101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.342101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.342102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.342102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.342102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.342102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.342102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.342102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.352103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.352103 LLDP, length 82 [|LLDP] 18:27:06.352103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.352103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.352103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.352103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.352103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.352103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.352103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.352103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.352103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 079e 6cee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.352103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.352104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.352104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.352104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.362104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.362104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.362104 LLDP, length 82 [|LLDP] 18:27:06.362104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.362104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.362104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07a6 0e0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.362105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.362105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.362105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.362105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.362105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.362105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.362105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.362105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.362105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.372102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.372102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.372102 LLDP, length 82 [|LLDP] 18:27:06.372102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.372102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.372102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07ad af2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.372102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.372102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.372103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.372103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.372103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.372103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.372103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.372103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.372103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.382100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.382100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.382101 LLDP, length 82 [|LLDP] 18:27:06.382101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.382101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.382101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.382101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.382101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.382101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.382101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.382101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07b5 504e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.382101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.382101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.382101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.382101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.392101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.392101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.392101 LLDP, length 82 [|LLDP] 18:27:06.392102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.392102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.392102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07bc f16e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.392102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.392102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.392102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.392102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.392102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.392102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.392102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.392102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.392102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.402100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.402100 LLDP, length 82 [|LLDP] 18:27:06.402100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.402100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.402100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07c4 928e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.402101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.402101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.402101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.402101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.402101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.402101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.402101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.402101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.402101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.402101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.412102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.412102 LLDP, length 82 [|LLDP] 18:27:06.412102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.412102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.412102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07cc 33ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.412102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.412102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.412102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.412102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.412102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.412102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.412102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.412102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.412102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.412103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.422104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.422104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.422104 LLDP, length 82 [|LLDP] 18:27:06.422104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.422104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.422104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07d3 d4ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.422104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.422104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.422105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.422105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.422105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.422105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.422105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.422105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.422105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.432108 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.432108 LLDP, length 82 [|LLDP] 18:27:06.432108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.432108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.432108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.432108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.432108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.432108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.432108 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.432108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.432108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07db 75ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.432108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.432108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.432108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.432109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.442102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.442103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.442103 LLDP, length 82 [|LLDP] 18:27:06.442103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.442103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.442103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07e3 170e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.442103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.442103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.442103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.442103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.442103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.442103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.442103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.442103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.442103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.452106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.452106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.452106 LLDP, length 82 [|LLDP] 18:27:06.452107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.452107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.452107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07ea b82e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.452107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.452107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.452107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.452107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.452107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.452107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.452107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.452107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.452107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.462106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.462106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.462106 LLDP, length 82 [|LLDP] 18:27:06.462106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.462106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.462106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.462106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.462106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.462106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.462106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.462106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07f2 594e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.462106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.462106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.462106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.462107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.472101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.472101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.472101 LLDP, length 82 [|LLDP] 18:27:06.472101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.472101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.472102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07f9 fa6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.472102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.472102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.472102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.472102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.472102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.472102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.472102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.472102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.472102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.482103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.482103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.482103 LLDP, length 82 [|LLDP] 18:27:06.482103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.482103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.482103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0801 9b8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.482103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.482103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.482103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.482103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.482103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.482104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.482104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.482104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.482104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.492101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.492101 LLDP, length 82 [|LLDP] 18:27:06.492101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.492101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.492101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0809 3cae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.492101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.492101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.492101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.492102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.492102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.492102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.492102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.492102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.492102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.492102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.502102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.502102 LLDP, length 82 [|LLDP] 18:27:06.502102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.502102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.502103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0810 ddce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.502103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.502103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.502103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.502103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.502103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.502103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.502103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.502103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.502103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.502103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.512105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.512105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.512105 LLDP, length 82 [|LLDP] 18:27:06.512105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.512105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.512105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.512105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.512105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.512106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.512106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.512106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0818 7eee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.512106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.512106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.512106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.512106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.522103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.522104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.522104 LLDP, length 82 [|LLDP] 18:27:06.522104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.522104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.522104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0820 200e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.522104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.522104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.522104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.522104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.522104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.522104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.522104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.522104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.522104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.532101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.532101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.532101 LLDP, length 82 [|LLDP] 18:27:06.532101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.532101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.532101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0827 c12e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.532101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.532102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.532102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.532102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.532102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.532102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.532102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.532102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.532102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.542108 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.542108 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.542108 LLDP, length 82 [|LLDP] 18:27:06.542108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.542108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.542108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.542108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.542108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.542108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.542108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.542108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 082f 624e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.542108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.542108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.542109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.542109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.552102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.552102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.552102 LLDP, length 82 [|LLDP] 18:27:06.552102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.552102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.552102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0837 036e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.552102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.552102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.552102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.552102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.552102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.552102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.552103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.552103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.552103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.562099 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.562099 LLDP, length 82 [|LLDP] 18:27:06.562099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.562099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.562099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 083e a48e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.562099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.562099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.562099 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.562100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.562100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.562100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.562100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.562100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.562100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.562100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.572105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.572105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.572105 LLDP, length 82 [|LLDP] 18:27:06.572105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.572105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.572105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0846 45ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.572105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.572105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.572105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.572106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.572106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.572106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.572106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.572106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.572106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.582101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.582101 LLDP, length 82 [|LLDP] 18:27:06.582101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.582101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.582101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 084d e6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.582101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.582101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.582102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.582102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.582102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.582102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.582102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.582102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.582102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.582102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.592101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.592101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.592101 LLDP, length 82 [|LLDP] 18:27:06.592101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.592101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.592101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.592101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.592101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.592101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.592102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.592102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0855 87ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.592102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.592102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.592102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.592102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.602106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.602106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.602106 LLDP, length 82 [|LLDP] 18:27:06.602106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.602106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.602106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 085d 290e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.602106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.602106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.602106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.602106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.602106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.602106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.602106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.602106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.602107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.612101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.612101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.612101 LLDP, length 82 [|LLDP] 18:27:06.612101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.612101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.612101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0864 ca2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.612101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.612101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.612102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.612102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.612102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.612102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.612102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.612102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.612102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.622101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.622101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.622102 LLDP, length 82 [|LLDP] 18:27:06.622102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.622102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.622102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.622102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.622102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.622102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.622102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.622102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 086c 6b4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.622102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.622102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.622102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.622102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.632112 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.632112 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.632113 LLDP, length 82 [|LLDP] 18:27:06.632113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.632113 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.632113 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0874 0c6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.632113 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.632113 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.632113 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.632113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.632113 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.632113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.632113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.632113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.632113 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.642101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.642101 LLDP, length 82 [|LLDP] 18:27:06.642101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.642101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.642101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 087b ad8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.642101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.642101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.642101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.642101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.642101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.642101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.642101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.642102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.642102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.642102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.652100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.652100 LLDP, length 82 [|LLDP] 18:27:06.652101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.652101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.652101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0883 4eae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.652101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.652101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.652101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.652101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.652101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.652101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.652101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.652101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.652101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.652101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.662101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.662101 LLDP, length 82 [|LLDP] 18:27:06.662101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.662101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.662101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 088a efce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.662101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.662101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.662101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.662101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.662101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.662102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.662102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.662102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.662102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.662102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.672102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.672102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.672102 LLDP, length 82 [|LLDP] 18:27:06.672102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.672102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.672102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.672102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.672102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.672102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.672102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.672102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0892 90ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.672102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.672103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.672103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.672103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.682102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.682102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.682102 LLDP, length 82 [|LLDP] 18:27:06.682102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.682102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.682102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 089a 320e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.682102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.682102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.682102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.682102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.682102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.682102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.682102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.682102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.682103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.692104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.692104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.692104 LLDP, length 82 [|LLDP] 18:27:06.692105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.692105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.692105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08a1 d32e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.692105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.692105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.692105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.692105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.692105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.692105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.692105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.692105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.692105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.702102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.702102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.702102 LLDP, length 82 [|LLDP] 18:27:06.702102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.702102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.702102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.702102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.702102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.702103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.702103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.702103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08a9 744e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.702103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.702103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.702103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.702103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.712101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.712101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.712101 LLDP, length 82 [|LLDP] 18:27:06.712101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.712101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.712101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08b1 156e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.712102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.712102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.712102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.712102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.722103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.722103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.722103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.722103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.722103 LLDP, length 82 [|LLDP] 18:27:06.722104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.722104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.722104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.722104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.722104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.722104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.722104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08b8 b68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.722104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.722104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.722104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.732102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.732102 LLDP, length 82 [|LLDP] 18:27:06.732102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.732102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.732102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08c0 57ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.732102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.732102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.732102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.732102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.732102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.732102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.732103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.732103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.732103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.732103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.742106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.742106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.742106 LLDP, length 82 [|LLDP] 18:27:06.742106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.742106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.742106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08c7 f8ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.742106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.742106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.742106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.742106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.742106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.742106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.742106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.742106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.742106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.752101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.752101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.752101 LLDP, length 82 [|LLDP] 18:27:06.752101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.752101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.752101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.752101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.752101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.752102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08cf 99ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.752102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.752102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.752102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.752102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.752102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.752102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.762100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.762100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.762100 LLDP, length 82 [|LLDP] 18:27:06.762100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.762100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.762100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08d7 3b0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.762100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.762100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.762101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.762101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.762101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.762101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.762101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.762101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.762101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.772101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.772101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.772101 LLDP, length 82 [|LLDP] 18:27:06.772101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.772101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.772101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08de dc2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.772101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.772101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.772101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.772101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.772101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.772101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.772101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.772101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.772102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.782110 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.782110 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.782110 LLDP, length 82 [|LLDP] 18:27:06.782110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.782110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.782110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08e6 7d4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.782110 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.782110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.782110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.782111 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.782111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.782111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.782111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.782111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.782111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.792102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.792102 LLDP, length 82 [|LLDP] 18:27:06.792102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.792102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.792102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08ee 1e6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.792102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.792102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.792102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.792102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.792102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.792102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.792102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.792102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.792103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.792103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.802102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.802102 LLDP, length 82 [|LLDP] 18:27:06.802102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.802102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.802102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.802102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.802102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.802102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.802102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08f5 bf8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.802102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.802102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.802102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.802103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.802103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.802103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.812102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.812102 LLDP, length 82 [|LLDP] 18:27:06.812103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.812103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.812103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08fd 60ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.812103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.812103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.812103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.812103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.812103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.812103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.812103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.812103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.812103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.812103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.822101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.822101 LLDP, length 82 [|LLDP] 18:27:06.822101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.822101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.822102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0905 01ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.822102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.822102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.822102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.822102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.822102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.822102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.822102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.822102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.822102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.822102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.832102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.832102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.832102 LLDP, length 82 [|LLDP] 18:27:06.832102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.832102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.832102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.832102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.832102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.832102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 090c a2ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.832102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.832102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.832102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.832102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.832103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.832103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.842103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.842103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.842103 LLDP, length 82 [|LLDP] 18:27:06.842103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.842104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.842104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0914 440e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.842104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.842104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.842104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.842104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.842104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.842104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.842104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.842104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.842104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.852102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.852102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.852102 LLDP, length 82 [|LLDP] 18:27:06.852102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.852102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.852102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 091b e52e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.852102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.852102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.852102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.852102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.852102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.852102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.852103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.852103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.852103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.862101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.862101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.862102 LLDP, length 82 [|LLDP] 18:27:06.862102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.862102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.862102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0923 864e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.862102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.862102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.862102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.862102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.862102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.862102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.862102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.862102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.862102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.872101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.872101 LLDP, length 82 [|LLDP] 18:27:06.872101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.872101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.872101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 092b 276e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.872101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.872101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.872101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.872101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.872101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.872101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.872101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.872101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.872101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.872102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.882105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.882105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.882105 LLDP, length 82 [|LLDP] 18:27:06.882105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.882105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.882105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.882105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.882105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.882105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0932 c88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.882105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.882105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.882105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.882105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.882106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.882106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.892104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.892104 LLDP, length 82 [|LLDP] 18:27:06.892104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.892104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.892104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 093a 69ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.892104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.892104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.892104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.892104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.892104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.892104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.892104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.892104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.892105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.892105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.902105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.902105 LLDP, length 82 [|LLDP] 18:27:06.902105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.902105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.902105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0942 0ace 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.902105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.902105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.902106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.902106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.902106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.902106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.902106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.902106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.902106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.902106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.912106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.912106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.912106 LLDP, length 82 [|LLDP] 18:27:06.912106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.912106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.912106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.912106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.912106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.912106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0949 abee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.912106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.912106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.912106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.912106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.912106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.912106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.922102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.922102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.922102 LLDP, length 82 [|LLDP] 18:27:06.922102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.922102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.922102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0951 4d0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.922103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.922103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.922103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.922103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.922103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.922103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.922103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.922103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.922103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.932104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.932104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.932104 LLDP, length 82 [|LLDP] 18:27:06.932105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.932105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.932105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0958 ee2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.932105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.932105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.932105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.932105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.932105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.932105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.932105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.932105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.932105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.942105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.942105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.942105 LLDP, length 82 [|LLDP] 18:27:06.942105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.942105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.942106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0960 8f4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.942106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.942106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.942106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.942106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.942106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.942106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.942106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.942106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.942106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.952103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.952103 LLDP, length 82 [|LLDP] 18:27:06.952103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.952103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.952103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0968 306e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.952103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.952103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.952103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.952103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.952103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.952103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.952103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.952103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.952104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.952104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.962105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.962105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.962105 LLDP, length 82 [|LLDP] 18:27:06.962105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.962105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.962105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.962106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.962106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.962106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 096f d18e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.962106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.962106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.962106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.962106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.962106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.962106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.972101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.972101 LLDP, length 82 [|LLDP] 18:27:06.972101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.972102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.972102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0977 72ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.972102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.972102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.972102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.972102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.972102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.972102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.972102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.972102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.972102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.972102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.982103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.982103 LLDP, length 82 [|LLDP] 18:27:06.982103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.982103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.982103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 097f 13ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.982103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.982103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.982103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.982103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.982103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.982103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.982103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.982103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.982104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.982104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:06.992103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.992103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:06.992103 LLDP, length 82 [|LLDP] 18:27:06.992103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:06.992103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:06.992103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:06.992104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:06.992104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.992104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0986 b4ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:06.992104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:06.992104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:06.992104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:06.992104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:06.992104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:06.992104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.002102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.002103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.002103 LLDP, length 82 [|LLDP] 18:27:07.002103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.002103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.002103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 098e 560e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.002103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.002103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.002103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.002103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.002103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.002103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.002103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.002103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.002103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.012100 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.012100 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.012100 LLDP, length 82 [|LLDP] 18:27:07.012100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.012100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.012101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0995 f72e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.012101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.012101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.012101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.012101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.012101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.012101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.012101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.012101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.012101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.022104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.022104 LLDP, length 82 [|LLDP] 18:27:07.022104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.022104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.022104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 099d 984e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.022104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.022104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.022105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.022105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.022105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.022105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.022105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.022105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.022105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.022105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.032102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.032102 LLDP, length 82 [|LLDP] 18:27:07.032102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.032102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.032102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09a5 396e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.032102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.032102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.032102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.032102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.032102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.032102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.032102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.032102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.032102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.032102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.042102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.042103 LLDP, length 82 [|LLDP] 18:27:07.042103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.042103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.042103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.042103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.042103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.042103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.042103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09ac da8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.042103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.042103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.042103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.042103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.042103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.042103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.052103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.052103 LLDP, length 82 [|LLDP] 18:27:07.052104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.052104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.052104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09b4 7bae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.052104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.052104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.052104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.052104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.052104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.052104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.052104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.052104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.052104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.052104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.062106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.062106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.062106 LLDP, length 82 [|LLDP] 18:27:07.062106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.062106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.062106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09bc 1cce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.062106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.062106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.062106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.062106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.062106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.062106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.062106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.062106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.062107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.072101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.072102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.072102 LLDP, length 82 [|LLDP] 18:27:07.072102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.072102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.072102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.072102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.072102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.072102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09c3 bdee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.072102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.072102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.072102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.072102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.072102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.072102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.082120 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.082120 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.082120 LLDP, length 82 [|LLDP] 18:27:07.082120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.082120 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.082120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09cb 5f0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.082120 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.082120 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.082120 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.082120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.082120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.082120 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.082120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.082120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.082121 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.092106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.092106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.092106 LLDP, length 82 [|LLDP] 18:27:07.092106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.092106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.092106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09d3 002e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.092106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.092106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.092106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.092106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.092106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.092106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.092106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.092106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.092107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.102108 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.102108 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.102108 LLDP, length 82 [|LLDP] 18:27:07.102109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.102109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.102109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09da a14e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.102109 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.102109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.102109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.102109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.102109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.102109 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.102109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.102109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.102109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.112105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.112105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.112105 LLDP, length 82 [|LLDP] 18:27:07.112105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.112105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.112106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09e2 426e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.112106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.112106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.112106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.112106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.112106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.112106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.112106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.112106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.112106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.122103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.122103 LLDP, length 82 [|LLDP] 18:27:07.122103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.122103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.122103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.122103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.122103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.122103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.122103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09e9 e38e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.122103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.122104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.122104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.122104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.122104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.122104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.132104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.132104 LLDP, length 82 [|LLDP] 18:27:07.132104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.132104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.132104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09f1 84ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.132104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.132104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.132104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.132104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.132104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.132104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.132104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.132104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.132104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.132104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.142103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.142103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.142103 LLDP, length 82 [|LLDP] 18:27:07.142103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.142103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.142103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09f9 25ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.142103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.142103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.142103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.142103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.142103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.142103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.142103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.142104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.142104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.152102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.152103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.152103 LLDP, length 82 [|LLDP] 18:27:07.152103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.152103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.152103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.152103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.152103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.152103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a00 c6ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.152103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.152103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.152103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.152103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.152103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.152103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.162105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.162105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.162105 LLDP, length 82 [|LLDP] 18:27:07.162105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.162105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.162105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a08 680e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.162105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.162105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.162105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.162105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.162105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.162105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.162106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.162106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.162106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.172104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.172104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.172104 LLDP, length 82 [|LLDP] 18:27:07.172105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.172105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.172105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a10 092e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.172105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.172105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.172105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.172105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.172105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.172105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.172105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.172105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.172105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.182103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.182103 LLDP, length 82 [|LLDP] 18:27:07.182103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.182103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.182103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a17 aa4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.182103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.182103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.182103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.182103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.182103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.182104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.182104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.182104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.182104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.182104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.192104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.192104 LLDP, length 82 [|LLDP] 18:27:07.192104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.192104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.192104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a1f 4b6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.192104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.192104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.192104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.192104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.192104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.192104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.192104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.192105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.192105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.192105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.202105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.202106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.202106 LLDP, length 82 [|LLDP] 18:27:07.202106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.202106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.202106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.202106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.202106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.202106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a26 ec8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.202106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.202106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.202106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.202106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.202106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.202106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.212104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.212104 LLDP, length 82 [|LLDP] 18:27:07.212104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.212104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.212104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a2e 8dae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.212104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.212104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.212104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.212104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.212104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.212105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.212105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.212105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.212105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.212105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.222103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.222103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.222103 LLDP, length 82 [|LLDP] 18:27:07.222103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.222103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.222103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a36 2ece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.222103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.222103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.222103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.222104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.222104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.222104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.222104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.222104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.222104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.232103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.232103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.232103 LLDP, length 82 [|LLDP] 18:27:07.232103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.232103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.232103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.232104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.232104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.232104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a3d cfee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.232104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.232104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.232104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.232104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.232104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.232104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.242103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.242103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.242103 LLDP, length 82 [|LLDP] 18:27:07.242103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.242103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.242103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a45 710e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.242103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.242104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.242104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.242104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.242104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.242104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.242104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.242104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.242104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.252105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.252105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.252105 LLDP, length 82 [|LLDP] 18:27:07.252105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.252105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.252105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a4d 122e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.252105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.252105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.252105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.252105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.252106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.252106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.252106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.252106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.252106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.262109 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.262109 LLDP, length 82 [|LLDP] 18:27:07.262109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.262109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.262109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a54 b34e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.262109 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.262109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.262109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.262109 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.262109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.262109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.262109 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.262110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.262110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.262110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.272114 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.272114 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.272114 LLDP, length 82 [|LLDP] 18:27:07.272114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.272114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.272114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a5c 546e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.272114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.272114 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.272114 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.272114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.272114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.272114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.272114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.272115 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.272115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.282107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.282107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.282107 LLDP, length 82 [|LLDP] 18:27:07.282107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.282107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.282107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.282108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.282108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.282108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a63 f58e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.282108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.282108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.282108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.282108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.282108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.282108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.292105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.292105 LLDP, length 82 [|LLDP] 18:27:07.292105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.292105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.292105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a6b 96ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.292105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.292105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.292105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.292105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.292105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.292105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.292105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.292105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.292105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.292105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.302115 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.302115 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.302115 LLDP, length 82 [|LLDP] 18:27:07.302115 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.302115 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.302115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a73 37ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.302115 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.302115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.302116 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.302116 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.302116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.302116 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.302116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.302116 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.302116 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.312102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.312102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.312102 LLDP, length 82 [|LLDP] 18:27:07.312102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.312102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.312102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.312102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.312102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.312102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a7a d8ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.312102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.312103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.312103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.312103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.312103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.312103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.322103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.322103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.322103 LLDP, length 82 [|LLDP] 18:27:07.322103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.322104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.322104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a82 7a0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.322104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.322104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.322104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.322104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.322104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.322104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.322104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.322104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.322104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.332102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.332102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.332102 LLDP, length 82 [|LLDP] 18:27:07.332102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.332102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.332103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a8a 1b2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.332103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.332103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.332103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.332103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.332103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.332103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.332103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.332103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.332103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.342102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.342102 LLDP, length 82 [|LLDP] 18:27:07.342102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.342102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.342102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a91 bc4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.342102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.342102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.342103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.342103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.342103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.342103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.342103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.342103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.342103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.342103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.352103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.352103 LLDP, length 82 [|LLDP] 18:27:07.352103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.352103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.352103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a99 5d6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.352104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.352104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.352104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.352104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.352104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.352104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.352104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.352104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.352104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.352104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.362108 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.362108 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.362108 LLDP, length 82 [|LLDP] 18:27:07.362108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.362108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.362108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.362108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.362108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.362108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aa0 fe8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.362108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.362108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.362108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.362108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.362109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.362109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.372104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.372104 LLDP, length 82 [|LLDP] 18:27:07.372104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.372104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.372104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aa8 9fae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.372104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.372105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.372105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.372105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.372105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.372105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.372105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.372105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.372105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.372105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.382104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.382104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.382104 LLDP, length 82 [|LLDP] 18:27:07.382104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.382104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.382104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ab0 40ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.382104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.382104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.382104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.382104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.382104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.382105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.382105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.382105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.382105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.392104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.392104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.392104 LLDP, length 82 [|LLDP] 18:27:07.392104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.392104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.392104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.392104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.392104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.392105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ab7 e1ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.392105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.392105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.392105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.392105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.392105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.392105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.402103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.402103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.402103 LLDP, length 82 [|LLDP] 18:27:07.402103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.402103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.402104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0abf 830e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.402104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.402104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.402104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.402104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.402104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.402104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.402104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.402104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.402104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.412104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.412104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.412104 LLDP, length 82 [|LLDP] 18:27:07.412104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.412104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.412104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ac7 242e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.412104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.412104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.412104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.412104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.412104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.412105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.412105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.412105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.412105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.422103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.422103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.422103 LLDP, length 82 [|LLDP] 18:27:07.422103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.422103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.422103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ace c54e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.422103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.422103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.422103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.422103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.422103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.422104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.422104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.422104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.422104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.432103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.432103 LLDP, length 82 [|LLDP] 18:27:07.432103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.432103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.432103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ad6 666e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.432103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.432103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.432103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.432103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.432103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.432103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.432103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.432103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.432104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.432104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.442106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.442106 LLDP, length 82 [|LLDP] 18:27:07.442106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.442106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.442106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.442106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.442106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.442106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.442106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ade 078e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.442106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.442106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.442106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.442106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.442106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.442107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.452105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.452105 LLDP, length 82 [|LLDP] 18:27:07.452105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.452105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.452105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ae5 a8ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.452105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.452105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.452105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.452105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.452105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.452105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.452105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.452105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.452106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.452106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.462105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.462105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.462105 LLDP, length 82 [|LLDP] 18:27:07.462105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.462105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.462105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aed 49ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.462105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.462105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.462105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.462105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.462105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.462105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.462105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.462105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.462106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.472103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.472103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.472103 LLDP, length 82 [|LLDP] 18:27:07.472103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.472103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.472103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.472103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.472103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.472103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0af4 eaee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.472103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.472104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.472104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.472104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.472104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.472104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.482105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.482105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.482105 LLDP, length 82 [|LLDP] 18:27:07.482105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.482105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.482105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0afc 8c0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.482105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.482105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.482105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.482105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.482105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.482106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.482106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.482106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.482106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.492106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.492106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.492106 LLDP, length 82 [|LLDP] 18:27:07.492106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.492106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.492106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b04 2d2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.492106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.492106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.492107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.492107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.492107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.492107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.492107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.492107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.492107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.502103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.502103 LLDP, length 82 [|LLDP] 18:27:07.502103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.502103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.502103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b0b ce4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.502103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.502103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.502103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.502103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.502103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.502104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.502104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.502104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.502104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.502104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.512105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.512105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.512105 LLDP, length 82 [|LLDP] 18:27:07.512105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.512105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.512105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b13 6f6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.512105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.512105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.512105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.512105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.512105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.512105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.512105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.512105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.512106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.522104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.522104 LLDP, length 82 [|LLDP] 18:27:07.522104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.522104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.522104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.522104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.522104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.522104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.522104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b1b 108e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.522104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.522104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.522104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.522104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.522104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.522105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.532104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.532104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.532104 LLDP, length 82 [|LLDP] 18:27:07.532104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.532104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.532104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b22 b1ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.532104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.532104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.532105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.532105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.532105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.532105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.532105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.532105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.532105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.542102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.542102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.542102 LLDP, length 82 [|LLDP] 18:27:07.542102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.542102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.542102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b2a 52ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.542102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.542102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.542102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.542102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.542102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.542102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.542102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.542103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.542103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.552108 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.552108 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.552108 LLDP, length 82 [|LLDP] 18:27:07.552108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.552108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.552108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.552108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.552108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.552108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b31 f3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.552108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.552108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.552108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.552108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.552108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.552108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.562102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.562102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.562102 LLDP, length 82 [|LLDP] 18:27:07.562102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.562102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.562102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b39 950e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.562102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.562102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.562102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.562102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.562102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.562103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.562103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.562103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.562103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.572103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.572103 LLDP, length 82 [|LLDP] 18:27:07.572103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.572103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.572103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b41 362e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.572103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.572103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.572103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.572103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.572103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.572103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.572103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.572103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.572103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.572104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.582104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.582104 LLDP, length 82 [|LLDP] 18:27:07.582104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.582104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.582104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b48 d74e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.582104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.582104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.582104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.582104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.582104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.582104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.582104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.582105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.582105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.582105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.592103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.592103 LLDP, length 82 [|LLDP] 18:27:07.592103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.592103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.592103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b50 786e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.592103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.592103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.592104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.592104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.592104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.592104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.592104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.592104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.592104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.592104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.602104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.602104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.602104 LLDP, length 82 [|LLDP] 18:27:07.602104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.602104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.602104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.602104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.602104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.602105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b58 198e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.602105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.602105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.602105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.602105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.602105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.602105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.612104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.612104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.612104 LLDP, length 82 [|LLDP] 18:27:07.612104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.612104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.612104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b5f baae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.612105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.612105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.612105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.612105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.612105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.612105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.612105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.612105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.612105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.622102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.622102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.622102 LLDP, length 82 [|LLDP] 18:27:07.622102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.622102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.622102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b67 5bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.622102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.622102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.622102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.622102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.622103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.622103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.622103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.622103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.622103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.632101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.632101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.632101 LLDP, length 82 [|LLDP] 18:27:07.632101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.632102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.632102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.632102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.632102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.632102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b6e fcee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.632102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.632102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.632102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.632102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.632102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.632102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.642104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.642104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.642104 LLDP, length 82 [|LLDP] 18:27:07.642104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.642104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.642105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b76 9e0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.642105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.642105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.642105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.642105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.642105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.642105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.642105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.642105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.642105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.652104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.652104 LLDP, length 82 [|LLDP] 18:27:07.652104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.652104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.652104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b7e 3f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.652104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.652104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.652105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.652105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.652105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.652105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.652105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.652105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.652105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.652105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.662102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.662102 LLDP, length 82 [|LLDP] 18:27:07.662102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.662102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.662103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b85 e04e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.662103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.662103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.662103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.662103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.662103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.662103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.662103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.662103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.662103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.662103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.672102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.672103 LLDP, length 82 [|LLDP] 18:27:07.672103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.672103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.672103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b8d 816e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.672103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.672103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.672103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.672103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.672103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.672103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.672103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.672103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.672103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.672104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.682103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.682103 LLDP, length 82 [|LLDP] 18:27:07.682103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.682103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.682103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.682103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.682103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.682103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.682103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b95 228e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.682103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.682103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.682103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.682103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.682103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.682104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.692104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.692104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.692104 LLDP, length 82 [|LLDP] 18:27:07.692104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.692104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.692105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b9c c3ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.692105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.692105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.692105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.692105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.692105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.692105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.692105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.692105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.692105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.702104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.702104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.702104 LLDP, length 82 [|LLDP] 18:27:07.702104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.702104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.702105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ba4 64ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.702105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.702105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.702105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.702105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.702105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.702105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.702105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.702105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.702105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.712101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.712102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.712102 LLDP, length 82 [|LLDP] 18:27:07.712102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.712102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.712102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.712102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.712102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.712102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bac 05ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.712102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.712102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.712102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.712102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.712102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.712102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.722108 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.722108 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.722108 LLDP, length 82 [|LLDP] 18:27:07.722108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.722108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.722108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bb3 a70e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.722108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.722108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.722108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.722108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.722108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.722109 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.722109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.722109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.722109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.732105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.732105 LLDP, length 82 [|LLDP] 18:27:07.732105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.732105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.732105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bbb 482e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.732105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.732105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.732105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.732105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.732105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.732106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.732106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.732106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.732106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.732106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.742113 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.742113 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.742114 LLDP, length 82 [|LLDP] 18:27:07.742114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.742114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.742114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bc2 e94e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.742114 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.742114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.742114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.742114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.742114 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.742114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.742114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.742114 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.742114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.752104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.752104 LLDP, length 82 [|LLDP] 18:27:07.752105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.752105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.752105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bca 8a6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.752105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.752105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.752105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.752105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.752105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.752105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.752105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.752105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.752105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.752105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.762107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.762107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.762107 LLDP, length 82 [|LLDP] 18:27:07.762107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.762107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.762108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.762108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.762108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.762108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bd2 2b8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.762108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.762108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.762108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.762108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.762108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.762108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.772103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.772103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.772103 LLDP, length 82 [|LLDP] 18:27:07.772103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.772103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.772103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bd9 ccae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.772103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.772103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.772103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.772103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.772104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.772104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.772104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.772104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.772104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.782103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.782103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.782103 LLDP, length 82 [|LLDP] 18:27:07.782103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.782103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.782103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0be1 6dce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.782103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.782103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.782103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.782103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.782103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.782103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.782103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.782104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.782104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.792104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.792104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.792104 LLDP, length 82 [|LLDP] 18:27:07.792104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.792104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.792104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.792104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.792104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.792104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0be9 0eee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.792104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.792104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.792105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.792105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.792105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.792105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.802104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.802104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.802104 LLDP, length 82 [|LLDP] 18:27:07.802104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.802104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.802104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bf0 b00e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.802104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.802104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.802104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.802104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.802104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.802104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.802105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.802105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.802105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.812104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.812104 LLDP, length 82 [|LLDP] 18:27:07.812104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.812104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.812104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bf8 512e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.812104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.812104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.812104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.812104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.812104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.812104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.812105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.812105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.812105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.812105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.822105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.822105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.822105 LLDP, length 82 [|LLDP] 18:27:07.822105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.822105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.822105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bff f24e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.822106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.822106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.822106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.822106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.822106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.822106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.822106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.822106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.822106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.832104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.832104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.832104 LLDP, length 82 [|LLDP] 18:27:07.832104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.832105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.832105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c07 936e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.832105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.832105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.832105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.832105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.832105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.832105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.832105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.832105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.832105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.842101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.842101 LLDP, length 82 [|LLDP] 18:27:07.842101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.842101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.842101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.842101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.842102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.842102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.842102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c0f 348e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.842102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.842102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.842102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.842102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.842102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.842102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.852106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.852106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.852106 LLDP, length 82 [|LLDP] 18:27:07.852106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.852106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.852106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c16 d5ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.852106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.852106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.852106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.852106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.852106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.852106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.852106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.852107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.852107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.862103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.862103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.862103 LLDP, length 82 [|LLDP] 18:27:07.862103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.862103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.862103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c1e 76ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.862103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.862103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.862103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.862103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.862103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.862103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.862104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.862104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.862104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.872102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.872102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.872102 LLDP, length 82 [|LLDP] 18:27:07.872102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.872102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.872102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.872102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.872102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.872102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c26 17ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.872102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.872102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.872103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.872103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.872103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.872103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.882106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.882106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.882107 LLDP, length 82 [|LLDP] 18:27:07.882107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.882107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.882107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c2d b90e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.882107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.882107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.882107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.882107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.882107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.882107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.882107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.882107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.882107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.892107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.892107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.892107 LLDP, length 82 [|LLDP] 18:27:07.892107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.892107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.892107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c35 5a2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.892107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.892107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.892107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.892107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.892108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.892108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.892108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.892108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.892108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.902104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.902104 LLDP, length 82 [|LLDP] 18:27:07.902104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.902104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.902104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c3c fb4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.902104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.902104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.902104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.902104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.902104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.902104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.902104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.902105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.902105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.902105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.912107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.912107 LLDP, length 82 [|LLDP] 18:27:07.912107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.912108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.912108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c44 9c6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.912108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.912108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.912108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.912108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.912108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.912108 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.912108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.912108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.912108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.912108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.922105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.922105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.922106 LLDP, length 82 [|LLDP] 18:27:07.922106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.922106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.922106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.922106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.922106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.922106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c4c 3d8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.922106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.922106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.922106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.922106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.922106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.922106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.932104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.932104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.932104 LLDP, length 82 [|LLDP] 18:27:07.932104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.932104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.932104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c53 deae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.932105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.932105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.932105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.932105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.932105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.932105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.932105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.932105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.932105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.942120 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.942120 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.942121 LLDP, length 82 [|LLDP] 18:27:07.942121 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.942121 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.942121 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c5b 7fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.942121 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.942121 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.942121 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.942121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.942121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.942121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.942121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.942121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.942121 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.952109 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.952109 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.952110 LLDP, length 82 [|LLDP] 18:27:07.952110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.952110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.952110 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.952110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.952110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.952110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c63 20ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.952110 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.952110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.952110 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.952110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.952110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.952110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.962106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.962106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.962106 LLDP, length 82 [|LLDP] 18:27:07.962106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.962106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.962106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c6a c20e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.962106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.962106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.962106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.962106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.962106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.962106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.962106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.962106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.962107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.972104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.972104 LLDP, length 82 [|LLDP] 18:27:07.972104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.972104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.972105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c72 632e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.972105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.972105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.972105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.972105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.972105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.972105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.972105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.972105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.972105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.972105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.982102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.982102 LLDP, length 82 [|LLDP] 18:27:07.982102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.982102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.982102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c7a 044e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.982102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.982102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.982103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.982103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.982103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.982103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.982103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.982103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.982103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.982103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:07.992105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.992105 LLDP, length 82 [|LLDP] 18:27:07.992105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:07.992106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:07.992106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c81 a56e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:07.992106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:07.992106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:07.992106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:07.992106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:07.992106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.992106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:07.992106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:07.992106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:07.992106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:07.992106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.002104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.002104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.002104 LLDP, length 82 [|LLDP] 18:27:08.002104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.002104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.002104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.002104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.002104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.002104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c89 468e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.002104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.002104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.002104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.002104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.002105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.002105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.012103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.012103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.012103 LLDP, length 82 [|LLDP] 18:27:08.012103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.012103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.012104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c90 e7ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.012104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.012104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.012104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.012104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.012104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.012104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.012104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.012104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.012104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.022106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.022106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.022106 LLDP, length 82 [|LLDP] 18:27:08.022106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.022106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.022106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c98 88ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.022106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.022106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.022106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.022107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.022107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.022107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.022107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.022107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.022107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.032105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.032105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.032105 LLDP, length 82 [|LLDP] 18:27:08.032105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.032105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.032105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.032105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.032105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.032105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ca0 29ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.032105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.032105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.032105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.032106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.032106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.032106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.042104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.042104 LLDP, length 82 [|LLDP] 18:27:08.042104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.042104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.042105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ca7 cb0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.042105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.042105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.042105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.042105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.042105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.042105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.042105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.042105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.042105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.042105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.052103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.052103 LLDP, length 82 [|LLDP] 18:27:08.052103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.052104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.052104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0caf 6c2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.052104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.052104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.052104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.052104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.052104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.052104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.052104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.052104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.052104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.052104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.062103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.062103 LLDP, length 82 [|LLDP] 18:27:08.062103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.062103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.062103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cb7 0d4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.062103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.062103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.062103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.062103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.062103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.062104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.062104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.062104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.062104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.062104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.072105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.072106 LLDP, length 82 [|LLDP] 18:27:08.072106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.072106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.072106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cbe ae6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.072106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.072106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.072106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.072106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.072106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.072106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.072106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.072106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.072106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.072106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.082102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.082102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.082102 LLDP, length 82 [|LLDP] 18:27:08.082102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.082102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.082102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.082103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.082103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.082103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cc6 4f8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.082103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.082103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.082103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.082103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.082103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.082103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.092119 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.092119 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.092119 LLDP, length 82 [|LLDP] 18:27:08.092119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.092119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.092119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ccd f0ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.092119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.092119 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.092119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.092119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.092119 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.092119 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.092119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.092119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.092120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.102114 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.102114 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.102114 LLDP, length 82 [|LLDP] 18:27:08.102114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.102114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.102114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cd5 91ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.102114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.102114 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.102114 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.102114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.102114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.102115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.102115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.102115 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.102115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.112111 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.112111 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.112111 LLDP, length 82 [|LLDP] 18:27:08.112111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.112111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.112111 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.112111 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.112111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.112111 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cdd 32ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.112111 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.112111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.112111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.112111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.112112 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.112112 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.122107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.122107 LLDP, length 82 [|LLDP] 18:27:08.122107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.122107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.122107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ce4 d40e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.122107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.122107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.122107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.122107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.122107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.122107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.122107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.122107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.122107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.122108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.132105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.132105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.132105 LLDP, length 82 [|LLDP] 18:27:08.132105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.132105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.132105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cec 752e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.132105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.132105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.132105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.132105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.132106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.132106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.132106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.132106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.132106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.142122 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.142122 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.142122 LLDP, length 82 [|LLDP] 18:27:08.142122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.142123 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.142123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cf4 164e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.142123 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.142123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.142123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.142123 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.142123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.142123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.142123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.142123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.142123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.152142 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.152142 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.152142 LLDP, length 82 [|LLDP] 18:27:08.152143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.152143 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.152143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cfb b76e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.152143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.152143 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.152143 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.152143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.152143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.152143 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.152143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.152143 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.152143 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.162129 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.162129 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.162129 LLDP, length 82 [|LLDP] 18:27:08.162129 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.162129 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.162129 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.162129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.162129 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.162129 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d03 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.162129 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.162129 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.162129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.162129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.162129 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.162130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.172107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.172107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.172107 LLDP, length 82 [|LLDP] 18:27:08.172107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.172107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.172107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d0a f9ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.172107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.172107 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.172107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.172107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.172107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.172107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.172108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.172108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.172108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.182107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.182107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.182107 LLDP, length 82 [|LLDP] 18:27:08.182107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.182107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.182107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d12 9ace 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.182107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.182107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.182108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.182108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.182108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.182108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.182108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.182108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.182108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.192105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.192105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.192105 LLDP, length 82 [|LLDP] 18:27:08.192106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.192106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.192106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.192106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.192106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.192106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d1a 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.192106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.192106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.192106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.192106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.192106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.192106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.202105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.202106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.202106 LLDP, length 82 [|LLDP] 18:27:08.202106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.202106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.202106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d21 dd0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.202106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.202106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.202106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.202106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.202106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.202106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.202106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.202106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.202106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.212104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.212104 LLDP, length 82 [|LLDP] 18:27:08.212104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.212104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.212104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d29 7e2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.212104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.212105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.212105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.212105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.212105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.212105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.212105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.212105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.212105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.212105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.222106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.222106 LLDP, length 82 [|LLDP] 18:27:08.222106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.222106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.222106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d31 1f4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.222106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.222106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.222106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.222106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.222106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.222107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.222107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.222107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.222107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.222107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.232104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.232104 LLDP, length 82 [|LLDP] 18:27:08.232104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.232104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.232104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d38 c06e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.232104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.232104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.232105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.232105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.232105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.232105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.232105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.232105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.232105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.232105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.242103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.242103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.242104 LLDP, length 82 [|LLDP] 18:27:08.242104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.242104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.242104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.242104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.242104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.242104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d40 618e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.242104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.242104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.242104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.242104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.242104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.242104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.252104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.252104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.252104 LLDP, length 82 [|LLDP] 18:27:08.252104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.252104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.252104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d48 02ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.252104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.252104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.252104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.252105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.252105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.252105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.252105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.252105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.252105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.262104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.262104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.262105 LLDP, length 82 [|LLDP] 18:27:08.262105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.262105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.262105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d4f a3ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.262105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.262105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.262105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.262105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.262105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.262105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.262105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.262105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.262105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.272113 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.272113 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.272113 LLDP, length 82 [|LLDP] 18:27:08.272113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.272113 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.272113 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.272113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.272114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.272114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d57 44ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.272114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.272114 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.272114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.272114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.272114 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.272114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.282105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.282106 LLDP, length 82 [|LLDP] 18:27:08.282106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.282106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.282106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d5e e60e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.282106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.282106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.282106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.282106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.282106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.282106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.282106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.282106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.282106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.282106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.292104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.292104 LLDP, length 82 [|LLDP] 18:27:08.292104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.292104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.292104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d66 872e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.292105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.292105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.292105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.292105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.292105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.292105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.292105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.292105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.292105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.292105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.302103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.302103 LLDP, length 82 [|LLDP] 18:27:08.302103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.302103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.302103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d6e 284e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.302103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.302103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.302103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.302104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.302104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.302104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.302104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.302104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.302104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.302104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.312105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.312105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.312105 LLDP, length 82 [|LLDP] 18:27:08.312105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.312105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.312105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d75 c96e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.312105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.312105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.312105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.312105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.312105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.312106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.312106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.312106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.312106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.322103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.322103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.322103 LLDP, length 82 [|LLDP] 18:27:08.322103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.322103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.322103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.322104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.322104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.322104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d7d 6a8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.322104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.322104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.322104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.322104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.322104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.322104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.332105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.332105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.332105 LLDP, length 82 [|LLDP] 18:27:08.332105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.332105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.332105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d85 0bae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.332105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.332105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.332105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.332105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.332105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.332105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.332106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.332106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.332106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.342103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.342103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.342103 LLDP, length 82 [|LLDP] 18:27:08.342103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.342103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.342103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d8c acce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.342104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.342104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.342104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.342104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.342104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.342104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.342104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.342104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.342104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.352103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.352103 LLDP, length 82 [|LLDP] 18:27:08.352104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.352104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.352104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.352104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.352104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.352104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.352104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d94 4dee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.352104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.352104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.352104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.352104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.352104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.352104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.362104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.362104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.362104 LLDP, length 82 [|LLDP] 18:27:08.362104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.362104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.362104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d9b ef0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.362104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.362104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.362104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.362104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.362105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.362105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.362105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.362105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.362105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.372104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.372104 LLDP, length 82 [|LLDP] 18:27:08.372104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.372104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.372104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0da3 902e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.372104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.372104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.372104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.372104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.372104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.372104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.372104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.372104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.372104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.372105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.382104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.382104 LLDP, length 82 [|LLDP] 18:27:08.382104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.382104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.382104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dab 314e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.382104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.382104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.382104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.382104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.382104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.382104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.382104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.382104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.382104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.382105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.392103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.392103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.392104 LLDP, length 82 [|LLDP] 18:27:08.392104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.392104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.392104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0db2 d26e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.392104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.392104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.392104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.392104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.392104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.392104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.392104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.392104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.392104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.402104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.402104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.402104 LLDP, length 82 [|LLDP] 18:27:08.402104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.402104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.402104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.402104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.402104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.402104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dba 738e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.402104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.402105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.402105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.402105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.402105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.402105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.412105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.412105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.412106 LLDP, length 82 [|LLDP] 18:27:08.412106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.412106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.412106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dc2 14ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.412106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.412106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.412106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.412106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.412106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.412106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.412106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.412106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.412106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.422102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.422102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.422102 LLDP, length 82 [|LLDP] 18:27:08.422102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.422102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.422103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dc9 b5ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.422103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.422103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.422103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.422103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.422103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.422103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.422103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.422103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.422103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.432105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.432105 LLDP, length 82 [|LLDP] 18:27:08.432105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.432106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.432106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.432106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.432106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.432106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.432106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dd1 56ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.432106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.432106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.432106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.432106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.432106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.432106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.442105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.442105 LLDP, length 82 [|LLDP] 18:27:08.442105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.442105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.442106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dd8 f80e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.442106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.442106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.442106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.442106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.442106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.442106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.442106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.442106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.442106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.442106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.452105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.452105 LLDP, length 82 [|LLDP] 18:27:08.452105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.452105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.452105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0de0 992e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.452105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.452105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.452105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.452105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.452105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.452105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.452105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.452105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.452105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.452106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.462105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.462105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.462105 LLDP, length 82 [|LLDP] 18:27:08.462106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.462106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.462106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0de8 3a4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.462106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.462106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.462106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.462106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.462106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.462106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.462106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.462106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.462106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.472104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.472104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.472104 LLDP, length 82 [|LLDP] 18:27:08.472104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.472104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.472105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0def db6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.472105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.472105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.472105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.472105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.472105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.472105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.472105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.472105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.472105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.482103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.482103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.482103 LLDP, length 82 [|LLDP] 18:27:08.482103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.482103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.482104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.482104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.482104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.482104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0df7 7c8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.482104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.482104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.482104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.482104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.482104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.482104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.492106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.492106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.492106 LLDP, length 82 [|LLDP] 18:27:08.492106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.492106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.492106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dff 1dae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.492106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.492106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.492106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.492106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.492106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.492106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.492106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.492107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.492107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.502103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.502103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.502103 LLDP, length 82 [|LLDP] 18:27:08.502103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.502103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.502103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e06 bece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.502103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.502103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.502103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.502103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.502103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.502104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.502104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.502104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.502104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.512104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.512104 LLDP, length 82 [|LLDP] 18:27:08.512104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.512104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.512104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.512104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.512105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.512105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.512105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e0e 5fee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.512105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.512105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.512105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.512105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.512105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.512105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.522103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.522103 LLDP, length 82 [|LLDP] 18:27:08.522103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.522103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.522104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e16 010e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.522104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.522104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.522104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.522104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.522104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.522104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.522104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.522104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.522104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.522104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.532104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.532104 LLDP, length 82 [|LLDP] 18:27:08.532104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.532104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.532104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e1d a22e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.532104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.532104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.532104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.532104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.532104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.532104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.532104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.532105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.532105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.532105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.542104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.542104 LLDP, length 82 [|LLDP] 18:27:08.542104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.542104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.542104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e25 434e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.542104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.542104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.542104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.542104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.542105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.542105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.542105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.542105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.542105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.542105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.552104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.552104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.552104 LLDP, length 82 [|LLDP] 18:27:08.552104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.552104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.552104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e2c e46e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.552104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.552104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.552104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.552104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.552104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.552104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.552105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.552105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.552105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.562102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.562102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.562102 LLDP, length 82 [|LLDP] 18:27:08.562102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.562102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.562102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.562102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.562102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.562102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e34 858e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.562102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.562103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.562103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.562103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.562103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.562103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.572104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.572104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.572104 LLDP, length 82 [|LLDP] 18:27:08.572104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.572104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.572104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e3c 26ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.572104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.572104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.572104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.572104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.572105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.572105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.572105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.572105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.572105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.582105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.582105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.582105 LLDP, length 82 [|LLDP] 18:27:08.582105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.582105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.582106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e43 c7ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.582106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.582106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.582106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.582106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.582106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.582106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.582106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.582106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.582106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.592104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.592104 LLDP, length 82 [|LLDP] 18:27:08.592104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.592104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.592104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.592104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.592104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.592104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.592104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e4b 68ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.592104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.592104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.592105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.592105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.592105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.592105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.602105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.602106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.602106 LLDP, length 82 [|LLDP] 18:27:08.602106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.602106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.602106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e53 0a0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.602106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.602106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.602106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.602106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.602106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.602106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.602106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.602106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.602106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.612103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.612103 LLDP, length 82 [|LLDP] 18:27:08.612104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.612104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.612104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e5a ab2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.612104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.612104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.612104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.612104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.612104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.612104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.612104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.612104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.612104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.612104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.622104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.622104 LLDP, length 82 [|LLDP] 18:27:08.622104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.622104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.622104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e62 4c4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.622104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.622105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.622105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.622105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.622105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.622105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.622105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.622105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.622105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.622105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.632104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.632104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.632104 LLDP, length 82 [|LLDP] 18:27:08.632105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.632105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.632105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e69 ed6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.632105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.632105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.632105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.632105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.632105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.632105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.632105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.632105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.632105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.642106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.642106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.642106 LLDP, length 82 [|LLDP] 18:27:08.642106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.642106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.642106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.642106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.642106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.642106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e71 8e8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.642107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.642107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.642107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.642107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.642107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.642107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.652102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.652102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.652102 LLDP, length 82 [|LLDP] 18:27:08.652102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.652102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.652102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e79 2fae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.652103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.652103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.652103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.652103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.652103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.652103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.652103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.652103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.652103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.662102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.662102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.662103 LLDP, length 82 [|LLDP] 18:27:08.662103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.662103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.662103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e80 d0ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.662103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.662103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.662103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.662103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.662103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.662103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.662103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.662103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.662103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.672102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.672102 LLDP, length 82 [|LLDP] 18:27:08.672102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.672102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.672102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.672103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.672103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.672103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.672103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e88 71ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.672103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.672103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.672103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.672103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.672103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.672103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.682102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.682102 LLDP, length 82 [|LLDP] 18:27:08.682102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.682102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.682102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e90 130e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.682102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.682102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.682102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.682102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.682102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.682102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.682102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.682102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.682103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.682103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.692104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.692104 LLDP, length 82 [|LLDP] 18:27:08.692104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.692104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.692105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e97 b42e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.692105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.692105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.692105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.692105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.692105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.692105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.692105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.692105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.692105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.692105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.702110 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.702110 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.702110 LLDP, length 82 [|LLDP] 18:27:08.702110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.702110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.702110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e9f 554e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.702110 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.702110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.702110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.702110 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.702110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.702110 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.702110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.702110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.702111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.712105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.712105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.712105 LLDP, length 82 [|LLDP] 18:27:08.712105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.712105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.712105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ea6 f66e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.712105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.712106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.712106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.712106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.712106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.712106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.712106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.712106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.712106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.722104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.722105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.722105 LLDP, length 82 [|LLDP] 18:27:08.722105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.722105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.722105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.722105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.722105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.722105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eae 978e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.722105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.722105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.722105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.722105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.722105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.722105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.732104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.732104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.732104 LLDP, length 82 [|LLDP] 18:27:08.732104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.732104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.732104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eb6 38ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.732104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.732104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.732105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.732105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.732105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.732105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.732105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.732105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.732105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.742110 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.742110 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.742110 LLDP, length 82 [|LLDP] 18:27:08.742110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.742110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.742110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ebd d9ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.742110 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.742110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.742110 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.742110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.742110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.742110 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.742110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.742111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.742111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.752111 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.752111 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.752111 LLDP, length 82 [|LLDP] 18:27:08.752111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.752111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.752111 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.752112 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.752112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.752112 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ec5 7aee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.752112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.752112 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.752112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.752112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.752112 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.752112 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.762104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.762104 LLDP, length 82 [|LLDP] 18:27:08.762104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.762104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.762104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ecd 1c0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.762104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.762104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.762104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.762104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.762104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.762104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.762104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.762104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.762104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.762104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.772104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.772104 LLDP, length 82 [|LLDP] 18:27:08.772104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.772104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.772104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ed4 bd2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.772104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.772104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.772104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.772104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.772104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.772104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.772104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.772105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.772105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.772105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.782109 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.782109 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.782109 LLDP, length 82 [|LLDP] 18:27:08.782109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.782109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.782109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0edc 5e4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.782109 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.782109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.782109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.782109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.782109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.782109 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.782109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.782110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.782110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.792105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.792105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.792105 LLDP, length 82 [|LLDP] 18:27:08.792105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.792105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.792105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ee3 ff6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.792106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.792106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.792106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.792106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.792106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.792106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.792106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.792106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.792106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.802104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.802105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.802105 LLDP, length 82 [|LLDP] 18:27:08.802105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.802105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.802105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.802105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.802105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.802105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eeb a08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.802105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.802105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.802105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.802105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.802105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.802105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.812114 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.812114 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.812114 LLDP, length 82 [|LLDP] 18:27:08.812114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.812114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.812114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ef3 41ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.812114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.812114 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.812115 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.812115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.812115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.812115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.812115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.812115 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.812115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.822110 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.822110 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.822110 LLDP, length 82 [|LLDP] 18:27:08.822111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.822111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.822111 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0efa e2ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.822111 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.822111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.822111 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.822111 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.822111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.822111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.822111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.822111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.822111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.832104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.832104 LLDP, length 82 [|LLDP] 18:27:08.832104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.832104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.832104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.832104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.832104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.832104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.832104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f02 83ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.832105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.832105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.832105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.832105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.832105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.832105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.842102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.842103 LLDP, length 82 [|LLDP] 18:27:08.842103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.842103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.842103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f0a 250e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.842103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.842103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.842103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.842103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.842103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.842103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.842103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.842103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.842103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.842103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.852102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.852102 LLDP, length 82 [|LLDP] 18:27:08.852102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.852102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.852102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f11 c62e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.852102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.852103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.852103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.852103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.852103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.852103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.852103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.852103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.852103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.852103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.862101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.862101 LLDP, length 82 [|LLDP] 18:27:08.862101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.862101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.862101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f19 674e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.862101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.862101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.862101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.862101 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.862102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.862102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.862102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.862102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.862102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.862102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.872104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.872104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.872104 LLDP, length 82 [|LLDP] 18:27:08.872104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.872104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.872104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f21 086e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.872104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.872104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.872104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.872104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.872104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.872104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.872104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.872105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.872105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.882106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.882106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.882106 LLDP, length 82 [|LLDP] 18:27:08.882106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.882106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.882106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.882106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.882106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.882107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f28 a98e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.882107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.882107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.882107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.882107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.882107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.882107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.892104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.892104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.892104 LLDP, length 82 [|LLDP] 18:27:08.892104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.892104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.892104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f30 4aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.892104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.892104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.892104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.892105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.892105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.892105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.892105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.892105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.892105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.902114 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.902114 LLDP, length 82 [|LLDP] 18:27:08.902114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.902114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.902114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f37 ebce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.902114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.902115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.902115 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.902115 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.902115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.902115 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.902115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.902115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.902115 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.902115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.912101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.912101 LLDP, length 82 [|LLDP] 18:27:08.912101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.912101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.912101 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.912101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.912102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.912102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.912102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f3f 8cee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.912102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.912102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.912102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.912102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.912102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.912102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.922102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.922102 LLDP, length 82 [|LLDP] 18:27:08.922102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.922102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.922103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f47 2e0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.922103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.922103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.922103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.922103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.922103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.922103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.922103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.922103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.922103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.922103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.932104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.932104 LLDP, length 82 [|LLDP] 18:27:08.932104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.932104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.932105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f4e cf2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.932105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.932105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.932105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.932105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.932105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.932105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.932105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.932105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.932105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.932105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.942103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.942103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.942103 LLDP, length 82 [|LLDP] 18:27:08.942103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.942103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.942103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f56 704e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.942104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.942104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.942104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.942104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.942104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.942104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.942104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.942104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.942104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.952105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.952105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.952105 LLDP, length 82 [|LLDP] 18:27:08.952105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.952105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.952105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f5e 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.952105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.952105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.952105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.952105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.952105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.952105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.952105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.952106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.952106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.962103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.962103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.962103 LLDP, length 82 [|LLDP] 18:27:08.962103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.962103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.962103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.962103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.962103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.962103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f65 b28e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.962103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.962103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.962104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.962104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.962104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.962104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.972104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.972104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.972104 LLDP, length 82 [|LLDP] 18:27:08.972104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.972104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.972104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f6d 53ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.972104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.972104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.972104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.972104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.972104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.972105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.972105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.972105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.972105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.982104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.982104 LLDP, length 82 [|LLDP] 18:27:08.982104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.982104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.982104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f74 f4ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.982104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.982105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.982105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.982105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.982105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.982105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.982105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.982105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.982105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.982105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:08.992101 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.992101 LLDP, length 82 [|LLDP] 18:27:08.992101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:08.992102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:08.992102 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:08.992102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:08.992102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.992102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:08.992102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f7c 95ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:08.992102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:08.992102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:08.992102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:08.992102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:08.992102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:08.992102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.002103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.002103 LLDP, length 82 [|LLDP] 18:27:09.002103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.002103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.002103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f84 370e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.002103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.002103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.002103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.002104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.002104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.002104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.002104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.002104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.002104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.002104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.012104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.012104 LLDP, length 82 [|LLDP] 18:27:09.012104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.012104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.012104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f8b d82e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.012104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.012104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.012104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.012104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.012104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.012104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.012105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.012105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.012105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.012105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.022103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.022103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.022103 LLDP, length 82 [|LLDP] 18:27:09.022103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.022103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.022103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f93 794e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.022103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.022103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.022103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.022103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.022103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.022103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.022104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.022104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.022104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.032102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.032102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.032102 LLDP, length 82 [|LLDP] 18:27:09.032103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.032103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.032103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f9b 1a6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.032103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.032103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.032103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.032103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.032103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.032103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.032103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.032103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.032103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.042103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.042103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.042103 LLDP, length 82 [|LLDP] 18:27:09.042103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.042104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.042104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.042104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.042104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.042104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fa2 bb8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.042104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.042104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.042104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.042104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.042104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.042104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.052105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.052105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.052105 LLDP, length 82 [|LLDP] 18:27:09.052105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.052105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.052105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0faa 5cae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.052105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.052105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.052105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.052105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.052105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.052105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.052106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.052106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.052106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.062105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.062105 LLDP, length 82 [|LLDP] 18:27:09.062105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.062105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.062106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fb1 fdce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.062106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.062106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.062106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.062106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.062106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.062106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.062106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.062106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.062106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.062106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.072105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.072105 LLDP, length 82 [|LLDP] 18:27:09.072105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.072105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.072105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.072105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.072105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.072106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.072106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fb9 9eee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.072106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.072106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.072106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.072106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.072106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.072106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.082105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.082105 LLDP, length 82 [|LLDP] 18:27:09.082105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.082105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.082105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fc1 400e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.082105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.082105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.082105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.082105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.082105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.082105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.082105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.082105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.082106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.082106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.092105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.092105 LLDP, length 82 [|LLDP] 18:27:09.092105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.092105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.092105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fc8 e12e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.092105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.092106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.092106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.092106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.092106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.092106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.092106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.092106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.092106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.092106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.102103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.102103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.102103 LLDP, length 82 [|LLDP] 18:27:09.102103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.102103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.102104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fd0 824e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.102104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.102104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.102104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.102104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.102104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.102104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.102104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.102104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.102104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.112103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.112103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.112104 LLDP, length 82 [|LLDP] 18:27:09.112104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.112104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.112104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fd8 236e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.112104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.112104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.112104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.112104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.112104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.112104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.112104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.112104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.112104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.122104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.122104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.122104 LLDP, length 82 [|LLDP] 18:27:09.122104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.122104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.122104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.122105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.122105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.122105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fdf c48e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.122105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.122105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.122105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.122105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.122105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.122105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.132102 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.132102 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.132102 LLDP, length 82 [|LLDP] 18:27:09.132102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.132103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.132103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fe7 65ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.132103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.132103 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.132103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.132103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.132103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.132103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.132103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.132103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.132103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.142106 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.142106 LLDP, length 82 [|LLDP] 18:27:09.142106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.142106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.142106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fef 06ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.142106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.142106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.142106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.142106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.142106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.142106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.142106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.142106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.142106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.142107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.152104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.152104 LLDP, length 82 [|LLDP] 18:27:09.152104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.152105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.152105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.152105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.152105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.152105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.152105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ff6 a7ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.152105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.152105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.152105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.152105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.152105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.152105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.162103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.162103 LLDP, length 82 [|LLDP] 18:27:09.162103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.162104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.162104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ffe 490e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.162104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.162104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.162104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.162104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.162104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.162104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.162104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.162104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.162104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.162104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.172104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.172104 LLDP, length 82 [|LLDP] 18:27:09.172104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.172104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.172104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1005 ea2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.172104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.172104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.172104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.172104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.172104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.172104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.172104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.172104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.172104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.172105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.182104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.182104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.182104 LLDP, length 82 [|LLDP] 18:27:09.182104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.182104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.182104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 100d 8b4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.182104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.182105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.182105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.182105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.182105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.182105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.182105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.182105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.182105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.192103 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.192103 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.192104 LLDP, length 82 [|LLDP] 18:27:09.192104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.192104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.192104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1015 2c6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.192104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.192104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.192104 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.192104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.192104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.192104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.192104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.192104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.192104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.202105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.202105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.202105 LLDP, length 82 [|LLDP] 18:27:09.202105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.202105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.202105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.202105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.202105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.202105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 101c cd8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.202105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.202105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.202105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.202106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.202106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.202106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.212104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.212104 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.212104 LLDP, length 82 [|LLDP] 18:27:09.212104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.212104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.212104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1024 6eae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.212105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.212105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.212105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.212105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.212105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.212105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.212105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.212105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.212105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.222104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.222104 LLDP, length 82 [|LLDP] 18:27:09.222104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.222104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.222104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 102c 0fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.222105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.222105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.222105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.222105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.222105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.222105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.222105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.222105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.222105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.222105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.232104 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.232105 LLDP, length 82 [|LLDP] 18:27:09.232105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.232105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.232105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.232105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.232105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.232105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.232105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1033 b0ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.232105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.232105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.232105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.232105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.232105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.232105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.242105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.242105 LLDP, length 82 [|LLDP] 18:27:09.242105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.242105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.242105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 103b 520e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.242105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.242105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.242105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.242105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.242105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.242105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.242105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.242105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.242106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.242106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.252105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.252105 LLDP, length 82 [|LLDP] 18:27:09.252105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.252106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.252106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1042 f32e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.252106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.252106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.252106 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.252106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.252106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.252106 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.252106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.252106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.252106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.252106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.262105 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.262105 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.262105 LLDP, length 82 [|LLDP] 18:27:09.262105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.262105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.262105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 104a 944e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.262105 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.262105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.262105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.262105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.262105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.262106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.262106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.262106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.262106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.272114 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.272114 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.272114 LLDP, length 82 [|LLDP] 18:27:09.272114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.272115 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.272115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1052 356e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.272115 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.272115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.272115 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.272115 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.272115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.272115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.272115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.272115 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.272115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.282107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.282107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.282107 LLDP, length 82 [|LLDP] 18:27:09.282108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.282108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.282108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.282108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.282108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.282108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1059 d68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.282108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.282108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.282108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.282108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.282108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.282108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:27:09.292107 IP 1.1.1.2.43810 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.292107 IP 1.1.1.2.19442 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:27:09.292108 LLDP, length 82 [|LLDP] 18:27:09.292108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:27:09.292108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:27:09.292108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1061 77ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:27:09.292108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:27:09.292108 IP 192.168.1.1.13571 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:27:09.292108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:27:09.292108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.292108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:27:09.292108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:27:09.292108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:27:09.292108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:27:09.292108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 6626 packets captured 6626 packets received by filter 0 packets dropped by kernel 884 packets dropped by interface
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_bridge_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=42, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=14] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:27:17 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=42, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=42, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=16] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=42, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=42, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=42, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":74,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=42, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=42, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=20] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=42, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=42, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:27:19 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=42, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=24] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:27:19 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=42, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=42, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=42, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":74,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=42, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=42, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=42, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=28] Channel closed DEBUG agg1:Logger.py:156
Passed functional/bridging/test_bridging_bum_traffic_bridge.py::test_bridging_bum_traffic_bridge_without_rif 256.03
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_bridge_without_rif">Starting testcase:test_bridging_bum_traffic_bridge_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2193' coro=<test_bridging_bum_traffic_bridge_without_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py:173> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=42, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=43] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=43] Local address: 172.17.0.3, port 44174 INFO asyncssh:logging.py:92 [conn=43] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=43] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=43] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:27:20 PM UTC INFO asyncssh:logging.py:92 [conn=43, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=43, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=43, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=43, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=43, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=43, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=43, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip -j link show swp1 INFO asyncssh:logging.py:92 [conn=43, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=8] Command: ip -j link show swp1 INFO asyncssh:logging.py:92 [conn=43, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=8] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 15 tcpdump -i swp1 -n on agg1... INFO asyncssh:logging.py:92 [conn=43, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=9] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp1 -n INFO asyncssh:logging.py:92 [conn=43, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=10] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp1 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e867610>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 440 Rx 440 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI BridgedLLDP SIP-DIP N/A Tx 440 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI LACPDU SIP-DIP N/A Tx 440 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4ToMe SIP-DIP N/A Tx 440 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI ARP_Request_BC SIP-DIP N/A Tx 440 Rx 440 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI ARP_Reply SIP-DIP N/A Tx 440 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_Broadcast SIP-DIP N/A Tx 440 Rx 440 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPV4_SSH SIP-DIP N/A Tx 440 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPV4_Telnet SIP-DIP N/A Tx 440 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 440 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_ICMP_Request SIP-DIP N/A Tx 440 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_DCHP_BC SIP-DIP N/A Tx 440 Rx 440 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_Reserved_MC SIP-DIP N/A Tx 440 Rx 440 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 440 Rx 440 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 440 Rx 440 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_OSPFIGP SIP-DIP N/A Tx 440 Rx 440 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 440 Rx 440 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 440 Rx 440 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 440 Rx 440 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_VRRP SIP-DIP N/A Tx 440 Rx 440 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_IGMP SIP-DIP N/A Tx 440 Rx 440 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPV4_BGP SIP-DIP N/A Tx 440 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=43, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=10] Channel closed DEBUG agg1:Logger.py:156 18:31:20.314291 LLDP, length 219: localhost 18:31:21.157986 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.157986 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.157986 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.157986 LLDP, length 82 [|LLDP] 18:31:21.157986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.157986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 033c 97b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.157987 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.157987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.157987 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.157987 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.167970 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.167970 LLDP, length 82 [|LLDP] 18:31:21.167970 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.167970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0344 38d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.167970 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.167971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.167971 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.167971 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.167971 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.167971 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.177965 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.177965 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.177965 LLDP, length 82 [|LLDP] 18:31:21.177965 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.177965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 034b d9f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.177965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.177965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.177965 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.177965 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.177965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.187955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.187956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.187956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.187956 LLDP, length 82 [|LLDP] 18:31:21.187956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.187956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.187956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.187956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.187956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0353 7b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.187956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.197954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.197954 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.197954 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.197954 LLDP, length 82 [|LLDP] 18:31:21.197954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.197954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 035b 1c32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.197954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.197954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.197954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.197954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.207956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.207956 LLDP, length 82 [|LLDP] 18:31:21.207956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.207956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0362 bd52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.207956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.207956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.207956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.207956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.207956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.207957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.217953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.217953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.217953 LLDP, length 82 [|LLDP] 18:31:21.217953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.217953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 036a 5e72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.217953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.217953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.217953 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.217953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.217954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.227956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.227956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.227956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.227956 LLDP, length 82 [|LLDP] 18:31:21.227956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.227956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.227956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.227956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.227956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0371 ff92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.227956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.237960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.237960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.237960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.237961 LLDP, length 82 [|LLDP] 18:31:21.237961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.237961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0379 a0b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.237961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.237961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.237961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.237961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.247953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.247953 LLDP, length 82 [|LLDP] 18:31:21.247953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.247953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0381 41d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.247953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.247953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.247953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.247953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.247953 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.247953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.257955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.257955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.257955 LLDP, length 82 [|LLDP] 18:31:21.257955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.257955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0388 e2f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.257955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.257955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.257955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.257955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.257955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.267955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.267955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.267955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.267956 LLDP, length 82 [|LLDP] 18:31:21.267956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.267956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.267956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.267956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.267956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0390 8412 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.267956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.277962 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.277962 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.277962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.277962 LLDP, length 82 [|LLDP] 18:31:21.277962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.277962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0398 2532 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.277962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.277962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.277962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.277962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.287955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.287955 LLDP, length 82 [|LLDP] 18:31:21.287955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.287955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 039f c652 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.287955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.287955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.287955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.287955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.287955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.287955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.297959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.297960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.297960 LLDP, length 82 [|LLDP] 18:31:21.297960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.297960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03a7 6772 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.297960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.297960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.297960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.297960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.297960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.307952 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.307952 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.307952 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.307952 LLDP, length 82 [|LLDP] 18:31:21.307952 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.307953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.307953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.307953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.307953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03af 0892 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.307953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.317953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.317953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.317953 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.317953 LLDP, length 82 [|LLDP] 18:31:21.317953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.317953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03b6 a9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.317954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.317954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.317954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.317954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.327958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.327958 LLDP, length 82 [|LLDP] 18:31:21.327958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.327958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03be 4ad2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.327958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.327958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.327958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.327958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.327958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.327958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.337956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.337956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.337956 LLDP, length 82 [|LLDP] 18:31:21.337956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.337956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03c5 ebf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.337956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.337956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.337956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.337956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.337957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.347953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.347953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.347953 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.347953 LLDP, length 82 [|LLDP] 18:31:21.347953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.347953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.347953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.347953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.347953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03cd 8d12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.347953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.357953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.357953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.357953 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.357953 LLDP, length 82 [|LLDP] 18:31:21.357954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.357954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03d5 2e32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.357954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.357954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.357954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.357954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.367957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.367958 LLDP, length 82 [|LLDP] 18:31:21.367958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.367958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03dc cf52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.367958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.367958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.367958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.367958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.367958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.367958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.377963 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.377964 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.377964 LLDP, length 82 [|LLDP] 18:31:21.377964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.377964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03e4 7072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.377964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.377964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.377964 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.377964 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.377964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.387958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.387958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.387958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.387958 LLDP, length 82 [|LLDP] 18:31:21.387958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.387958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.387958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.387958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.387958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03ec 1192 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.387958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.398002 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.398002 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.398002 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.398003 LLDP, length 82 [|LLDP] 18:31:21.398003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.398003 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03f3 b2b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.398003 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.398003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.398003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.398003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.407978 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.407978 LLDP, length 82 [|LLDP] 18:31:21.407978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.407978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03fb 53d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.407978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.407979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.407979 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.407979 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.407979 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.407979 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.417963 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.417963 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.417963 LLDP, length 82 [|LLDP] 18:31:21.417963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.417963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0402 f4f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.417963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.417963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.417963 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.417963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.417963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.427965 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.427965 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.427965 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.427965 LLDP, length 82 [|LLDP] 18:31:21.427965 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.427965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.427965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.427965 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.427965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 040a 9612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.427965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.437960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.437960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.437960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.437960 LLDP, length 82 [|LLDP] 18:31:21.437960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.437960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0412 3732 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.437960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.437961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.437961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.437961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.447978 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.447978 LLDP, length 82 [|LLDP] 18:31:21.447978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.447978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0419 d852 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.447978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.447978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.447978 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.447978 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.447978 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.447978 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.457957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.457957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.457957 LLDP, length 82 [|LLDP] 18:31:21.457958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.457958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0421 7972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.457958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.457958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.457958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.457958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.457958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.467957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.467958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.467958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.467958 LLDP, length 82 [|LLDP] 18:31:21.467958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.467958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.467958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.467958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.467958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0429 1a92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.467958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.477956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.477956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.477956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.477956 LLDP, length 82 [|LLDP] 18:31:21.477956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.477956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0430 bbb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.477956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.477957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.477957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.477957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.487953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.487953 LLDP, length 82 [|LLDP] 18:31:21.487953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.487953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0438 5cd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.487953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.487953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.487953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.487953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.487954 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.487954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.497954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.497954 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.497954 LLDP, length 82 [|LLDP] 18:31:21.497955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.497955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 043f fdf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.497955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.497955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.497955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.497955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.497955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.507953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.507953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.507953 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.507953 LLDP, length 82 [|LLDP] 18:31:21.507953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.507953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.507953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.507953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.507953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0447 9f12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.507953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.517958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.517958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.517958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.517958 LLDP, length 82 [|LLDP] 18:31:21.517958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.517958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 044f 4032 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.517958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.517959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.517959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.517959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.527956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.527956 LLDP, length 82 [|LLDP] 18:31:21.527957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.527957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0456 e152 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.527957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.527957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.527957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.527957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.527957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.527957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.537956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.537956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.537956 LLDP, length 82 [|LLDP] 18:31:21.537956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.537956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 045e 8272 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.537957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.537957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.537957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.537957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.537957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.547972 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.547972 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.547972 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.547972 LLDP, length 82 [|LLDP] 18:31:21.547972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.547972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.547972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.547972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.547972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0466 2392 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.547972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.557959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.557959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.557959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.557959 LLDP, length 82 [|LLDP] 18:31:21.557959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.557959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 046d c4b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.557959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.557959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.557959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.557959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.567963 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.567963 LLDP, length 82 [|LLDP] 18:31:21.567963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.567963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0475 65d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.567963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.567963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.567964 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.567964 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.567964 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.567964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.577959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.577960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.577960 LLDP, length 82 [|LLDP] 18:31:21.577960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.577960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 047d 06f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.577960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.577960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.577960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.577960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.577960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.587957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.587957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.587957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.587957 LLDP, length 82 [|LLDP] 18:31:21.587957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.587957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.587957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.587957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.587957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0484 a812 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.587957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.597956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.597956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.597956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.597956 LLDP, length 82 [|LLDP] 18:31:21.597956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.597956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 048c 4932 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.597956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.597956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.597956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.597956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.607956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.607956 LLDP, length 82 [|LLDP] 18:31:21.607957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.607957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0493 ea52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.607957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.607957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.607957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.607957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.607957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.607957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.617954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.617954 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.617954 LLDP, length 82 [|LLDP] 18:31:21.617954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.617954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 049b 8b72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.617954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.617955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.617955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.617955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.617955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.627959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.627959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.627959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.627959 LLDP, length 82 [|LLDP] 18:31:21.627959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.627959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.627960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.627960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.627960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04a3 2c92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.627960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.637961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.637961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.637961 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.637961 LLDP, length 82 [|LLDP] 18:31:21.637961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.637961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04aa cdb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.637961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.637961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.637961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.637961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.647967 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.647967 LLDP, length 82 [|LLDP] 18:31:21.647967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.647967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04b2 6ed2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.647967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.647967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.647968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.647968 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.647968 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.647968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.657956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.657956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.657956 LLDP, length 82 [|LLDP] 18:31:21.657956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.657956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04ba 0ff2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.657956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.657956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.657957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.657957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.657957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.667956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.667956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.667956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.667956 LLDP, length 82 [|LLDP] 18:31:21.667956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.667956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.667956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.667957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.667957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04c1 b112 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.667957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.677957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.677957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.677957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.677957 LLDP, length 82 [|LLDP] 18:31:21.677957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.677957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04c9 5232 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.677957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.677957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.677957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.677957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.687956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.687956 LLDP, length 82 [|LLDP] 18:31:21.687956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.687956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04d0 f352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.687956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.687957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.687957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.687957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.687957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.687957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.697955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.697955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.697955 LLDP, length 82 [|LLDP] 18:31:21.697955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.697955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04d8 9472 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.697956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.697956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.697956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.697956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.697956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.707956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.707956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.707956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.707956 LLDP, length 82 [|LLDP] 18:31:21.707956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.707956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.707956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.707956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.707957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04e0 3592 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.707957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.717956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.717956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.717956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.717956 LLDP, length 82 [|LLDP] 18:31:21.717956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.717957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04e7 d6b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.717957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.717957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.717957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.717957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.727964 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.727964 LLDP, length 82 [|LLDP] 18:31:21.727964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.727964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04ef 77d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.727964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.727964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.727964 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.727964 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.727964 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.727964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.737957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.737957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.737957 LLDP, length 82 [|LLDP] 18:31:21.737957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.737957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04f7 18f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.737957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.737957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.737957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.737957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.737957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.747972 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.747972 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.747973 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.747973 LLDP, length 82 [|LLDP] 18:31:21.747973 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.747973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.747973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.747973 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.747973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04fe ba12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.747973 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.757955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.757955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.757955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.757955 LLDP, length 82 [|LLDP] 18:31:21.757955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.757955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0506 5b32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.757955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.757955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.757955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.757955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.767955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.767956 LLDP, length 82 [|LLDP] 18:31:21.767956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.767956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 050d fc52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.767956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.767956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.767956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.767956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.767956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.767956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.777960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.777960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.777961 LLDP, length 82 [|LLDP] 18:31:21.777961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.777961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0515 9d72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.777961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.777961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.777961 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.777961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.777961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.787958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.787958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.787958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.787958 LLDP, length 82 [|LLDP] 18:31:21.787958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.787958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.787958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.787958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.787958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 051d 3e92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.787958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.797956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.797956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.797956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.797956 LLDP, length 82 [|LLDP] 18:31:21.797956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.797956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0524 dfb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.797956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.797956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.797956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.797956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.807956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.807956 LLDP, length 82 [|LLDP] 18:31:21.807956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.807956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 052c 80d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.807957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.807957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.807957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.807957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.807957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.807957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.817957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.817957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.817957 LLDP, length 82 [|LLDP] 18:31:21.817957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.817957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0534 21f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.817957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.817957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.817957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.817957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.817957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.827958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.827958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.827959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.827959 LLDP, length 82 [|LLDP] 18:31:21.827959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.827959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.827959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.827959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.827959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 053b c312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.827959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.837957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.837957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.837957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.837957 LLDP, length 82 [|LLDP] 18:31:21.837957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.837957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0543 6432 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.837957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.837957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.837957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.837957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.847956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.847956 LLDP, length 82 [|LLDP] 18:31:21.847956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.847956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 054b 0552 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.847956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.847956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.847956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.847956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.847956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.847956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.857956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.857956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.857956 LLDP, length 82 [|LLDP] 18:31:21.857956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.857956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0552 a672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.857956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.857956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.857956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.857956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.857956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.867955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.867955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.867955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.867955 LLDP, length 82 [|LLDP] 18:31:21.867955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.867955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.867955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.867956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.867956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 055a 4792 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.867956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.877955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.877955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.877955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.877955 LLDP, length 82 [|LLDP] 18:31:21.877956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.877956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0561 e8b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.877956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.877956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.877956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.877956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.887958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.887958 LLDP, length 82 [|LLDP] 18:31:21.887958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.887958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0569 89d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.887958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.887958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.887959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.887959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.887959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.887959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.897957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.897957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.897958 LLDP, length 82 [|LLDP] 18:31:21.897958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.897958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0571 2af2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.897958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.897958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.897958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.897958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.897958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.907958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.907958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.907958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.907958 LLDP, length 82 [|LLDP] 18:31:21.907958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.907958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.907958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.907958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.907959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0578 cc12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.907959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.917960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.917960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.917960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.917960 LLDP, length 82 [|LLDP] 18:31:21.917960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.917960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0580 6d32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.917960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.917960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.917960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.917961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.927955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.927955 LLDP, length 82 [|LLDP] 18:31:21.927955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.927955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0588 0e52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.927955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.927955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.927955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.927955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.927955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.927955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.937957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.937957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.937957 LLDP, length 82 [|LLDP] 18:31:21.937957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.937958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 058f af72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.937958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.937958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.937958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.937958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.937958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.947956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.947956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.947956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.947956 LLDP, length 82 [|LLDP] 18:31:21.947956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.947956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.947956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.947956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.947956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0597 5092 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.947956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.957955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.957955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.957955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.957955 LLDP, length 82 [|LLDP] 18:31:21.957955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.957955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 059e f1b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.957955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.957955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.957955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.957955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.967958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.967958 LLDP, length 82 [|LLDP] 18:31:21.967958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.967958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05a6 92d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.967959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.967959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.967959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.967959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.967959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.967959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.977955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.977955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.977955 LLDP, length 82 [|LLDP] 18:31:21.977956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.977956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05ae 33f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.977956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.977956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.977956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.977956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.977956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.987957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.987957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.987957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.987957 LLDP, length 82 [|LLDP] 18:31:21.987957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.987957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.987957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.987957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.987957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05b5 d512 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.987957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.997956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.997957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.997957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.997957 LLDP, length 82 [|LLDP] 18:31:21.997957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.997957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05bd 7632 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.997957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.997957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.997957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.997957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.007957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.007957 LLDP, length 82 [|LLDP] 18:31:22.007957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.007957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05c5 1752 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.007957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.007957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.007957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.007957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.007957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.007957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.017958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.017958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.017958 LLDP, length 82 [|LLDP] 18:31:22.017958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.017958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05cc b872 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.017958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.017958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.017958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.017958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.017958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.027955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.027955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.027955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.027956 LLDP, length 82 [|LLDP] 18:31:22.027956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.027956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.027956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.027956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.027956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05d4 5992 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.027956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.037958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.037959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.037959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.037959 LLDP, length 82 [|LLDP] 18:31:22.037959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.037959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05db fab2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.037959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.037959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.037959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.037959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.047956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.047956 LLDP, length 82 [|LLDP] 18:31:22.047956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.047956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05e3 9bd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.047956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.047956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.047956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.047957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.047957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.047957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.057955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.057955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.057955 LLDP, length 82 [|LLDP] 18:31:22.057955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.057955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05eb 3cf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.057955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.057955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.057955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.057956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.057956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.067956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.067956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.067956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.067956 LLDP, length 82 [|LLDP] 18:31:22.067956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.067957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.067957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.067957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.067957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05f2 de12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.067957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.077956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.077956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.077956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.077956 LLDP, length 82 [|LLDP] 18:31:22.077956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.077956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05fa 7f32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.077956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.077956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.077956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.077956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.087956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.087956 LLDP, length 82 [|LLDP] 18:31:22.087957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.087957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0602 2052 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.087957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.087957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.087957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.087957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.087957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.087957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.097955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.097955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.097955 LLDP, length 82 [|LLDP] 18:31:22.097955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.097955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0609 c172 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.097955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.097955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.097956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.097956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.097956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.107957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.107957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.107957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.107957 LLDP, length 82 [|LLDP] 18:31:22.107958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.107958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.107958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.107958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.107958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0611 6292 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.107958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.117957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.117958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.117958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.117958 LLDP, length 82 [|LLDP] 18:31:22.117958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.117958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0619 03b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.117958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.117958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.117958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.117958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.127957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.127957 LLDP, length 82 [|LLDP] 18:31:22.127957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.127957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0620 a4d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.127958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.127958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.127958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.127958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.127958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.127958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.137958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.137958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.137959 LLDP, length 82 [|LLDP] 18:31:22.137959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.137959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0628 45f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.137959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.137959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.137959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.137959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.137959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.147956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.147956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.147956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.147956 LLDP, length 82 [|LLDP] 18:31:22.147956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.147956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.147956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.147956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.147956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 062f e712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.147956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.157956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.157956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.157957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.157957 LLDP, length 82 [|LLDP] 18:31:22.157957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.157957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0637 8832 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.157957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.157957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.157957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.157957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.167957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.167957 LLDP, length 82 [|LLDP] 18:31:22.167957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.167957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 063f 2952 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.167957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.167957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.167957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.167957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.167957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.167957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.177956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.177956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.177956 LLDP, length 82 [|LLDP] 18:31:22.177956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.177956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0646 ca72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.177956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.177956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.177957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.177957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.177957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.187963 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.187963 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.187963 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.187963 LLDP, length 82 [|LLDP] 18:31:22.187963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.187963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.187963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.187963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.187963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 064e 6b92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.187963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.197955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.197955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.197955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.197955 LLDP, length 82 [|LLDP] 18:31:22.197955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.197955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0656 0cb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.197955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.197956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.197956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.197956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.207958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.207958 LLDP, length 82 [|LLDP] 18:31:22.207958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.207958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 065d add2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.207958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.207958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.207958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.207958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.207959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.207959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.217957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.217957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.217957 LLDP, length 82 [|LLDP] 18:31:22.217957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.217957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0665 4ef2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.217957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.217957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.217958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.217958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.217958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.227958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.227958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.227958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.227958 LLDP, length 82 [|LLDP] 18:31:22.227959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.227959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.227959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.227959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.227959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 066c f012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.227959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.237959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.237959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.237959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.237959 LLDP, length 82 [|LLDP] 18:31:22.237959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.237959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0674 9132 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.237959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.237959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.237959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.237959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.247958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.247958 LLDP, length 82 [|LLDP] 18:31:22.247958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.247959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 067c 3252 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.247959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.247959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.247959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.247959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.247959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.247959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.257956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.257956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.257957 LLDP, length 82 [|LLDP] 18:31:22.257957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.257957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0683 d372 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.257957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.257957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.257957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.257957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.257957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.267955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.267955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.267955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.267955 LLDP, length 82 [|LLDP] 18:31:22.267955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.267955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.267955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.267955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.267955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 068b 7492 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.267956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.277956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.277957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.277957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.277957 LLDP, length 82 [|LLDP] 18:31:22.277957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.277957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0693 15b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.277957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.277957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.277957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.277957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.287959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.287959 LLDP, length 82 [|LLDP] 18:31:22.287959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.287959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 069a b6d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.287959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.287959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.287959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.287959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.287959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.287959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.297956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.297956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.297956 LLDP, length 82 [|LLDP] 18:31:22.297956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.297956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06a2 57f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.297956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.297956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.297956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.297956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.297956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.307960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.307960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.307960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.307960 LLDP, length 82 [|LLDP] 18:31:22.307960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.307961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.307961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.307961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.307961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06a9 f912 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.307961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.317955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.317956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.317956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.317956 LLDP, length 82 [|LLDP] 18:31:22.317956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.317956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06b1 9a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.317956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.317956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.317956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.317956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.327955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.327955 LLDP, length 82 [|LLDP] 18:31:22.327955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.327955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06b9 3b52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.327955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.327955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.327956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.327956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.327956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.327956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.337959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.337959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.337959 LLDP, length 82 [|LLDP] 18:31:22.337959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.337959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06c0 dc72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.337959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.337959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.337959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.337959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.337959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.347956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.347956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.347956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.347956 LLDP, length 82 [|LLDP] 18:31:22.347956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.347957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.347957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.347957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.347957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06c8 7d92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.347957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.357957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.357958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.357958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.357958 LLDP, length 82 [|LLDP] 18:31:22.357958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.357958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06d0 1eb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.357958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.357958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.357958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.357958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.367955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.367955 LLDP, length 82 [|LLDP] 18:31:22.367955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.367955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06d7 bfd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.367955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.367956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.367956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.367956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.367956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.367956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.377956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.377957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.377957 LLDP, length 82 [|LLDP] 18:31:22.377957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.377957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06df 60f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.377957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.377957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.377957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.377957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.377957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.387960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.387960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.387960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.387960 LLDP, length 82 [|LLDP] 18:31:22.387960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.387960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.387960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.387960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.387960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06e7 0212 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.387961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.397956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.397956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.397956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.397956 LLDP, length 82 [|LLDP] 18:31:22.397956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.397957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06ee a332 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.397957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.397957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.397957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.397957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.407955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.407956 LLDP, length 82 [|LLDP] 18:31:22.407956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.407956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06f6 4452 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.407956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.407956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.407956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.407956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.407956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.407956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.417957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.417957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.417957 LLDP, length 82 [|LLDP] 18:31:22.417957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.417957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06fd e572 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.417957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.417957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.417957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.417958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.417958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.427959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.427959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.427960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.427960 LLDP, length 82 [|LLDP] 18:31:22.427960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.427960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.427960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.427960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.427960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0705 8692 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.427960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.437958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.437958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.437959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.437959 LLDP, length 82 [|LLDP] 18:31:22.437959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.437959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 070d 27b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.437959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.437959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.437959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.437959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.447955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.447955 LLDP, length 82 [|LLDP] 18:31:22.447955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.447955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0714 c8d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.447955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.447955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.447955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.447955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.447956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.447956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.457956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.457956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.457957 LLDP, length 82 [|LLDP] 18:31:22.457957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.457957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 071c 69f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.457957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.457957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.457957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.457957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.457957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.467956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.467956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.467956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.467956 LLDP, length 82 [|LLDP] 18:31:22.467956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.467957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.467957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.467957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.467957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0724 0b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.467957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.477956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.477956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.477956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.477956 LLDP, length 82 [|LLDP] 18:31:22.477956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.477956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 072b ac32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.477956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.477956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.477956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.477956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.487958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.487958 LLDP, length 82 [|LLDP] 18:31:22.487958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.487958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0733 4d52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.487958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.487958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.487959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.487959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.487959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.487959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.497957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.497957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.497957 LLDP, length 82 [|LLDP] 18:31:22.497957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.497957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 073a ee72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.497957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.497957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.497957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.497957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.497958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.507956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.507956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.507956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.507956 LLDP, length 82 [|LLDP] 18:31:22.507956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.507956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.507956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.507956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.507956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0742 8f92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.507956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.517956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.517956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.517956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.517956 LLDP, length 82 [|LLDP] 18:31:22.517956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.517956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 074a 30b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.517956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.517956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.517956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.517956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.527955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.527955 LLDP, length 82 [|LLDP] 18:31:22.527956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.527956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0751 d1d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.527956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.527956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.527956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.527956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.527956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.527956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.537958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.537958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.537958 LLDP, length 82 [|LLDP] 18:31:22.537958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.537958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0759 72f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.537958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.537958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.537958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.537958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.537958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.547958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.547958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.547958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.547958 LLDP, length 82 [|LLDP] 18:31:22.547958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.547958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.547958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.547958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.547958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0761 1412 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.547958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.557956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.557956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.557956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.557956 LLDP, length 82 [|LLDP] 18:31:22.557956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.557956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0768 b532 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.557957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.557957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.557957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.557957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.567981 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.567981 LLDP, length 82 [|LLDP] 18:31:22.567981 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.567981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0770 5652 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.567981 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.567981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.567981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.567981 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.567981 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.567981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.577958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.577958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.577958 LLDP, length 82 [|LLDP] 18:31:22.577958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.577958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0777 f772 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.577958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.577958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.577958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.577958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.577958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.587966 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.587966 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.587967 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.587967 LLDP, length 82 [|LLDP] 18:31:22.587967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.587967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.587967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.587967 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.587967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 077f 9892 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.587967 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.597957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.597957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.597957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.597957 LLDP, length 82 [|LLDP] 18:31:22.597957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.597957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0787 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.597957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.597957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.597957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.597957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.607963 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.607963 LLDP, length 82 [|LLDP] 18:31:22.607963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.607963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 078e dad2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.607963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.607963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.607963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.607963 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.607963 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.607963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.617955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.617955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.617955 LLDP, length 82 [|LLDP] 18:31:22.617955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.617955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0796 7bf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.617955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.617955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.617955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.617956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.617956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.627962 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.627962 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.627962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.627962 LLDP, length 82 [|LLDP] 18:31:22.627962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.627962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.627962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.627962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.627962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 079e 1d12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.627962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.637961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.637961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.637961 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.637961 LLDP, length 82 [|LLDP] 18:31:22.637961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.637961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07a5 be32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.637962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.637962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.637962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.637962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.647962 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.647962 LLDP, length 82 [|LLDP] 18:31:22.647962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.647962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07ad 5f52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.647962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.647962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.647962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.647962 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.647962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.647962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.657956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.657956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.657956 LLDP, length 82 [|LLDP] 18:31:22.657956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.657957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07b5 0072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.657957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.657957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.657957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.657957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.657957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.667956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.667957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.667957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.667957 LLDP, length 82 [|LLDP] 18:31:22.667957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.667957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.667957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.667957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.667957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07bc a192 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.667957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.677956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.677956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.677956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.677956 LLDP, length 82 [|LLDP] 18:31:22.677956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.677956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07c4 42b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.677956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.677956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.677956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.677956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.687958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.687958 LLDP, length 82 [|LLDP] 18:31:22.687958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.687958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07cb e3d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.687958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.687958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.687958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.687958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.687958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.687959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.697956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.697956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.697956 LLDP, length 82 [|LLDP] 18:31:22.697956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.697956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07d3 84f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.697956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.697956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.697957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.697957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.697957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.707956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.707956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.707956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.707956 LLDP, length 82 [|LLDP] 18:31:22.707956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.707956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.707957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.707957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.707957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07db 2612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.707957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.717957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.717957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.717958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.717958 LLDP, length 82 [|LLDP] 18:31:22.717958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.717958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07e2 c732 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.717958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.717958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.717958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.717958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.727955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.727955 LLDP, length 82 [|LLDP] 18:31:22.727955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.727956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07ea 6852 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.727956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.727956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.727956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.727956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.727956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.727956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.737959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.737959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.737959 LLDP, length 82 [|LLDP] 18:31:22.737959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.737959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07f2 0972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.737959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.737959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.737959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.737959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.737959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.747957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.747957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.747957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.747957 LLDP, length 82 [|LLDP] 18:31:22.747957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.747958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.747958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.747958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.747958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07f9 aa92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.747958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.757957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.757957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.757957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.757957 LLDP, length 82 [|LLDP] 18:31:22.757957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.757957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0801 4bb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.757957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.757957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.757957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.757957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.767956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.767956 LLDP, length 82 [|LLDP] 18:31:22.767956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.767956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0808 ecd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.767956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.767956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.767956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.767957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.767957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.767957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.777955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.777955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.777956 LLDP, length 82 [|LLDP] 18:31:22.777956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.777956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0810 8df2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.777956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.777956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.777956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.777956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.777956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.787957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.787957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.787957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.787957 LLDP, length 82 [|LLDP] 18:31:22.787957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.787957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.787957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.787957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.787957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0818 2f12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.787957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.797957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.797957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.797957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.797957 LLDP, length 82 [|LLDP] 18:31:22.797957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.797957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 081f d032 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.797957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.797957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.797957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.797957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.807955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.807955 LLDP, length 82 [|LLDP] 18:31:22.807955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.807955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0827 7152 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.807955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.807955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.807955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.807956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.807956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.807956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.817955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.817955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.817955 LLDP, length 82 [|LLDP] 18:31:22.817955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.817955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 082f 1272 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.817955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.817956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.817956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.817956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.817956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.827957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.827957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.827957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.827957 LLDP, length 82 [|LLDP] 18:31:22.827957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.827957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.827957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.827957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.827957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0836 b392 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.827957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.837961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.837962 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.837962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.837962 LLDP, length 82 [|LLDP] 18:31:22.837962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.837962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 083e 54b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.837962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.837962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.837962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.837962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.847957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.847957 LLDP, length 82 [|LLDP] 18:31:22.847957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.847957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0845 f5d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.847957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.847957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.847957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.847957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.847957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.847957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.857958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.857958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.857958 LLDP, length 82 [|LLDP] 18:31:22.857958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.857958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 084d 96f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.857958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.857958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.857958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.857958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.857958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.867955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.867955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.867955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.867956 LLDP, length 82 [|LLDP] 18:31:22.867956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.867956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.867956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.867956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.867956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0855 3812 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.867956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.877959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.877959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.877959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.877959 LLDP, length 82 [|LLDP] 18:31:22.877959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.877959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 085c d932 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.877960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.877960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.877960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.877960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.887958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.887958 LLDP, length 82 [|LLDP] 18:31:22.887958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.887958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0864 7a52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.887958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.887958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.887958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.887959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.887959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.887959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.897956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.897956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.897956 LLDP, length 82 [|LLDP] 18:31:22.897956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.897956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 086c 1b72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.897956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.897956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.897956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.897957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.897957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.907955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.907955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.907955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.907955 LLDP, length 82 [|LLDP] 18:31:22.907955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.907955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.907955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.907955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.907955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0873 bc92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.907955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.917958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.917958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.917958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.917958 LLDP, length 82 [|LLDP] 18:31:22.917959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.917959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 087b 5db2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.917959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.917959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.917959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.917959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.927959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.927959 LLDP, length 82 [|LLDP] 18:31:22.927959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.927959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0882 fed2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.927959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.927959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.927959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.927959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.927959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.927959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.937959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.937959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.937959 LLDP, length 82 [|LLDP] 18:31:22.937959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.937959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 088a 9ff2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.937959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.937959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.937959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.937960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.937960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.947958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.947958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.947958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.947958 LLDP, length 82 [|LLDP] 18:31:22.947958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.947958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.947958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.947958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.947958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0892 4112 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.947958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.957958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.957958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.957958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.957958 LLDP, length 82 [|LLDP] 18:31:22.957958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.957958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0899 e232 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.957958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.957958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.957958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.957959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.967955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.967955 LLDP, length 82 [|LLDP] 18:31:22.967955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.967955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08a1 8352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.967955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.967955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.967955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.967955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.967955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.967956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.977955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.977955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.977955 LLDP, length 82 [|LLDP] 18:31:22.977955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.977955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08a9 2472 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.977955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.977955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.977955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.977955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.977955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.987957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.987957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.987957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.987958 LLDP, length 82 [|LLDP] 18:31:22.987958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.987958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.987958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.987958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.987958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08b0 c592 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.987958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.997954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.997954 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.997954 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.997954 LLDP, length 82 [|LLDP] 18:31:22.997954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.997954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08b8 66b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.997954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.997954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.997955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.997955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.007954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.007954 LLDP, length 82 [|LLDP] 18:31:23.007955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.007955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08c0 07d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.007955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.007955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.007955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.007955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.007955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.007955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.017957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.017957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.017957 LLDP, length 82 [|LLDP] 18:31:23.017957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.017957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08c7 a8f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.017957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.017957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.017957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.017957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.017957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.027956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.027956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.027956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.027956 LLDP, length 82 [|LLDP] 18:31:23.027956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.027957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.027957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.027957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.027957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08cf 4a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.027957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.037958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.037958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.037958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.037959 LLDP, length 82 [|LLDP] 18:31:23.037959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.037959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08d6 eb32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.037959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.037959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.037959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.037959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.047957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.047957 LLDP, length 82 [|LLDP] 18:31:23.047957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.047957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08de 8c52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.047957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.047957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.047957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.047958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.047958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.047958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.057958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.057958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.057958 LLDP, length 82 [|LLDP] 18:31:23.057958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.057958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08e6 2d72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.057959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.057959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.057959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.057959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.057959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.067956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.067956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.067956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.067956 LLDP, length 82 [|LLDP] 18:31:23.067956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.067957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.067957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.067957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.067957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08ed ce92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.067957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.077957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.077957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.077957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.077957 LLDP, length 82 [|LLDP] 18:31:23.077957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.077957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08f5 6fb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.077957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.077958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.077958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.077958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.087956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.087957 LLDP, length 82 [|LLDP] 18:31:23.087957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.087957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08fd 10d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.087957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.087957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.087957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.087957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.087957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.087957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.097956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.097956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.097956 LLDP, length 82 [|LLDP] 18:31:23.097956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.097956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0904 b1f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.097956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.097956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.097956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.097956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.097956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.107955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.107955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.107955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.107955 LLDP, length 82 [|LLDP] 18:31:23.107955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.107955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.107955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.107955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.107955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 090c 5312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.107955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.117956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.117956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.117956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.117957 LLDP, length 82 [|LLDP] 18:31:23.117957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.117957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0913 f432 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.117957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.117957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.117957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.117957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.127958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.127958 LLDP, length 82 [|LLDP] 18:31:23.127958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.127958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 091b 9552 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.127958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.127958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.127958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.127958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.127958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.127958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.137959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.137959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.137959 LLDP, length 82 [|LLDP] 18:31:23.137960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.137960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0923 3672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.137960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.137960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.137960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.137960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.137960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.147958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.147958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.147958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.147958 LLDP, length 82 [|LLDP] 18:31:23.147958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.147958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.147958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.147959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.147959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 092a d792 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.147959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.157957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.157957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.157957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.157957 LLDP, length 82 [|LLDP] 18:31:23.157957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.157957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0932 78b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.157957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.157957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.157957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.157957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.167957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.167957 LLDP, length 82 [|LLDP] 18:31:23.167957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.167957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 093a 19d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.167957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.167957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.167957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.167957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.167957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.167957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.177955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.177955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.177955 LLDP, length 82 [|LLDP] 18:31:23.177955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.177955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0941 baf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.177956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.177956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.177956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.177956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.177956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.187961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.187961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.187961 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.187961 LLDP, length 82 [|LLDP] 18:31:23.187961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.187962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.187962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.187962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.187962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0949 5c12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.187962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.197957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.197957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.197957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.197957 LLDP, length 82 [|LLDP] 18:31:23.197958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.197958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0950 fd32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.197958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.197958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.197958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.197958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.207955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.207955 LLDP, length 82 [|LLDP] 18:31:23.207955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.207955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0958 9e52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.207955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.207956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.207956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.207956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.207956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.207956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.217961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.217961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.217961 LLDP, length 82 [|LLDP] 18:31:23.217962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.217962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0960 3f72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.217962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.217962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.217962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.217962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.217962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.227971 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.227972 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.227972 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.227972 LLDP, length 82 [|LLDP] 18:31:23.227972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.227972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.227972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.227972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.227972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0967 e092 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.227972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.237963 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.237963 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.237963 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.237964 LLDP, length 82 [|LLDP] 18:31:23.237964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.237964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 096f 81b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.237964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.237964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.237964 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.237964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.247967 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.247967 LLDP, length 82 [|LLDP] 18:31:23.247967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.247967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0977 22d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.247967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.247968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.247968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.247968 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.247968 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.247968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.257961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.257961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.257962 LLDP, length 82 [|LLDP] 18:31:23.257962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.257962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 097e c3f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.257962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.257962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.257962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.257962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.257962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.267958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.267958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.267959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.267959 LLDP, length 82 [|LLDP] 18:31:23.267959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.267959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.267959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.267959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.267959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0986 6512 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.267959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.277956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.277956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.277956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.277956 LLDP, length 82 [|LLDP] 18:31:23.277956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.277956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 098e 0632 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.277956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.277956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.277957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.277957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.287960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.287960 LLDP, length 82 [|LLDP] 18:31:23.287960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.287960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0995 a752 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.287960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.287960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.287960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.287960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.287960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.287960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.297954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.297954 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.297955 LLDP, length 82 [|LLDP] 18:31:23.297955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.297955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 099d 4872 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.297955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.297955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.297955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.297955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.297955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.307955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.307955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.307955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.307955 LLDP, length 82 [|LLDP] 18:31:23.307955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.307955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.307956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.307956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.307956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09a4 e992 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.307956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.317955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.317955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.317955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.317955 LLDP, length 82 [|LLDP] 18:31:23.317955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.317955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09ac 8ab2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.317955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.317955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.317956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.317956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.327953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.327953 LLDP, length 82 [|LLDP] 18:31:23.327953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.327953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09b4 2bd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.327953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.327953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.327954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.327954 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.327954 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.327954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.337955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.337955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.337955 LLDP, length 82 [|LLDP] 18:31:23.337955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.337955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09bb ccf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.337955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.337955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.337956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.337956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.337956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.347953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.347953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.347953 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.347953 LLDP, length 82 [|LLDP] 18:31:23.347953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.347953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.347953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.347953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.347953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09c3 6e12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.347953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.357954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.357954 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.357954 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.357955 LLDP, length 82 [|LLDP] 18:31:23.357955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.357955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09cb 0f32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.357955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.357955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.357955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.357955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.367954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.367954 LLDP, length 82 [|LLDP] 18:31:23.367954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.367954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09d2 b052 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.367954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.367955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.367955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.367955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.367955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.367955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.377955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.377955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.377955 LLDP, length 82 [|LLDP] 18:31:23.377955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.377955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09da 5172 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.377955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.377955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.377955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.377955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.377955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.387957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.387957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.387957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.387957 LLDP, length 82 [|LLDP] 18:31:23.387957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.387957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.387957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.387957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.387957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09e1 f292 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.387957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.397954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.397954 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.397954 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.397954 LLDP, length 82 [|LLDP] 18:31:23.397954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.397954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09e9 93b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.397954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.397954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.397954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.397954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.407953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.407953 LLDP, length 82 [|LLDP] 18:31:23.407953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.407953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09f1 34d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.407953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.407953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.407953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.407953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.407954 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.407954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.417953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.417953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.417953 LLDP, length 82 [|LLDP] 18:31:23.417953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.417953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09f8 d5f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.417953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.417953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.417953 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.417953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.417953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.427957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.427957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.427957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.427957 LLDP, length 82 [|LLDP] 18:31:23.427957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.427957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.427957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.427957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.427957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a00 7712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.427957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.437956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.437956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.437956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.437956 LLDP, length 82 [|LLDP] 18:31:23.437957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.437957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a08 1832 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.437957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.437957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.437957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.437957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.447952 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.447952 LLDP, length 82 [|LLDP] 18:31:23.447953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.447953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a0f b952 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.447953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.447953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.447953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.447953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.447953 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.447953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.457953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.457953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.457953 LLDP, length 82 [|LLDP] 18:31:23.457954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.457954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a17 5a72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.457954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.457954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.457954 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.457954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.457954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.467958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.467958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.467958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.467958 LLDP, length 82 [|LLDP] 18:31:23.467959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.467959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.467959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.467959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.467959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a1e fb92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.467959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.477955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.477955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.477955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.477955 LLDP, length 82 [|LLDP] 18:31:23.477956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.477956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a26 9cb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.477956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.477956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.477956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.477956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.487956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.487956 LLDP, length 82 [|LLDP] 18:31:23.487956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.487956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a2e 3dd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.487956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.487956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.487956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.487957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.487957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.487957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.497957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.497957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.497957 LLDP, length 82 [|LLDP] 18:31:23.497957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.497957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a35 def2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.497957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.497957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.497957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.497957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.497957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.507952 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.507952 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.507952 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.507952 LLDP, length 82 [|LLDP] 18:31:23.507953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.507953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.507953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.507953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.507953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a3d 8012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.507953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.517953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.517953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.517953 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.517953 LLDP, length 82 [|LLDP] 18:31:23.517953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.517953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a45 2132 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.517954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.517954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.517954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.517954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.527955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.527955 LLDP, length 82 [|LLDP] 18:31:23.527955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.527955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a4c c252 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.527955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.527955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.527955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.527955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.527955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.527955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.537958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.537958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.537958 LLDP, length 82 [|LLDP] 18:31:23.537958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.537958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a54 6372 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.537958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.537958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.537958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.537958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.537958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.547955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.547955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.547955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.547955 LLDP, length 82 [|LLDP] 18:31:23.547955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.547955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.547955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.547955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.547955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a5c 0492 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.547955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.557959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.557959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.557959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.557959 LLDP, length 82 [|LLDP] 18:31:23.557959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.557959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a63 a5b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.557959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.557959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.557959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.557959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.567960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.567960 LLDP, length 82 [|LLDP] 18:31:23.567960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.567960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a6b 46d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.567960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.567961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.567961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.567961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.567961 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.567961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.577954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.577954 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.577954 LLDP, length 82 [|LLDP] 18:31:23.577954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.577954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a72 e7f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.577954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.577954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.577954 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.577954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.577954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.587995 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.587996 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.587996 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.587996 LLDP, length 82 [|LLDP] 18:31:23.587996 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.587996 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.587996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.587996 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.587996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a7a 8912 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.587996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.597965 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.597965 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.597966 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.597966 LLDP, length 82 [|LLDP] 18:31:23.597966 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.597966 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a82 2a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.597966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.597966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.597966 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.597966 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.607963 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.607963 LLDP, length 82 [|LLDP] 18:31:23.607963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.607963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a89 cb52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.607963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.607963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.607963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.607963 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.607963 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.607964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.617960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.617960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.617960 LLDP, length 82 [|LLDP] 18:31:23.617960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.617960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a91 6c72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.617960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.617960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.617961 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.617961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.617961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.627956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.627956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.627956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.627956 LLDP, length 82 [|LLDP] 18:31:23.627956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.627956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.627956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.627956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.627956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a99 0d92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.627957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.637955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.637955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.637955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.637956 LLDP, length 82 [|LLDP] 18:31:23.637956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.637956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aa0 aeb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.637956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.637956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.637956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.637956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.648005 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.648005 LLDP, length 82 [|LLDP] 18:31:23.648005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.648005 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aa8 4fd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.648005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.648005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.648005 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.648005 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.648005 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.648006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.657986 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.657986 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.657986 LLDP, length 82 [|LLDP] 18:31:23.657986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.657986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aaf f0f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.657986 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.657986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.657986 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.657986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.657987 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.667961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.667961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.667961 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.667961 LLDP, length 82 [|LLDP] 18:31:23.667961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.667961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.667961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.667961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.667961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ab7 9212 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.667961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.677964 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.677964 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.677964 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.677964 LLDP, length 82 [|LLDP] 18:31:23.677964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.677964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0abf 3332 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.677964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.677964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.677964 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.677964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.687962 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.687962 LLDP, length 82 [|LLDP] 18:31:23.687962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.687962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ac6 d452 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.687962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.687963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.687963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.687963 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.687963 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.687963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.697958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.697958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.697958 LLDP, length 82 [|LLDP] 18:31:23.697958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.697958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ace 7572 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.697958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.697958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.697958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.697959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.697959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.707957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.707957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.707957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.707957 LLDP, length 82 [|LLDP] 18:31:23.707957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.707957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.707957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.707957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.707957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ad6 1692 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.707958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.717956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.717956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.717956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.717956 LLDP, length 82 [|LLDP] 18:31:23.717957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.717957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0add b7b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.717957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.717957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.717957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.717957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.727957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.727957 LLDP, length 82 [|LLDP] 18:31:23.727957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.727957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ae5 58d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.727958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.727958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.727958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.727958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.727958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.727958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.737959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.737959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.737960 LLDP, length 82 [|LLDP] 18:31:23.737960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.737960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aec f9f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.737960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.737960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.737960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.737960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.737960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.747961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.747961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.747961 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.747961 LLDP, length 82 [|LLDP] 18:31:23.747962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.747962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.747962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.747962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.747962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0af4 9b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.747962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.757956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.757956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.757956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.757956 LLDP, length 82 [|LLDP] 18:31:23.757956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.757956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0afc 3c32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.757957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.757957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.757957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.757957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.767956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.767956 LLDP, length 82 [|LLDP] 18:31:23.767956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.767956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b03 dd52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.767956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.767956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.767956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.767956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.767956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.767957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.777957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.777957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.777957 LLDP, length 82 [|LLDP] 18:31:23.777957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.777957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b0b 7e72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.777957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.777957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.777957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.777958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.777958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.787957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.787957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.787957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.787957 LLDP, length 82 [|LLDP] 18:31:23.787957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.787957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.787957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.787957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.787957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b13 1f92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.787957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.797961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.797961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.797961 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.797962 LLDP, length 82 [|LLDP] 18:31:23.797962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.797962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b1a c0b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.797962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.797962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.797962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.797962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.807957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.807957 LLDP, length 82 [|LLDP] 18:31:23.807957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.807958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b22 61d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.807958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.807958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.807958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.807958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.807958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.807958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.817958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.817958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.817958 LLDP, length 82 [|LLDP] 18:31:23.817958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.817959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b2a 02f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.817959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.817959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.817959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.817959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.817959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.827955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.827956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.827956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.827956 LLDP, length 82 [|LLDP] 18:31:23.827956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.827956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.827956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.827956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.827956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b31 a412 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.827956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.837957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.837957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.837957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.837957 LLDP, length 82 [|LLDP] 18:31:23.837957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.837957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b39 4532 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.837957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.837957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.837957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.837957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.847964 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.847964 LLDP, length 82 [|LLDP] 18:31:23.847964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.847964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b40 e652 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.847965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.847965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.847965 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.847965 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.847965 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.847965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.857957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.857957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.857957 LLDP, length 82 [|LLDP] 18:31:23.857958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.857958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b48 8772 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.857958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.857958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.857958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.857958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.857958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.867957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.867957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.867957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.867957 LLDP, length 82 [|LLDP] 18:31:23.867957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.867958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.867958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.867958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.867958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b50 2892 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.867958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.877957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.877957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.877957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.877957 LLDP, length 82 [|LLDP] 18:31:23.877957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.877957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b57 c9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.877957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.877957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.877957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.877957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.887957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.887957 LLDP, length 82 [|LLDP] 18:31:23.887957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.887957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b5f 6ad2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.887957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.887957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.887957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.887957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.887957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.887957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.897961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.897961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.897961 LLDP, length 82 [|LLDP] 18:31:23.897962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.897962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b67 0bf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.897962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.897962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.897962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.897962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.897962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.907956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.907957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.907957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.907957 LLDP, length 82 [|LLDP] 18:31:23.907957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.907957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.907957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.907957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.907957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b6e ad12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.907957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.917960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.917960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.917960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.917960 LLDP, length 82 [|LLDP] 18:31:23.917960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.917960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b76 4e32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.917960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.917961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.917961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.917961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.927958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.927958 LLDP, length 82 [|LLDP] 18:31:23.927958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.927958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b7d ef52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.927958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.927958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.927958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.927958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.927958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.927959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.937954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.937955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.937955 LLDP, length 82 [|LLDP] 18:31:23.937955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.937955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b85 9072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.937955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.937955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.937955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.937955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.937955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.947958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.947958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.947958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.947958 LLDP, length 82 [|LLDP] 18:31:23.947958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.947958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.947959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.947959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.947959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b8d 3192 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.947959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.957956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.957956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.957956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.957956 LLDP, length 82 [|LLDP] 18:31:23.957956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.957956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b94 d2b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.957956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.957956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.957956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.957956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.967956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.967956 LLDP, length 82 [|LLDP] 18:31:23.967956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.967956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b9c 73d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.967957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.967957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.967957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.967957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.967957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.967957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.977956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.977957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.977957 LLDP, length 82 [|LLDP] 18:31:23.977957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.977957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ba4 14f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.977957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.977957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.977957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.977957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.977957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.987956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.987956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.987956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.987956 LLDP, length 82 [|LLDP] 18:31:23.987956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.987956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.987957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.987957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.987957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bab b612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.987957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.997960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.997960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.997960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.997960 LLDP, length 82 [|LLDP] 18:31:23.997960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.997960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bb3 5732 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.997960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.997960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.997960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.997960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.007956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.007956 LLDP, length 82 [|LLDP] 18:31:24.007956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.007956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bba f852 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.007957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.007957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.007957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.007957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.007957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.007957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.017956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.017956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.017956 LLDP, length 82 [|LLDP] 18:31:24.017956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.017957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bc2 9972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.017957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.017957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.017957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.017957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.017957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.027957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.027957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.027957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.027957 LLDP, length 82 [|LLDP] 18:31:24.027957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.027957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.027957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.027957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.027957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bca 3a92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.027957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.037956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.037956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.037956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.037956 LLDP, length 82 [|LLDP] 18:31:24.037956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.037956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bd1 dbb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.037956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.037956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.037956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.037956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.047962 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.047962 LLDP, length 82 [|LLDP] 18:31:24.047962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.047962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bd9 7cd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.047962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.047962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.047962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.047962 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.047962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.047962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.057957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.057957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.057957 LLDP, length 82 [|LLDP] 18:31:24.057957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.057957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0be1 1df2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.057957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.057958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.057958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.057958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.057958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.067956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.067956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.067956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.067956 LLDP, length 82 [|LLDP] 18:31:24.067956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.067956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.067956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.067956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.067957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0be8 bf12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.067957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.077958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.077958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.077958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.077958 LLDP, length 82 [|LLDP] 18:31:24.077958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.077958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bf0 6032 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.077959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.077959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.077959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.077959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.087958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.087958 LLDP, length 82 [|LLDP] 18:31:24.087958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.087958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bf8 0152 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.087958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.087958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.087958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.087958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.087958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.087958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.097962 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.097962 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.097962 LLDP, length 82 [|LLDP] 18:31:24.097962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.097962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bff a272 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.097962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.097962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.097962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.097962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.097962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.107958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.107958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.107958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.107958 LLDP, length 82 [|LLDP] 18:31:24.107958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.107958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.107958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.107958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.107958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c07 4392 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.107958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.117958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.117958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.117958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.117958 LLDP, length 82 [|LLDP] 18:31:24.117958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.117958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c0e e4b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.117958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.117958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.117958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.117958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.127957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.127957 LLDP, length 82 [|LLDP] 18:31:24.127957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.127957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c16 85d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.127957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.127957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.127957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.127957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.127957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.127957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.137957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.137957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.137957 LLDP, length 82 [|LLDP] 18:31:24.137957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.137957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c1e 26f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.137957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.137957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.137957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.137957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.137957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.147958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.147958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.147958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.147958 LLDP, length 82 [|LLDP] 18:31:24.147958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.147958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.147959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.147959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.147959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c25 c812 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.147959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.157956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.157956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.157957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.157957 LLDP, length 82 [|LLDP] 18:31:24.157957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.157957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c2d 6932 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.157957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.157957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.157957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.157957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.167957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.167957 LLDP, length 82 [|LLDP] 18:31:24.167957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.167957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c35 0a52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.167957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.167957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.167957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.167957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.167957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.167957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.177957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.177958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.177958 LLDP, length 82 [|LLDP] 18:31:24.177958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.177958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c3c ab72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.177958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.177958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.177958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.177958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.177958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.187957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.187957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.187957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.187957 LLDP, length 82 [|LLDP] 18:31:24.187957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.187957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.187958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.187958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.187958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c44 4c92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.187958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.197961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.197961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.197961 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.197961 LLDP, length 82 [|LLDP] 18:31:24.197961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.197961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c4b edb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.197961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.197961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.197961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.197961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.207959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.207959 LLDP, length 82 [|LLDP] 18:31:24.207959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.207959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c53 8ed2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.207959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.207959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.207959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.207959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.207959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.207959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.217958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.217958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.217958 LLDP, length 82 [|LLDP] 18:31:24.217958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.217958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c5b 2ff2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.217958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.217959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.217959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.217959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.217959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.227957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.227957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.227957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.227957 LLDP, length 82 [|LLDP] 18:31:24.227957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.227957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.227958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.227958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.227958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c62 d112 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.227958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.237957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.237957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.237957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.237957 LLDP, length 82 [|LLDP] 18:31:24.237957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.237957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c6a 7232 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.237957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.237957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.237957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.237957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.247957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.247957 LLDP, length 82 [|LLDP] 18:31:24.247957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.247957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c72 1352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.247957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.247957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.247957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.247957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.247957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.247957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.257956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.257957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.257957 LLDP, length 82 [|LLDP] 18:31:24.257957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.257957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c79 b472 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.257957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.257957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.257957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.257957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.257957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.267958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.267958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.267958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.267958 LLDP, length 82 [|LLDP] 18:31:24.267959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.267959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.267959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.267959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.267959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c81 5592 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.267959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.277957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.277957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.277957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.277957 LLDP, length 82 [|LLDP] 18:31:24.277957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.277958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c88 f6b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.277958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.277958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.277958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.277958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.287956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.287956 LLDP, length 82 [|LLDP] 18:31:24.287956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.287956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c90 97d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.287956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.287956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.287956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.287956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.287956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.287956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.297959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.297959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.297959 LLDP, length 82 [|LLDP] 18:31:24.297959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.297959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c98 38f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.297959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.297959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.297959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.297959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.297960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.307959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.307959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.307959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.307959 LLDP, length 82 [|LLDP] 18:31:24.307959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.307959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.307959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.307960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.307960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c9f da12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.307960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.317957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.317957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.317957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.317957 LLDP, length 82 [|LLDP] 18:31:24.317957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.317957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ca7 7b32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.317957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.317958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.317958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.317958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.327958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.327958 LLDP, length 82 [|LLDP] 18:31:24.327958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.327958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0caf 1c52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.327958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.327958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.327958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.327958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.327958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.327958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.337957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.337957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.337957 LLDP, length 82 [|LLDP] 18:31:24.337957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.337957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cb6 bd72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.337957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.337958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.337958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.337958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.337958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.347959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.347959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.347959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.347959 LLDP, length 82 [|LLDP] 18:31:24.347959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.347959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.347959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.347960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.347960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cbe 5e92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.347960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.357957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.357957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.357957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.357957 LLDP, length 82 [|LLDP] 18:31:24.357957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.357958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cc5 ffb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.357958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.357958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.357958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.357958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.367957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.367957 LLDP, length 82 [|LLDP] 18:31:24.367957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.367957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ccd a0d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.367957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.367957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.367957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.367957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.367957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.367957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.377956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.377956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.377957 LLDP, length 82 [|LLDP] 18:31:24.377957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.377957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cd5 41f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.377957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.377957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.377957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.377957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.377957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.387956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.387956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.387956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.387956 LLDP, length 82 [|LLDP] 18:31:24.387956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.387956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.387957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.387957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.387957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cdc e312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.387957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.397958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.397958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.397959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.397959 LLDP, length 82 [|LLDP] 18:31:24.397959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.397959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ce4 8432 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.397959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.397959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.397959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.397959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.407956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.407956 LLDP, length 82 [|LLDP] 18:31:24.407956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.407956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cec 2552 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.407956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.407956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.407956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.407956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.407956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.407956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.417959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.417959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.417959 LLDP, length 82 [|LLDP] 18:31:24.417959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.417959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cf3 c672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.417959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.417959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.417960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.417960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.417960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.427958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.427958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.427958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.427959 LLDP, length 82 [|LLDP] 18:31:24.427959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.427959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.427959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.427959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.427959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cfb 6792 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.427959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.437960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.437960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.437960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.437960 LLDP, length 82 [|LLDP] 18:31:24.437960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.437960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d03 08b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.437960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.437960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.437960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.437960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.447959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.447959 LLDP, length 82 [|LLDP] 18:31:24.447959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.447959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d0a a9d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.447959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.447959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.447959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.447959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.447960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.447960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.457956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.457956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.457956 LLDP, length 82 [|LLDP] 18:31:24.457956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.457956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d12 4af2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.457956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.457956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.457956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.457956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.457956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.467957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.467957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.467958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.467958 LLDP, length 82 [|LLDP] 18:31:24.467958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.467958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.467958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.467958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.467958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d19 ec12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.467958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.477957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.477957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.477957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.477957 LLDP, length 82 [|LLDP] 18:31:24.477957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.477957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d21 8d32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.477957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.477957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.477957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.477957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.487958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.487958 LLDP, length 82 [|LLDP] 18:31:24.487958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.487958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d29 2e52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.487958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.487958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.487958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.487958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.487958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.487958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.497958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.497959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.497959 LLDP, length 82 [|LLDP] 18:31:24.497959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.497959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d30 cf72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.497959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.497959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.497959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.497959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.497959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.507957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.507957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.507958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.507958 LLDP, length 82 [|LLDP] 18:31:24.507958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.507958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.507958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.507958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.507958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d38 7092 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.507958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.517960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.517960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.517960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.517960 LLDP, length 82 [|LLDP] 18:31:24.517960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.517960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d40 11b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.517960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.517960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.517960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.517960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.527959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.527959 LLDP, length 82 [|LLDP] 18:31:24.527959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.527959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d47 b2d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.527959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.527959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.527959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.527959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.527959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.527959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.537956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.537956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.537956 LLDP, length 82 [|LLDP] 18:31:24.537956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.537956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d4f 53f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.537956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.537956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.537956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.537956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.537956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.547957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.547957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.547957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.547957 LLDP, length 82 [|LLDP] 18:31:24.547957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.547957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.547957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.547958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.547958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d56 f512 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.547958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.557956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.557956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.557956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.557956 LLDP, length 82 [|LLDP] 18:31:24.557956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.557956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d5e 9632 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.557956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.557956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.557956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.557956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.567957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.567957 LLDP, length 82 [|LLDP] 18:31:24.567957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.567957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d66 3752 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.567957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.567957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.567957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.567957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.567957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.567957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.577955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.577955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.577955 LLDP, length 82 [|LLDP] 18:31:24.577955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.577955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d6d d872 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.577955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.577955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.577955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.577956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.577956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.587955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.587955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.587955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.587955 LLDP, length 82 [|LLDP] 18:31:24.587955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.587955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.587955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.587955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.587955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d75 7992 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.587955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.597958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.597958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.597958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.597958 LLDP, length 82 [|LLDP] 18:31:24.597958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.597958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d7d 1ab2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.597958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.597958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.597958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.597958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.607956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.607956 LLDP, length 82 [|LLDP] 18:31:24.607956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.607956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d84 bbd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.607956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.607956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.607956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.607956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.607956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.607956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.617974 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.617974 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.617974 LLDP, length 82 [|LLDP] 18:31:24.617974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.617974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d8c 5cf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.617974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.617974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.617974 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.617974 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.617974 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.627971 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.627972 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.627972 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.627972 LLDP, length 82 [|LLDP] 18:31:24.627972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.627972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.627972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.627972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.627972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d93 fe12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.627972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.637957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.637957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.637957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.637957 LLDP, length 82 [|LLDP] 18:31:24.637957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.637957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d9b 9f32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.637957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.637957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.637958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.637958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.647957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.647957 LLDP, length 82 [|LLDP] 18:31:24.647957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.647957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0da3 4052 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.647957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.647957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.647957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.647957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.647957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.647957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.657957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.657957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.657957 LLDP, length 82 [|LLDP] 18:31:24.657957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.657957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0daa e172 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.657957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.657957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.657957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.657958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.657958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.667956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.667956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.667956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.667956 LLDP, length 82 [|LLDP] 18:31:24.667956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.667956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.667957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.667957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.667957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0db2 8292 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.667957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.677955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.677955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.677955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.677955 LLDP, length 82 [|LLDP] 18:31:24.677955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.677955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dba 23b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.677955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.677955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.677955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.677955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.687956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.687956 LLDP, length 82 [|LLDP] 18:31:24.687956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.687956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dc1 c4d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.687956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.687956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.687956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.687956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.687956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.687956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.697955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.697955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.697955 LLDP, length 82 [|LLDP] 18:31:24.697955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.697955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dc9 65f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.697955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.697955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.697955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.697955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.697955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.707957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.707957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.707957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.707957 LLDP, length 82 [|LLDP] 18:31:24.707957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.707958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.707958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.707958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.707958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dd1 0712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.707958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.717956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.717956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.717956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.717957 LLDP, length 82 [|LLDP] 18:31:24.717957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.717957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dd8 a832 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.717957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.717957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.717957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.717957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.727955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.727955 LLDP, length 82 [|LLDP] 18:31:24.727955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.727955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0de0 4952 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.727955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.727955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.727955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.727955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.727955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.727955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.737956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.737956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.737956 LLDP, length 82 [|LLDP] 18:31:24.737956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.737956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0de7 ea72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.737956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.737956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.737956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.737956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.737956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.747957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.747958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.747958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.747958 LLDP, length 82 [|LLDP] 18:31:24.747958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.747958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.747958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.747958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.747958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0def 8b92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.747958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.757954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.757954 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.757954 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.757954 LLDP, length 82 [|LLDP] 18:31:24.757954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.757954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0df7 2cb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.757954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.757954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.757954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.757954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.767954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.767954 LLDP, length 82 [|LLDP] 18:31:24.767954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.767954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dfe cdd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.767954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.767954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.767954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.767954 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.767954 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.767954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.777954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.777954 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.777954 LLDP, length 82 [|LLDP] 18:31:24.777954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.777954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e06 6ef2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.777954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.777954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.777955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.777955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.777955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.787953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.787953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.787953 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.787953 LLDP, length 82 [|LLDP] 18:31:24.787953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.787953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.787953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.787954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.787954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e0e 1012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.787954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.797960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.797960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.797960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.797960 LLDP, length 82 [|LLDP] 18:31:24.797960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.797960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e15 b132 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.797960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.797960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.797960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.797960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.807962 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.807962 LLDP, length 82 [|LLDP] 18:31:24.807962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.807962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e1d 5252 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.807962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.807962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.807962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.807962 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.807962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.807963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.817961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.817961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.817961 LLDP, length 82 [|LLDP] 18:31:24.817961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.817961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e24 f372 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.817962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.817962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.817962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.817962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.817962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.827970 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.827970 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.827970 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.827970 LLDP, length 82 [|LLDP] 18:31:24.827971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.827971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.827971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.827971 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.827971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e2c 9492 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.827971 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.837962 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.837962 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.837962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.837962 LLDP, length 82 [|LLDP] 18:31:24.837962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.837962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e34 35b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.837962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.837962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.837962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.837962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.847962 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.847962 LLDP, length 82 [|LLDP] 18:31:24.847962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.847962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e3b d6d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.847962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.847962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.847962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.847962 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.847962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.847962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.857993 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.857993 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.857993 LLDP, length 82 [|LLDP] 18:31:24.857993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.857993 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e43 77f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.857993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.857993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.857994 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.857994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.857994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.868000 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.868000 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.868000 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.868001 LLDP, length 82 [|LLDP] 18:31:24.868001 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.868001 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.868001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.868001 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.868001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e4b 1912 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.868001 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.877995 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.877995 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.877995 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.877995 LLDP, length 82 [|LLDP] 18:31:24.877995 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.877995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e52 ba32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.877995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.877995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.877995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.877995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.887996 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.887996 LLDP, length 82 [|LLDP] 18:31:24.887996 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.887997 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e5a 5b52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.887997 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.887997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.887997 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.887997 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.887997 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.887997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.898000 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.898000 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.898000 LLDP, length 82 [|LLDP] 18:31:24.898000 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.898000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e61 fc72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.898000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.898000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.898000 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.898000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.898000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.907987 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.907987 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.907987 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.907987 LLDP, length 82 [|LLDP] 18:31:24.907988 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.907988 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.907988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.907988 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.907988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e69 9d92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.907988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.917992 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.917992 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.917992 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.917992 LLDP, length 82 [|LLDP] 18:31:24.917992 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.917992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e71 3eb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.917993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.917993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.917993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.917993 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.927967 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.927968 LLDP, length 82 [|LLDP] 18:31:24.927968 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.927968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e78 dfd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.927968 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.927968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.927968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.927968 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.927968 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.927968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.937966 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.937966 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.937966 LLDP, length 82 [|LLDP] 18:31:24.937966 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.937966 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e80 80f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.937966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.937966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.937966 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.937966 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.937966 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.947964 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.947964 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.947964 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.947964 LLDP, length 82 [|LLDP] 18:31:24.947964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.947964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.947965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.947965 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.947965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e88 2212 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.947965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.957959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.957959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.957959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.957959 LLDP, length 82 [|LLDP] 18:31:24.957959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.957959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e8f c332 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.957959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.957959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.957959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.957959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.967963 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.967963 LLDP, length 82 [|LLDP] 18:31:24.967963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.967963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e97 6452 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.967963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.967963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.967963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.967963 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.967963 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.967963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.977957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.977958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.977958 LLDP, length 82 [|LLDP] 18:31:24.977958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.977958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e9f 0572 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.977958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.977958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.977958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.977958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.977958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.987959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.987959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.987959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.987959 LLDP, length 82 [|LLDP] 18:31:24.987959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.987959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.987959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.987959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.987959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ea6 a692 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.987959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.997959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.997959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.997959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.997959 LLDP, length 82 [|LLDP] 18:31:24.997959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.997959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eae 47b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.997959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.997959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.997959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.997960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.007959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.007959 LLDP, length 82 [|LLDP] 18:31:25.007959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.007959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eb5 e8d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.007959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.007959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.007959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.007959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.007959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.007959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.017957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.017957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.017957 LLDP, length 82 [|LLDP] 18:31:25.017957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.017957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ebd 89f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.017957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.017958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.017958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.017958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.017958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.027958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.027958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.027958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.027958 LLDP, length 82 [|LLDP] 18:31:25.027958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.027958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.027958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.027958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.027958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ec5 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.027958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.037957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.037957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.037957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.037957 LLDP, length 82 [|LLDP] 18:31:25.037957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.037957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ecc cc32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.037957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.037957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.037957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.037957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.047962 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.047962 LLDP, length 82 [|LLDP] 18:31:25.047962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.047962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ed4 6d52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.047962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.047963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.047963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.047963 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.047963 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.047963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.057957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.057957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.057957 LLDP, length 82 [|LLDP] 18:31:25.057958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.057958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0edc 0e72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.057958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.057958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.057958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.057958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.057958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.067958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.067958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.067958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.067958 LLDP, length 82 [|LLDP] 18:31:25.067958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.067958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.067958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.067958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.067958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ee3 af92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.067958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.077959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.077959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.077959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.077959 LLDP, length 82 [|LLDP] 18:31:25.077959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.077959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eeb 50b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.077959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.077959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.077959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.077959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.087958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.087958 LLDP, length 82 [|LLDP] 18:31:25.087959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.087959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ef2 f1d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.087959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.087959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.087959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.087959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.087959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.087959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.097959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.097959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.097959 LLDP, length 82 [|LLDP] 18:31:25.097959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.097959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0efa 92f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.097959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.097959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.097959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.097959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.097959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.107958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.107958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.107958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.107958 LLDP, length 82 [|LLDP] 18:31:25.107958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.107958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.107958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.107958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.107958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f02 3412 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.107958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.117958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.117958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.117958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.117958 LLDP, length 82 [|LLDP] 18:31:25.117958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.117958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f09 d532 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.117959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.117959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.117959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.117959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.127957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.127957 LLDP, length 82 [|LLDP] 18:31:25.127957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.127957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f11 7652 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.127957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.127957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.127958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.127958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.127958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.127958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.137961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.137961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.137961 LLDP, length 82 [|LLDP] 18:31:25.137961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.137961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f19 1772 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.137961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.137961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.137961 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.137961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.137961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.147963 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.147963 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.147963 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.147963 LLDP, length 82 [|LLDP] 18:31:25.147963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.147963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.147963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.147963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.147964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f20 b892 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.147964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.157957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.157957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.157957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.157957 LLDP, length 82 [|LLDP] 18:31:25.157957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.157957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f28 59b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.157958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.157958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.157958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.157958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.167957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.167957 LLDP, length 82 [|LLDP] 18:31:25.167957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.167957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f2f fad2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.167957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.167957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.167957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.167958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.167958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.167958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.177975 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.177975 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.177975 LLDP, length 82 [|LLDP] 18:31:25.177975 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.177975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f37 9bf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.177975 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.177975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.177975 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.177975 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.177976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.187957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.187957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.187957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.187957 LLDP, length 82 [|LLDP] 18:31:25.187957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.187957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.187957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.187957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.187957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f3f 3d12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.187957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.197960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.197960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.197960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.197961 LLDP, length 82 [|LLDP] 18:31:25.197961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.197961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f46 de32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.197961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.197961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.197961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.197961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.207956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.207956 LLDP, length 82 [|LLDP] 18:31:25.207956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.207956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f4e 7f52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.207956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.207957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.207957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.207957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.207957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.207957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.217956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.217956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.217956 LLDP, length 82 [|LLDP] 18:31:25.217956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.217956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f56 2072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.217956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.217956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.217956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.217956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.217956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.227956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.227956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.227956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.227956 LLDP, length 82 [|LLDP] 18:31:25.227956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.227956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.227957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.227957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.227957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f5d c192 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.227957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.237956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.237956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.237956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.237956 LLDP, length 82 [|LLDP] 18:31:25.237956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.237956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f65 62b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.237956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.237956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.237956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.237956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.247959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.247959 LLDP, length 82 [|LLDP] 18:31:25.247959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.247959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f6d 03d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.247959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.247959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.247959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.247959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.247959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.247959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.257958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.257958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.257958 LLDP, length 82 [|LLDP] 18:31:25.257958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.257958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f74 a4f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.257958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.257958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.257959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.257959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.257959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.267958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.267958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.267958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.267958 LLDP, length 82 [|LLDP] 18:31:25.267958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.267958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.267959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.267959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.267959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f7c 4612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.267959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.277958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.277958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.277958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.277958 LLDP, length 82 [|LLDP] 18:31:25.277958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.277958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f83 e732 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.277958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.277958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.277958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.277958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.287956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.287956 LLDP, length 82 [|LLDP] 18:31:25.287956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.287956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f8b 8852 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.287956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.287956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.287957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.287957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.287957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.287957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.297961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.297961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.297961 LLDP, length 82 [|LLDP] 18:31:25.297961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.297961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f93 2972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.297962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.297962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.297962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.297962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.297962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.307958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.307958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.307958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.307958 LLDP, length 82 [|LLDP] 18:31:25.307958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.307958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.307958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.307958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.307958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f9a ca92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.307958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.317957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.317957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.317957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.317957 LLDP, length 82 [|LLDP] 18:31:25.317957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.317958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fa2 6bb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.317958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.317958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.317958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.317958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.327957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.327957 LLDP, length 82 [|LLDP] 18:31:25.327957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.327957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0faa 0cd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.327957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.327957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.327957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.327957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.327957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.327957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.337957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.337957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.337957 LLDP, length 82 [|LLDP] 18:31:25.337957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.337957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fb1 adf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.337957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.337957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.337957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.337957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.337958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.347961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.347961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.347961 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.347961 LLDP, length 82 [|LLDP] 18:31:25.347961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.347961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.347961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.347961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.347961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fb9 4f12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.347961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.357956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.357956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.357956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.357956 LLDP, length 82 [|LLDP] 18:31:25.357957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.357957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fc0 f032 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.357957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.357957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.357957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.357957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.367957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.367957 LLDP, length 82 [|LLDP] 18:31:25.367957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.367957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fc8 9152 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.367957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.367957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.367957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.367957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.367958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.367958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.377956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.377956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.377957 LLDP, length 82 [|LLDP] 18:31:25.377957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.377957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fd0 3272 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.377957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.377957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.377957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.377957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.377957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.387956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.387956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.387956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.387956 LLDP, length 82 [|LLDP] 18:31:25.387957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.387957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.387957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.387957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.387957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fd7 d392 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.387957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.397962 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.397962 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.397962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.397962 LLDP, length 82 [|LLDP] 18:31:25.397962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.397962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fdf 74b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.397962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.397962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.397962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.397963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.407957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.407957 LLDP, length 82 [|LLDP] 18:31:25.407957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.407957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fe7 15d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.407957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.407957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.407957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.407957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.407958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.407958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.417958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.417958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.417958 LLDP, length 82 [|LLDP] 18:31:25.417958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.417958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fee b6f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.417958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.417958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.417958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.417959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.417959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.427960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.427960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.427960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.427960 LLDP, length 82 [|LLDP] 18:31:25.427960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.427960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.427960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.427960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.427960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ff6 5812 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.427960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.437957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.437957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.437957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.437957 LLDP, length 82 [|LLDP] 18:31:25.437957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.437958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ffd f932 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.437958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.437958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.437958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.437958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.447959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.447959 LLDP, length 82 [|LLDP] 18:31:25.447959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.447959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1005 9a52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.447959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.447959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.447959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.447959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.447959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.447959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.457958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.457958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.457958 LLDP, length 82 [|LLDP] 18:31:25.457958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.457958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 100d 3b72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.457959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.457959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.457959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.457959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.457959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.467957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.467957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.467957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.467957 LLDP, length 82 [|LLDP] 18:31:25.467957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.467957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.467958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.467958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.467958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1014 dc92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.467958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.477958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.477958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.477958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.477958 LLDP, length 82 [|LLDP] 18:31:25.477958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.477958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 101c 7db2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.477958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.477959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.477959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.477959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.487959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.487959 LLDP, length 82 [|LLDP] 18:31:25.487959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.487960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1024 1ed2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.487960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.487960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.487960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.487960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.487960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.487960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.497962 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.497962 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.497962 LLDP, length 82 [|LLDP] 18:31:25.497962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.497962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 102b bff2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.497962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.497962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.497962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.497962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.497962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.507958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.507958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.507958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.507958 LLDP, length 82 [|LLDP] 18:31:25.507958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.507958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.507959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.507959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.507959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1033 6112 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.507959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.517957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.517958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.517958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.517958 LLDP, length 82 [|LLDP] 18:31:25.517958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.517958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 103b 0232 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.517958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.517958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.517958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.517958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.527957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.527957 LLDP, length 82 [|LLDP] 18:31:25.527957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.527957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1042 a352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.527957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.527957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.527957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.527957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.527957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.527957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.537956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.537956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.537956 LLDP, length 82 [|LLDP] 18:31:25.537956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.537956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 104a 4472 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.537956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.537956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.537956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.537956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.537956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.547959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.547959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.547959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.547959 LLDP, length 82 [|LLDP] 18:31:25.547959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.547959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.547959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.547959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.547959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1051 e592 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.547959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 4401 packets captured 4401 packets received by filter 0 packets dropped by kernel 880 packets dropped by interface INFO DENT:Logger.py:84 [DENT aggregation 1] Ran timeout --preserve-status 15 tcpdump -i swp1 -n on agg1 with rc 0 and out 18:31:20.314291 LLDP, length 219: localhost 18:31:21.157986 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.157986 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.157986 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.157986 LLDP, length 82 [|LLDP] 18:31:21.157986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.157986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 033c 97b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.157987 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.157987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.157987 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.157987 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.167970 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.167970 LLDP, length 82 [|LLDP] 18:31:21.167970 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.167970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0344 38d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.167970 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.167971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.167971 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.167971 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.167971 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.167971 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.177965 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.177965 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.177965 LLDP, length 82 [|LLDP] 18:31:21.177965 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.177965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 034b d9f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.177965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.177965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.177965 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.177965 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.177965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.187955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.187956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.187956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.187956 LLDP, length 82 [|LLDP] 18:31:21.187956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.187956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.187956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.187956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.187956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0353 7b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.187956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.197954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.197954 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.197954 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.197954 LLDP, length 82 [|LLDP] 18:31:21.197954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.197954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 035b 1c32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.197954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.197954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.197954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.197954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.207956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.207956 LLDP, length 82 [|LLDP] 18:31:21.207956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.207956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0362 bd52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.207956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.207956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.207956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.207956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.207956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.207957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.217953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.217953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.217953 LLDP, length 82 [|LLDP] 18:31:21.217953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.217953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 036a 5e72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.217953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.217953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.217953 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.217953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.217954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.227956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.227956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.227956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.227956 LLDP, length 82 [|LLDP] 18:31:21.227956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.227956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.227956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.227956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.227956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0371 ff92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.227956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.237960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.237960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.237960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.237961 LLDP, length 82 [|LLDP] 18:31:21.237961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.237961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0379 a0b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.237961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.237961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.237961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.237961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.247953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.247953 LLDP, length 82 [|LLDP] 18:31:21.247953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.247953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0381 41d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.247953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.247953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.247953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.247953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.247953 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.247953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.257955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.257955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.257955 LLDP, length 82 [|LLDP] 18:31:21.257955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.257955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0388 e2f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.257955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.257955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.257955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.257955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.257955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.267955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.267955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.267955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.267956 LLDP, length 82 [|LLDP] 18:31:21.267956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.267956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.267956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.267956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.267956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0390 8412 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.267956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.277962 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.277962 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.277962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.277962 LLDP, length 82 [|LLDP] 18:31:21.277962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.277962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0398 2532 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.277962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.277962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.277962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.277962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.287955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.287955 LLDP, length 82 [|LLDP] 18:31:21.287955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.287955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 039f c652 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.287955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.287955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.287955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.287955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.287955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.287955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.297959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.297960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.297960 LLDP, length 82 [|LLDP] 18:31:21.297960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.297960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03a7 6772 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.297960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.297960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.297960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.297960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.297960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.307952 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.307952 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.307952 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.307952 LLDP, length 82 [|LLDP] 18:31:21.307952 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.307953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.307953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.307953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.307953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03af 0892 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.307953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.317953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.317953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.317953 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.317953 LLDP, length 82 [|LLDP] 18:31:21.317953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.317953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03b6 a9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.317954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.317954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.317954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.317954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.327958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.327958 LLDP, length 82 [|LLDP] 18:31:21.327958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.327958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03be 4ad2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.327958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.327958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.327958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.327958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.327958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.327958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.337956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.337956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.337956 LLDP, length 82 [|LLDP] 18:31:21.337956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.337956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03c5 ebf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.337956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.337956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.337956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.337956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.337957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.347953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.347953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.347953 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.347953 LLDP, length 82 [|LLDP] 18:31:21.347953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.347953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.347953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.347953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.347953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03cd 8d12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.347953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.357953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.357953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.357953 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.357953 LLDP, length 82 [|LLDP] 18:31:21.357954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.357954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03d5 2e32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.357954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.357954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.357954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.357954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.367957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.367958 LLDP, length 82 [|LLDP] 18:31:21.367958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.367958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03dc cf52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.367958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.367958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.367958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.367958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.367958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.367958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.377963 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.377964 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.377964 LLDP, length 82 [|LLDP] 18:31:21.377964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.377964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03e4 7072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.377964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.377964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.377964 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.377964 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.377964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.387958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.387958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.387958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.387958 LLDP, length 82 [|LLDP] 18:31:21.387958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.387958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.387958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.387958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.387958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03ec 1192 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.387958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.398002 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.398002 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.398002 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.398003 LLDP, length 82 [|LLDP] 18:31:21.398003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.398003 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03f3 b2b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.398003 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.398003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.398003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.398003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.407978 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.407978 LLDP, length 82 [|LLDP] 18:31:21.407978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.407978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03fb 53d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.407978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.407979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.407979 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.407979 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.407979 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.407979 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.417963 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.417963 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.417963 LLDP, length 82 [|LLDP] 18:31:21.417963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.417963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0402 f4f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.417963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.417963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.417963 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.417963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.417963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.427965 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.427965 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.427965 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.427965 LLDP, length 82 [|LLDP] 18:31:21.427965 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.427965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.427965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.427965 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.427965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 040a 9612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.427965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.437960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.437960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.437960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.437960 LLDP, length 82 [|LLDP] 18:31:21.437960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.437960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0412 3732 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.437960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.437961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.437961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.437961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.447978 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.447978 LLDP, length 82 [|LLDP] 18:31:21.447978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.447978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0419 d852 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.447978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.447978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.447978 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.447978 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.447978 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.447978 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.457957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.457957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.457957 LLDP, length 82 [|LLDP] 18:31:21.457958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.457958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0421 7972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.457958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.457958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.457958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.457958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.457958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.467957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.467958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.467958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.467958 LLDP, length 82 [|LLDP] 18:31:21.467958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.467958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.467958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.467958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.467958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0429 1a92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.467958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.477956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.477956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.477956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.477956 LLDP, length 82 [|LLDP] 18:31:21.477956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.477956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0430 bbb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.477956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.477957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.477957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.477957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.487953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.487953 LLDP, length 82 [|LLDP] 18:31:21.487953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.487953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0438 5cd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.487953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.487953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.487953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.487953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.487954 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.487954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.497954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.497954 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.497954 LLDP, length 82 [|LLDP] 18:31:21.497955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.497955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 043f fdf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.497955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.497955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.497955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.497955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.497955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.507953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.507953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.507953 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.507953 LLDP, length 82 [|LLDP] 18:31:21.507953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.507953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.507953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.507953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.507953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0447 9f12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.507953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.517958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.517958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.517958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.517958 LLDP, length 82 [|LLDP] 18:31:21.517958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.517958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 044f 4032 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.517958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.517959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.517959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.517959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.527956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.527956 LLDP, length 82 [|LLDP] 18:31:21.527957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.527957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0456 e152 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.527957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.527957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.527957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.527957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.527957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.527957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.537956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.537956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.537956 LLDP, length 82 [|LLDP] 18:31:21.537956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.537956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 045e 8272 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.537957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.537957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.537957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.537957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.537957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.547972 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.547972 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.547972 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.547972 LLDP, length 82 [|LLDP] 18:31:21.547972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.547972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.547972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.547972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.547972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0466 2392 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.547972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.557959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.557959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.557959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.557959 LLDP, length 82 [|LLDP] 18:31:21.557959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.557959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 046d c4b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.557959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.557959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.557959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.557959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.567963 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.567963 LLDP, length 82 [|LLDP] 18:31:21.567963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.567963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0475 65d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.567963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.567963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.567964 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.567964 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.567964 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.567964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.577959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.577960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.577960 LLDP, length 82 [|LLDP] 18:31:21.577960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.577960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 047d 06f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.577960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.577960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.577960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.577960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.577960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.587957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.587957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.587957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.587957 LLDP, length 82 [|LLDP] 18:31:21.587957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.587957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.587957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.587957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.587957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0484 a812 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.587957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.597956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.597956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.597956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.597956 LLDP, length 82 [|LLDP] 18:31:21.597956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.597956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 048c 4932 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.597956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.597956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.597956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.597956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.607956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.607956 LLDP, length 82 [|LLDP] 18:31:21.607957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.607957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0493 ea52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.607957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.607957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.607957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.607957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.607957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.607957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.617954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.617954 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.617954 LLDP, length 82 [|LLDP] 18:31:21.617954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.617954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 049b 8b72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.617954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.617955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.617955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.617955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.617955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.627959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.627959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.627959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.627959 LLDP, length 82 [|LLDP] 18:31:21.627959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.627959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.627960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.627960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.627960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04a3 2c92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.627960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.637961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.637961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.637961 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.637961 LLDP, length 82 [|LLDP] 18:31:21.637961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.637961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04aa cdb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.637961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.637961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.637961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.637961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.647967 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.647967 LLDP, length 82 [|LLDP] 18:31:21.647967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.647967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04b2 6ed2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.647967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.647967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.647968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.647968 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.647968 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.647968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.657956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.657956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.657956 LLDP, length 82 [|LLDP] 18:31:21.657956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.657956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04ba 0ff2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.657956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.657956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.657957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.657957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.657957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.667956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.667956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.667956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.667956 LLDP, length 82 [|LLDP] 18:31:21.667956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.667956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.667956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.667957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.667957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04c1 b112 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.667957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.677957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.677957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.677957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.677957 LLDP, length 82 [|LLDP] 18:31:21.677957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.677957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04c9 5232 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.677957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.677957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.677957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.677957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.687956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.687956 LLDP, length 82 [|LLDP] 18:31:21.687956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.687956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04d0 f352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.687956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.687957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.687957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.687957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.687957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.687957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.697955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.697955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.697955 LLDP, length 82 [|LLDP] 18:31:21.697955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.697955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04d8 9472 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.697956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.697956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.697956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.697956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.697956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.707956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.707956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.707956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.707956 LLDP, length 82 [|LLDP] 18:31:21.707956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.707956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.707956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.707956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.707957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04e0 3592 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.707957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.717956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.717956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.717956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.717956 LLDP, length 82 [|LLDP] 18:31:21.717956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.717957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04e7 d6b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.717957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.717957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.717957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.717957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.727964 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.727964 LLDP, length 82 [|LLDP] 18:31:21.727964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.727964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04ef 77d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.727964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.727964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.727964 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.727964 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.727964 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.727964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.737957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.737957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.737957 LLDP, length 82 [|LLDP] 18:31:21.737957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.737957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04f7 18f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.737957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.737957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.737957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.737957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.737957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.747972 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.747972 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.747973 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.747973 LLDP, length 82 [|LLDP] 18:31:21.747973 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.747973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.747973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.747973 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.747973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04fe ba12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.747973 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.757955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.757955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.757955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.757955 LLDP, length 82 [|LLDP] 18:31:21.757955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.757955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0506 5b32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.757955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.757955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.757955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.757955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.767955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.767956 LLDP, length 82 [|LLDP] 18:31:21.767956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.767956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 050d fc52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.767956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.767956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.767956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.767956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.767956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.767956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.777960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.777960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.777961 LLDP, length 82 [|LLDP] 18:31:21.777961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.777961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0515 9d72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.777961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.777961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.777961 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.777961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.777961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.787958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.787958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.787958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.787958 LLDP, length 82 [|LLDP] 18:31:21.787958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.787958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.787958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.787958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.787958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 051d 3e92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.787958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.797956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.797956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.797956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.797956 LLDP, length 82 [|LLDP] 18:31:21.797956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.797956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0524 dfb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.797956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.797956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.797956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.797956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.807956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.807956 LLDP, length 82 [|LLDP] 18:31:21.807956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.807956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 052c 80d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.807957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.807957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.807957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.807957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.807957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.807957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.817957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.817957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.817957 LLDP, length 82 [|LLDP] 18:31:21.817957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.817957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0534 21f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.817957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.817957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.817957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.817957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.817957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.827958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.827958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.827959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.827959 LLDP, length 82 [|LLDP] 18:31:21.827959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.827959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.827959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.827959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.827959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 053b c312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.827959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.837957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.837957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.837957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.837957 LLDP, length 82 [|LLDP] 18:31:21.837957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.837957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0543 6432 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.837957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.837957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.837957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.837957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.847956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.847956 LLDP, length 82 [|LLDP] 18:31:21.847956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.847956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 054b 0552 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.847956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.847956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.847956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.847956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.847956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.847956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.857956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.857956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.857956 LLDP, length 82 [|LLDP] 18:31:21.857956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.857956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0552 a672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.857956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.857956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.857956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.857956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.857956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.867955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.867955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.867955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.867955 LLDP, length 82 [|LLDP] 18:31:21.867955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.867955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.867955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.867956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.867956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 055a 4792 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.867956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.877955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.877955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.877955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.877955 LLDP, length 82 [|LLDP] 18:31:21.877956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.877956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0561 e8b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.877956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.877956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.877956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.877956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.887958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.887958 LLDP, length 82 [|LLDP] 18:31:21.887958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.887958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0569 89d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.887958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.887958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.887959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.887959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.887959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.887959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.897957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.897957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.897958 LLDP, length 82 [|LLDP] 18:31:21.897958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.897958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0571 2af2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.897958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.897958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.897958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.897958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.897958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.907958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.907958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.907958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.907958 LLDP, length 82 [|LLDP] 18:31:21.907958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.907958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.907958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.907958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.907959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0578 cc12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.907959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.917960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.917960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.917960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.917960 LLDP, length 82 [|LLDP] 18:31:21.917960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.917960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0580 6d32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.917960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.917960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.917960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.917961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.927955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.927955 LLDP, length 82 [|LLDP] 18:31:21.927955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.927955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0588 0e52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.927955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.927955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.927955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.927955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.927955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.927955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.937957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.937957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.937957 LLDP, length 82 [|LLDP] 18:31:21.937957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.937958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 058f af72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.937958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.937958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.937958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.937958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.937958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.947956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.947956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.947956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.947956 LLDP, length 82 [|LLDP] 18:31:21.947956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.947956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.947956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.947956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.947956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0597 5092 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.947956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.957955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.957955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.957955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.957955 LLDP, length 82 [|LLDP] 18:31:21.957955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.957955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 059e f1b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.957955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.957955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.957955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.957955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.967958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.967958 LLDP, length 82 [|LLDP] 18:31:21.967958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.967958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05a6 92d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.967959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.967959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.967959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.967959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.967959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.967959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.977955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.977955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.977955 LLDP, length 82 [|LLDP] 18:31:21.977956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.977956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05ae 33f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.977956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.977956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.977956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.977956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.977956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.987957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.987957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.987957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.987957 LLDP, length 82 [|LLDP] 18:31:21.987957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.987957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.987957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.987957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.987957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05b5 d512 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.987957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:21.997956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.997957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:21.997957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:21.997957 LLDP, length 82 [|LLDP] 18:31:21.997957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:21.997957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05bd 7632 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:21.997957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:21.997957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:21.997957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:21.997957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.007957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.007957 LLDP, length 82 [|LLDP] 18:31:22.007957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.007957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05c5 1752 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.007957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.007957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.007957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.007957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.007957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.007957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.017958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.017958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.017958 LLDP, length 82 [|LLDP] 18:31:22.017958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.017958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05cc b872 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.017958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.017958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.017958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.017958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.017958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.027955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.027955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.027955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.027956 LLDP, length 82 [|LLDP] 18:31:22.027956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.027956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.027956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.027956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.027956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05d4 5992 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.027956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.037958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.037959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.037959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.037959 LLDP, length 82 [|LLDP] 18:31:22.037959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.037959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05db fab2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.037959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.037959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.037959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.037959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.047956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.047956 LLDP, length 82 [|LLDP] 18:31:22.047956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.047956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05e3 9bd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.047956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.047956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.047956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.047957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.047957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.047957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.057955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.057955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.057955 LLDP, length 82 [|LLDP] 18:31:22.057955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.057955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05eb 3cf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.057955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.057955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.057955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.057956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.057956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.067956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.067956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.067956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.067956 LLDP, length 82 [|LLDP] 18:31:22.067956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.067957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.067957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.067957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.067957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05f2 de12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.067957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.077956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.077956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.077956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.077956 LLDP, length 82 [|LLDP] 18:31:22.077956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.077956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05fa 7f32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.077956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.077956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.077956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.077956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.087956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.087956 LLDP, length 82 [|LLDP] 18:31:22.087957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.087957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0602 2052 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.087957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.087957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.087957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.087957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.087957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.087957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.097955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.097955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.097955 LLDP, length 82 [|LLDP] 18:31:22.097955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.097955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0609 c172 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.097955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.097955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.097956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.097956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.097956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.107957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.107957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.107957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.107957 LLDP, length 82 [|LLDP] 18:31:22.107958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.107958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.107958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.107958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.107958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0611 6292 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.107958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.117957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.117958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.117958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.117958 LLDP, length 82 [|LLDP] 18:31:22.117958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.117958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0619 03b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.117958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.117958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.117958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.117958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.127957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.127957 LLDP, length 82 [|LLDP] 18:31:22.127957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.127957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0620 a4d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.127958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.127958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.127958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.127958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.127958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.127958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.137958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.137958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.137959 LLDP, length 82 [|LLDP] 18:31:22.137959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.137959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0628 45f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.137959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.137959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.137959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.137959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.137959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.147956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.147956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.147956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.147956 LLDP, length 82 [|LLDP] 18:31:22.147956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.147956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.147956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.147956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.147956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 062f e712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.147956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.157956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.157956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.157957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.157957 LLDP, length 82 [|LLDP] 18:31:22.157957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.157957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0637 8832 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.157957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.157957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.157957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.157957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.167957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.167957 LLDP, length 82 [|LLDP] 18:31:22.167957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.167957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 063f 2952 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.167957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.167957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.167957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.167957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.167957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.167957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.177956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.177956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.177956 LLDP, length 82 [|LLDP] 18:31:22.177956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.177956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0646 ca72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.177956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.177956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.177957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.177957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.177957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.187963 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.187963 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.187963 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.187963 LLDP, length 82 [|LLDP] 18:31:22.187963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.187963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.187963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.187963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.187963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 064e 6b92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.187963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.197955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.197955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.197955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.197955 LLDP, length 82 [|LLDP] 18:31:22.197955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.197955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0656 0cb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.197955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.197956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.197956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.197956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.207958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.207958 LLDP, length 82 [|LLDP] 18:31:22.207958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.207958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 065d add2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.207958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.207958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.207958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.207958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.207959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.207959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.217957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.217957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.217957 LLDP, length 82 [|LLDP] 18:31:22.217957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.217957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0665 4ef2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.217957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.217957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.217958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.217958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.217958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.227958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.227958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.227958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.227958 LLDP, length 82 [|LLDP] 18:31:22.227959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.227959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.227959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.227959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.227959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 066c f012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.227959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.237959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.237959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.237959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.237959 LLDP, length 82 [|LLDP] 18:31:22.237959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.237959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0674 9132 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.237959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.237959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.237959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.237959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.247958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.247958 LLDP, length 82 [|LLDP] 18:31:22.247958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.247959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 067c 3252 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.247959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.247959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.247959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.247959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.247959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.247959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.257956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.257956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.257957 LLDP, length 82 [|LLDP] 18:31:22.257957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.257957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0683 d372 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.257957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.257957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.257957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.257957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.257957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.267955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.267955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.267955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.267955 LLDP, length 82 [|LLDP] 18:31:22.267955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.267955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.267955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.267955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.267955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 068b 7492 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.267956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.277956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.277957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.277957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.277957 LLDP, length 82 [|LLDP] 18:31:22.277957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.277957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0693 15b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.277957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.277957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.277957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.277957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.287959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.287959 LLDP, length 82 [|LLDP] 18:31:22.287959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.287959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 069a b6d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.287959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.287959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.287959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.287959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.287959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.287959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.297956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.297956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.297956 LLDP, length 82 [|LLDP] 18:31:22.297956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.297956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06a2 57f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.297956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.297956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.297956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.297956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.297956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.307960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.307960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.307960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.307960 LLDP, length 82 [|LLDP] 18:31:22.307960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.307961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.307961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.307961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.307961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06a9 f912 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.307961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.317955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.317956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.317956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.317956 LLDP, length 82 [|LLDP] 18:31:22.317956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.317956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06b1 9a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.317956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.317956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.317956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.317956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.327955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.327955 LLDP, length 82 [|LLDP] 18:31:22.327955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.327955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06b9 3b52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.327955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.327955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.327956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.327956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.327956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.327956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.337959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.337959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.337959 LLDP, length 82 [|LLDP] 18:31:22.337959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.337959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06c0 dc72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.337959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.337959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.337959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.337959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.337959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.347956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.347956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.347956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.347956 LLDP, length 82 [|LLDP] 18:31:22.347956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.347957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.347957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.347957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.347957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06c8 7d92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.347957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.357957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.357958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.357958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.357958 LLDP, length 82 [|LLDP] 18:31:22.357958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.357958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06d0 1eb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.357958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.357958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.357958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.357958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.367955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.367955 LLDP, length 82 [|LLDP] 18:31:22.367955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.367955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06d7 bfd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.367955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.367956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.367956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.367956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.367956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.367956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.377956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.377957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.377957 LLDP, length 82 [|LLDP] 18:31:22.377957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.377957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06df 60f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.377957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.377957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.377957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.377957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.377957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.387960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.387960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.387960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.387960 LLDP, length 82 [|LLDP] 18:31:22.387960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.387960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.387960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.387960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.387960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06e7 0212 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.387961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.397956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.397956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.397956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.397956 LLDP, length 82 [|LLDP] 18:31:22.397956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.397957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06ee a332 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.397957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.397957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.397957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.397957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.407955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.407956 LLDP, length 82 [|LLDP] 18:31:22.407956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.407956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06f6 4452 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.407956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.407956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.407956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.407956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.407956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.407956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.417957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.417957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.417957 LLDP, length 82 [|LLDP] 18:31:22.417957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.417957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06fd e572 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.417957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.417957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.417957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.417958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.417958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.427959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.427959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.427960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.427960 LLDP, length 82 [|LLDP] 18:31:22.427960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.427960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.427960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.427960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.427960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0705 8692 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.427960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.437958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.437958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.437959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.437959 LLDP, length 82 [|LLDP] 18:31:22.437959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.437959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 070d 27b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.437959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.437959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.437959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.437959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.447955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.447955 LLDP, length 82 [|LLDP] 18:31:22.447955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.447955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0714 c8d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.447955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.447955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.447955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.447955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.447956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.447956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.457956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.457956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.457957 LLDP, length 82 [|LLDP] 18:31:22.457957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.457957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 071c 69f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.457957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.457957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.457957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.457957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.457957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.467956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.467956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.467956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.467956 LLDP, length 82 [|LLDP] 18:31:22.467956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.467957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.467957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.467957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.467957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0724 0b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.467957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.477956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.477956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.477956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.477956 LLDP, length 82 [|LLDP] 18:31:22.477956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.477956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 072b ac32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.477956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.477956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.477956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.477956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.487958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.487958 LLDP, length 82 [|LLDP] 18:31:22.487958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.487958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0733 4d52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.487958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.487958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.487959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.487959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.487959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.487959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.497957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.497957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.497957 LLDP, length 82 [|LLDP] 18:31:22.497957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.497957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 073a ee72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.497957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.497957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.497957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.497957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.497958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.507956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.507956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.507956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.507956 LLDP, length 82 [|LLDP] 18:31:22.507956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.507956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.507956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.507956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.507956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0742 8f92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.507956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.517956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.517956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.517956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.517956 LLDP, length 82 [|LLDP] 18:31:22.517956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.517956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 074a 30b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.517956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.517956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.517956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.517956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.527955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.527955 LLDP, length 82 [|LLDP] 18:31:22.527956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.527956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0751 d1d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.527956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.527956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.527956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.527956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.527956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.527956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.537958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.537958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.537958 LLDP, length 82 [|LLDP] 18:31:22.537958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.537958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0759 72f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.537958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.537958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.537958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.537958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.537958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.547958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.547958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.547958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.547958 LLDP, length 82 [|LLDP] 18:31:22.547958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.547958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.547958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.547958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.547958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0761 1412 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.547958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.557956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.557956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.557956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.557956 LLDP, length 82 [|LLDP] 18:31:22.557956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.557956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0768 b532 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.557957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.557957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.557957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.557957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.567981 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.567981 LLDP, length 82 [|LLDP] 18:31:22.567981 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.567981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0770 5652 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.567981 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.567981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.567981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.567981 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.567981 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.567981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.577958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.577958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.577958 LLDP, length 82 [|LLDP] 18:31:22.577958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.577958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0777 f772 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.577958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.577958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.577958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.577958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.577958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.587966 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.587966 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.587967 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.587967 LLDP, length 82 [|LLDP] 18:31:22.587967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.587967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.587967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.587967 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.587967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 077f 9892 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.587967 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.597957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.597957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.597957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.597957 LLDP, length 82 [|LLDP] 18:31:22.597957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.597957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0787 39b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.597957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.597957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.597957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.597957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.607963 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.607963 LLDP, length 82 [|LLDP] 18:31:22.607963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.607963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 078e dad2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.607963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.607963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.607963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.607963 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.607963 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.607963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.617955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.617955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.617955 LLDP, length 82 [|LLDP] 18:31:22.617955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.617955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0796 7bf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.617955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.617955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.617955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.617956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.617956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.627962 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.627962 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.627962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.627962 LLDP, length 82 [|LLDP] 18:31:22.627962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.627962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.627962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.627962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.627962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 079e 1d12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.627962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.637961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.637961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.637961 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.637961 LLDP, length 82 [|LLDP] 18:31:22.637961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.637961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07a5 be32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.637962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.637962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.637962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.637962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.647962 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.647962 LLDP, length 82 [|LLDP] 18:31:22.647962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.647962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07ad 5f52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.647962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.647962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.647962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.647962 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.647962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.647962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.657956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.657956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.657956 LLDP, length 82 [|LLDP] 18:31:22.657956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.657957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07b5 0072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.657957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.657957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.657957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.657957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.657957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.667956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.667957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.667957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.667957 LLDP, length 82 [|LLDP] 18:31:22.667957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.667957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.667957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.667957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.667957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07bc a192 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.667957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.677956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.677956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.677956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.677956 LLDP, length 82 [|LLDP] 18:31:22.677956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.677956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07c4 42b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.677956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.677956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.677956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.677956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.687958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.687958 LLDP, length 82 [|LLDP] 18:31:22.687958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.687958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07cb e3d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.687958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.687958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.687958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.687958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.687958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.687959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.697956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.697956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.697956 LLDP, length 82 [|LLDP] 18:31:22.697956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.697956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07d3 84f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.697956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.697956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.697957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.697957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.697957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.707956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.707956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.707956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.707956 LLDP, length 82 [|LLDP] 18:31:22.707956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.707956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.707957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.707957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.707957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07db 2612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.707957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.717957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.717957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.717958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.717958 LLDP, length 82 [|LLDP] 18:31:22.717958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.717958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07e2 c732 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.717958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.717958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.717958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.717958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.727955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.727955 LLDP, length 82 [|LLDP] 18:31:22.727955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.727956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07ea 6852 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.727956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.727956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.727956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.727956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.727956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.727956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.737959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.737959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.737959 LLDP, length 82 [|LLDP] 18:31:22.737959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.737959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07f2 0972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.737959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.737959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.737959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.737959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.737959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.747957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.747957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.747957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.747957 LLDP, length 82 [|LLDP] 18:31:22.747957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.747958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.747958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.747958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.747958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07f9 aa92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.747958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.757957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.757957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.757957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.757957 LLDP, length 82 [|LLDP] 18:31:22.757957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.757957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0801 4bb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.757957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.757957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.757957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.757957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.767956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.767956 LLDP, length 82 [|LLDP] 18:31:22.767956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.767956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0808 ecd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.767956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.767956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.767956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.767957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.767957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.767957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.777955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.777955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.777956 LLDP, length 82 [|LLDP] 18:31:22.777956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.777956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0810 8df2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.777956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.777956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.777956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.777956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.777956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.787957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.787957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.787957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.787957 LLDP, length 82 [|LLDP] 18:31:22.787957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.787957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.787957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.787957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.787957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0818 2f12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.787957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.797957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.797957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.797957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.797957 LLDP, length 82 [|LLDP] 18:31:22.797957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.797957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 081f d032 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.797957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.797957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.797957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.797957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.807955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.807955 LLDP, length 82 [|LLDP] 18:31:22.807955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.807955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0827 7152 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.807955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.807955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.807955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.807956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.807956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.807956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.817955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.817955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.817955 LLDP, length 82 [|LLDP] 18:31:22.817955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.817955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 082f 1272 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.817955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.817956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.817956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.817956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.817956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.827957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.827957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.827957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.827957 LLDP, length 82 [|LLDP] 18:31:22.827957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.827957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.827957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.827957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.827957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0836 b392 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.827957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.837961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.837962 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.837962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.837962 LLDP, length 82 [|LLDP] 18:31:22.837962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.837962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 083e 54b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.837962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.837962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.837962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.837962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.847957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.847957 LLDP, length 82 [|LLDP] 18:31:22.847957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.847957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0845 f5d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.847957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.847957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.847957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.847957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.847957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.847957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.857958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.857958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.857958 LLDP, length 82 [|LLDP] 18:31:22.857958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.857958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 084d 96f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.857958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.857958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.857958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.857958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.857958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.867955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.867955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.867955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.867956 LLDP, length 82 [|LLDP] 18:31:22.867956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.867956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.867956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.867956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.867956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0855 3812 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.867956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.877959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.877959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.877959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.877959 LLDP, length 82 [|LLDP] 18:31:22.877959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.877959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 085c d932 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.877960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.877960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.877960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.877960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.887958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.887958 LLDP, length 82 [|LLDP] 18:31:22.887958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.887958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0864 7a52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.887958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.887958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.887958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.887959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.887959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.887959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.897956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.897956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.897956 LLDP, length 82 [|LLDP] 18:31:22.897956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.897956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 086c 1b72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.897956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.897956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.897956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.897957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.897957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.907955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.907955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.907955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.907955 LLDP, length 82 [|LLDP] 18:31:22.907955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.907955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.907955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.907955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.907955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0873 bc92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.907955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.917958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.917958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.917958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.917958 LLDP, length 82 [|LLDP] 18:31:22.917959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.917959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 087b 5db2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.917959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.917959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.917959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.917959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.927959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.927959 LLDP, length 82 [|LLDP] 18:31:22.927959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.927959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0882 fed2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.927959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.927959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.927959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.927959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.927959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.927959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.937959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.937959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.937959 LLDP, length 82 [|LLDP] 18:31:22.937959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.937959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 088a 9ff2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.937959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.937959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.937959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.937960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.937960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.947958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.947958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.947958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.947958 LLDP, length 82 [|LLDP] 18:31:22.947958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.947958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.947958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.947958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.947958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0892 4112 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.947958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.957958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.957958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.957958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.957958 LLDP, length 82 [|LLDP] 18:31:22.957958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.957958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0899 e232 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.957958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.957958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.957958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.957959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.967955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.967955 LLDP, length 82 [|LLDP] 18:31:22.967955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.967955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08a1 8352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.967955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.967955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.967955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.967955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.967955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.967956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.977955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.977955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.977955 LLDP, length 82 [|LLDP] 18:31:22.977955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.977955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08a9 2472 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.977955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.977955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.977955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.977955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.977955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.987957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.987957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.987957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.987958 LLDP, length 82 [|LLDP] 18:31:22.987958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.987958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.987958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.987958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.987958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08b0 c592 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.987958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:22.997954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.997954 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:22.997954 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:22.997954 LLDP, length 82 [|LLDP] 18:31:22.997954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:22.997954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08b8 66b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:22.997954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:22.997954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:22.997955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:22.997955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.007954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.007954 LLDP, length 82 [|LLDP] 18:31:23.007955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.007955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08c0 07d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.007955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.007955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.007955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.007955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.007955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.007955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.017957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.017957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.017957 LLDP, length 82 [|LLDP] 18:31:23.017957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.017957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08c7 a8f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.017957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.017957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.017957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.017957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.017957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.027956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.027956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.027956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.027956 LLDP, length 82 [|LLDP] 18:31:23.027956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.027957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.027957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.027957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.027957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08cf 4a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.027957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.037958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.037958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.037958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.037959 LLDP, length 82 [|LLDP] 18:31:23.037959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.037959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08d6 eb32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.037959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.037959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.037959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.037959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.047957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.047957 LLDP, length 82 [|LLDP] 18:31:23.047957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.047957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08de 8c52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.047957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.047957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.047957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.047958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.047958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.047958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.057958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.057958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.057958 LLDP, length 82 [|LLDP] 18:31:23.057958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.057958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08e6 2d72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.057959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.057959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.057959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.057959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.057959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.067956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.067956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.067956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.067956 LLDP, length 82 [|LLDP] 18:31:23.067956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.067957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.067957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.067957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.067957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08ed ce92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.067957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.077957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.077957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.077957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.077957 LLDP, length 82 [|LLDP] 18:31:23.077957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.077957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08f5 6fb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.077957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.077958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.077958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.077958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.087956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.087957 LLDP, length 82 [|LLDP] 18:31:23.087957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.087957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08fd 10d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.087957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.087957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.087957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.087957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.087957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.087957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.097956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.097956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.097956 LLDP, length 82 [|LLDP] 18:31:23.097956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.097956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0904 b1f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.097956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.097956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.097956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.097956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.097956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.107955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.107955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.107955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.107955 LLDP, length 82 [|LLDP] 18:31:23.107955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.107955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.107955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.107955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.107955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 090c 5312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.107955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.117956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.117956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.117956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.117957 LLDP, length 82 [|LLDP] 18:31:23.117957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.117957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0913 f432 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.117957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.117957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.117957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.117957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.127958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.127958 LLDP, length 82 [|LLDP] 18:31:23.127958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.127958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 091b 9552 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.127958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.127958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.127958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.127958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.127958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.127958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.137959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.137959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.137959 LLDP, length 82 [|LLDP] 18:31:23.137960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.137960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0923 3672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.137960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.137960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.137960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.137960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.137960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.147958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.147958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.147958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.147958 LLDP, length 82 [|LLDP] 18:31:23.147958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.147958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.147958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.147959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.147959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 092a d792 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.147959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.157957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.157957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.157957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.157957 LLDP, length 82 [|LLDP] 18:31:23.157957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.157957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0932 78b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.157957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.157957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.157957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.157957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.167957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.167957 LLDP, length 82 [|LLDP] 18:31:23.167957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.167957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 093a 19d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.167957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.167957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.167957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.167957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.167957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.167957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.177955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.177955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.177955 LLDP, length 82 [|LLDP] 18:31:23.177955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.177955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0941 baf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.177956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.177956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.177956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.177956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.177956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.187961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.187961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.187961 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.187961 LLDP, length 82 [|LLDP] 18:31:23.187961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.187962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.187962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.187962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.187962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0949 5c12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.187962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.197957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.197957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.197957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.197957 LLDP, length 82 [|LLDP] 18:31:23.197958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.197958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0950 fd32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.197958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.197958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.197958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.197958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.207955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.207955 LLDP, length 82 [|LLDP] 18:31:23.207955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.207955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0958 9e52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.207955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.207956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.207956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.207956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.207956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.207956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.217961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.217961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.217961 LLDP, length 82 [|LLDP] 18:31:23.217962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.217962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0960 3f72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.217962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.217962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.217962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.217962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.217962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.227971 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.227972 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.227972 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.227972 LLDP, length 82 [|LLDP] 18:31:23.227972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.227972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.227972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.227972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.227972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0967 e092 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.227972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.237963 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.237963 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.237963 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.237964 LLDP, length 82 [|LLDP] 18:31:23.237964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.237964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 096f 81b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.237964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.237964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.237964 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.237964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.247967 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.247967 LLDP, length 82 [|LLDP] 18:31:23.247967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.247967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0977 22d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.247967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.247968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.247968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.247968 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.247968 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.247968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.257961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.257961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.257962 LLDP, length 82 [|LLDP] 18:31:23.257962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.257962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 097e c3f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.257962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.257962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.257962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.257962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.257962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.267958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.267958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.267959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.267959 LLDP, length 82 [|LLDP] 18:31:23.267959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.267959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.267959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.267959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.267959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0986 6512 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.267959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.277956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.277956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.277956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.277956 LLDP, length 82 [|LLDP] 18:31:23.277956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.277956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 098e 0632 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.277956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.277956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.277957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.277957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.287960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.287960 LLDP, length 82 [|LLDP] 18:31:23.287960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.287960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0995 a752 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.287960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.287960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.287960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.287960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.287960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.287960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.297954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.297954 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.297955 LLDP, length 82 [|LLDP] 18:31:23.297955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.297955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 099d 4872 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.297955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.297955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.297955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.297955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.297955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.307955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.307955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.307955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.307955 LLDP, length 82 [|LLDP] 18:31:23.307955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.307955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.307956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.307956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.307956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09a4 e992 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.307956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.317955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.317955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.317955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.317955 LLDP, length 82 [|LLDP] 18:31:23.317955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.317955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09ac 8ab2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.317955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.317955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.317956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.317956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.327953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.327953 LLDP, length 82 [|LLDP] 18:31:23.327953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.327953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09b4 2bd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.327953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.327953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.327954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.327954 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.327954 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.327954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.337955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.337955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.337955 LLDP, length 82 [|LLDP] 18:31:23.337955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.337955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09bb ccf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.337955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.337955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.337956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.337956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.337956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.347953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.347953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.347953 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.347953 LLDP, length 82 [|LLDP] 18:31:23.347953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.347953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.347953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.347953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.347953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09c3 6e12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.347953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.357954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.357954 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.357954 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.357955 LLDP, length 82 [|LLDP] 18:31:23.357955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.357955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09cb 0f32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.357955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.357955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.357955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.357955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.367954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.367954 LLDP, length 82 [|LLDP] 18:31:23.367954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.367954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09d2 b052 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.367954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.367955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.367955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.367955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.367955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.367955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.377955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.377955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.377955 LLDP, length 82 [|LLDP] 18:31:23.377955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.377955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09da 5172 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.377955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.377955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.377955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.377955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.377955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.387957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.387957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.387957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.387957 LLDP, length 82 [|LLDP] 18:31:23.387957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.387957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.387957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.387957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.387957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09e1 f292 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.387957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.397954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.397954 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.397954 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.397954 LLDP, length 82 [|LLDP] 18:31:23.397954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.397954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09e9 93b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.397954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.397954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.397954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.397954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.407953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.407953 LLDP, length 82 [|LLDP] 18:31:23.407953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.407953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09f1 34d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.407953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.407953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.407953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.407953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.407954 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.407954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.417953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.417953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.417953 LLDP, length 82 [|LLDP] 18:31:23.417953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.417953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09f8 d5f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.417953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.417953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.417953 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.417953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.417953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.427957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.427957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.427957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.427957 LLDP, length 82 [|LLDP] 18:31:23.427957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.427957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.427957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.427957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.427957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a00 7712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.427957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.437956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.437956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.437956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.437956 LLDP, length 82 [|LLDP] 18:31:23.437957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.437957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a08 1832 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.437957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.437957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.437957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.437957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.447952 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.447952 LLDP, length 82 [|LLDP] 18:31:23.447953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.447953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a0f b952 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.447953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.447953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.447953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.447953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.447953 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.447953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.457953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.457953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.457953 LLDP, length 82 [|LLDP] 18:31:23.457954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.457954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a17 5a72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.457954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.457954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.457954 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.457954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.457954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.467958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.467958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.467958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.467958 LLDP, length 82 [|LLDP] 18:31:23.467959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.467959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.467959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.467959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.467959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a1e fb92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.467959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.477955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.477955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.477955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.477955 LLDP, length 82 [|LLDP] 18:31:23.477956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.477956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a26 9cb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.477956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.477956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.477956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.477956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.487956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.487956 LLDP, length 82 [|LLDP] 18:31:23.487956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.487956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a2e 3dd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.487956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.487956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.487956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.487957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.487957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.487957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.497957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.497957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.497957 LLDP, length 82 [|LLDP] 18:31:23.497957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.497957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a35 def2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.497957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.497957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.497957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.497957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.497957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.507952 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.507952 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.507952 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.507952 LLDP, length 82 [|LLDP] 18:31:23.507953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.507953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.507953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.507953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.507953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a3d 8012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.507953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.517953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.517953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.517953 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.517953 LLDP, length 82 [|LLDP] 18:31:23.517953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.517953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a45 2132 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.517954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.517954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.517954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.517954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.527955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.527955 LLDP, length 82 [|LLDP] 18:31:23.527955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.527955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a4c c252 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.527955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.527955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.527955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.527955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.527955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.527955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.537958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.537958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.537958 LLDP, length 82 [|LLDP] 18:31:23.537958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.537958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a54 6372 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.537958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.537958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.537958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.537958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.537958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.547955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.547955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.547955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.547955 LLDP, length 82 [|LLDP] 18:31:23.547955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.547955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.547955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.547955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.547955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a5c 0492 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.547955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.557959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.557959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.557959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.557959 LLDP, length 82 [|LLDP] 18:31:23.557959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.557959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a63 a5b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.557959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.557959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.557959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.557959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.567960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.567960 LLDP, length 82 [|LLDP] 18:31:23.567960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.567960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a6b 46d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.567960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.567961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.567961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.567961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.567961 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.567961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.577954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.577954 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.577954 LLDP, length 82 [|LLDP] 18:31:23.577954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.577954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a72 e7f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.577954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.577954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.577954 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.577954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.577954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.587995 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.587996 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.587996 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.587996 LLDP, length 82 [|LLDP] 18:31:23.587996 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.587996 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.587996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.587996 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.587996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a7a 8912 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.587996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.597965 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.597965 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.597966 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.597966 LLDP, length 82 [|LLDP] 18:31:23.597966 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.597966 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a82 2a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.597966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.597966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.597966 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.597966 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.607963 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.607963 LLDP, length 82 [|LLDP] 18:31:23.607963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.607963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a89 cb52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.607963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.607963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.607963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.607963 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.607963 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.607964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.617960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.617960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.617960 LLDP, length 82 [|LLDP] 18:31:23.617960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.617960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a91 6c72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.617960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.617960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.617961 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.617961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.617961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.627956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.627956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.627956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.627956 LLDP, length 82 [|LLDP] 18:31:23.627956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.627956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.627956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.627956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.627956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a99 0d92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.627957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.637955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.637955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.637955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.637956 LLDP, length 82 [|LLDP] 18:31:23.637956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.637956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aa0 aeb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.637956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.637956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.637956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.637956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.648005 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.648005 LLDP, length 82 [|LLDP] 18:31:23.648005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.648005 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aa8 4fd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.648005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.648005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.648005 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.648005 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.648005 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.648006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.657986 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.657986 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.657986 LLDP, length 82 [|LLDP] 18:31:23.657986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.657986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aaf f0f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.657986 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.657986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.657986 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.657986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.657987 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.667961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.667961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.667961 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.667961 LLDP, length 82 [|LLDP] 18:31:23.667961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.667961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.667961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.667961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.667961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ab7 9212 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.667961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.677964 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.677964 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.677964 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.677964 LLDP, length 82 [|LLDP] 18:31:23.677964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.677964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0abf 3332 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.677964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.677964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.677964 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.677964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.687962 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.687962 LLDP, length 82 [|LLDP] 18:31:23.687962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.687962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ac6 d452 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.687962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.687963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.687963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.687963 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.687963 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.687963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.697958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.697958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.697958 LLDP, length 82 [|LLDP] 18:31:23.697958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.697958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ace 7572 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.697958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.697958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.697958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.697959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.697959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.707957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.707957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.707957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.707957 LLDP, length 82 [|LLDP] 18:31:23.707957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.707957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.707957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.707957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.707957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ad6 1692 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.707958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.717956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.717956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.717956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.717956 LLDP, length 82 [|LLDP] 18:31:23.717957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.717957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0add b7b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.717957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.717957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.717957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.717957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.727957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.727957 LLDP, length 82 [|LLDP] 18:31:23.727957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.727957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ae5 58d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.727958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.727958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.727958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.727958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.727958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.727958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.737959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.737959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.737960 LLDP, length 82 [|LLDP] 18:31:23.737960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.737960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aec f9f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.737960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.737960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.737960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.737960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.737960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.747961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.747961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.747961 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.747961 LLDP, length 82 [|LLDP] 18:31:23.747962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.747962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.747962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.747962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.747962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0af4 9b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.747962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.757956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.757956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.757956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.757956 LLDP, length 82 [|LLDP] 18:31:23.757956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.757956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0afc 3c32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.757957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.757957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.757957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.757957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.767956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.767956 LLDP, length 82 [|LLDP] 18:31:23.767956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.767956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b03 dd52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.767956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.767956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.767956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.767956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.767956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.767957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.777957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.777957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.777957 LLDP, length 82 [|LLDP] 18:31:23.777957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.777957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b0b 7e72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.777957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.777957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.777957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.777958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.777958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.787957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.787957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.787957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.787957 LLDP, length 82 [|LLDP] 18:31:23.787957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.787957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.787957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.787957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.787957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b13 1f92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.787957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.797961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.797961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.797961 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.797962 LLDP, length 82 [|LLDP] 18:31:23.797962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.797962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b1a c0b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.797962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.797962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.797962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.797962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.807957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.807957 LLDP, length 82 [|LLDP] 18:31:23.807957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.807958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b22 61d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.807958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.807958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.807958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.807958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.807958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.807958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.817958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.817958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.817958 LLDP, length 82 [|LLDP] 18:31:23.817958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.817959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b2a 02f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.817959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.817959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.817959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.817959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.817959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.827955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.827956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.827956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.827956 LLDP, length 82 [|LLDP] 18:31:23.827956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.827956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.827956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.827956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.827956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b31 a412 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.827956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.837957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.837957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.837957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.837957 LLDP, length 82 [|LLDP] 18:31:23.837957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.837957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b39 4532 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.837957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.837957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.837957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.837957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.847964 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.847964 LLDP, length 82 [|LLDP] 18:31:23.847964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.847964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b40 e652 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.847965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.847965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.847965 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.847965 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.847965 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.847965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.857957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.857957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.857957 LLDP, length 82 [|LLDP] 18:31:23.857958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.857958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b48 8772 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.857958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.857958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.857958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.857958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.857958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.867957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.867957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.867957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.867957 LLDP, length 82 [|LLDP] 18:31:23.867957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.867958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.867958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.867958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.867958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b50 2892 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.867958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.877957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.877957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.877957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.877957 LLDP, length 82 [|LLDP] 18:31:23.877957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.877957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b57 c9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.877957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.877957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.877957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.877957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.887957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.887957 LLDP, length 82 [|LLDP] 18:31:23.887957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.887957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b5f 6ad2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.887957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.887957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.887957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.887957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.887957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.887957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.897961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.897961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.897961 LLDP, length 82 [|LLDP] 18:31:23.897962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.897962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b67 0bf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.897962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.897962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.897962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.897962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.897962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.907956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.907957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.907957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.907957 LLDP, length 82 [|LLDP] 18:31:23.907957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.907957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.907957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.907957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.907957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b6e ad12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.907957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.917960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.917960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.917960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.917960 LLDP, length 82 [|LLDP] 18:31:23.917960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.917960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b76 4e32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.917960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.917961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.917961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.917961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.927958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.927958 LLDP, length 82 [|LLDP] 18:31:23.927958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.927958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b7d ef52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.927958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.927958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.927958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.927958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.927958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.927959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.937954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.937955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.937955 LLDP, length 82 [|LLDP] 18:31:23.937955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.937955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b85 9072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.937955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.937955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.937955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.937955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.937955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.947958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.947958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.947958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.947958 LLDP, length 82 [|LLDP] 18:31:23.947958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.947958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.947959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.947959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.947959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b8d 3192 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.947959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.957956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.957956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.957956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.957956 LLDP, length 82 [|LLDP] 18:31:23.957956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.957956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b94 d2b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.957956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.957956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.957956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.957956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.967956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.967956 LLDP, length 82 [|LLDP] 18:31:23.967956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.967956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b9c 73d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.967957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.967957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.967957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.967957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.967957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.967957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.977956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.977957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.977957 LLDP, length 82 [|LLDP] 18:31:23.977957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.977957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ba4 14f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.977957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.977957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.977957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.977957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.977957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.987956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.987956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.987956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.987956 LLDP, length 82 [|LLDP] 18:31:23.987956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.987956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.987957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.987957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.987957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bab b612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.987957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:23.997960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.997960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:23.997960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:23.997960 LLDP, length 82 [|LLDP] 18:31:23.997960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:23.997960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bb3 5732 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:23.997960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:23.997960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:23.997960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:23.997960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.007956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.007956 LLDP, length 82 [|LLDP] 18:31:24.007956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.007956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bba f852 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.007957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.007957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.007957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.007957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.007957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.007957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.017956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.017956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.017956 LLDP, length 82 [|LLDP] 18:31:24.017956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.017957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bc2 9972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.017957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.017957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.017957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.017957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.017957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.027957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.027957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.027957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.027957 LLDP, length 82 [|LLDP] 18:31:24.027957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.027957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.027957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.027957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.027957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bca 3a92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.027957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.037956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.037956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.037956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.037956 LLDP, length 82 [|LLDP] 18:31:24.037956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.037956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bd1 dbb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.037956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.037956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.037956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.037956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.047962 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.047962 LLDP, length 82 [|LLDP] 18:31:24.047962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.047962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bd9 7cd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.047962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.047962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.047962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.047962 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.047962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.047962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.057957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.057957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.057957 LLDP, length 82 [|LLDP] 18:31:24.057957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.057957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0be1 1df2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.057957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.057958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.057958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.057958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.057958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.067956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.067956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.067956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.067956 LLDP, length 82 [|LLDP] 18:31:24.067956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.067956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.067956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.067956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.067957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0be8 bf12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.067957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.077958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.077958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.077958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.077958 LLDP, length 82 [|LLDP] 18:31:24.077958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.077958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bf0 6032 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.077959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.077959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.077959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.077959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.087958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.087958 LLDP, length 82 [|LLDP] 18:31:24.087958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.087958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bf8 0152 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.087958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.087958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.087958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.087958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.087958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.087958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.097962 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.097962 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.097962 LLDP, length 82 [|LLDP] 18:31:24.097962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.097962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bff a272 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.097962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.097962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.097962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.097962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.097962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.107958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.107958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.107958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.107958 LLDP, length 82 [|LLDP] 18:31:24.107958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.107958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.107958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.107958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.107958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c07 4392 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.107958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.117958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.117958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.117958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.117958 LLDP, length 82 [|LLDP] 18:31:24.117958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.117958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c0e e4b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.117958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.117958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.117958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.117958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.127957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.127957 LLDP, length 82 [|LLDP] 18:31:24.127957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.127957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c16 85d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.127957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.127957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.127957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.127957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.127957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.127957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.137957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.137957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.137957 LLDP, length 82 [|LLDP] 18:31:24.137957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.137957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c1e 26f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.137957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.137957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.137957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.137957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.137957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.147958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.147958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.147958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.147958 LLDP, length 82 [|LLDP] 18:31:24.147958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.147958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.147959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.147959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.147959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c25 c812 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.147959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.157956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.157956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.157957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.157957 LLDP, length 82 [|LLDP] 18:31:24.157957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.157957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c2d 6932 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.157957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.157957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.157957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.157957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.167957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.167957 LLDP, length 82 [|LLDP] 18:31:24.167957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.167957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c35 0a52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.167957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.167957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.167957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.167957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.167957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.167957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.177957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.177958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.177958 LLDP, length 82 [|LLDP] 18:31:24.177958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.177958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c3c ab72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.177958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.177958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.177958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.177958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.177958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.187957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.187957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.187957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.187957 LLDP, length 82 [|LLDP] 18:31:24.187957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.187957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.187958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.187958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.187958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c44 4c92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.187958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.197961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.197961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.197961 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.197961 LLDP, length 82 [|LLDP] 18:31:24.197961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.197961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c4b edb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.197961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.197961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.197961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.197961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.207959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.207959 LLDP, length 82 [|LLDP] 18:31:24.207959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.207959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c53 8ed2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.207959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.207959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.207959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.207959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.207959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.207959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.217958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.217958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.217958 LLDP, length 82 [|LLDP] 18:31:24.217958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.217958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c5b 2ff2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.217958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.217959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.217959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.217959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.217959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.227957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.227957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.227957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.227957 LLDP, length 82 [|LLDP] 18:31:24.227957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.227957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.227958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.227958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.227958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c62 d112 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.227958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.237957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.237957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.237957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.237957 LLDP, length 82 [|LLDP] 18:31:24.237957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.237957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c6a 7232 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.237957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.237957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.237957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.237957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.247957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.247957 LLDP, length 82 [|LLDP] 18:31:24.247957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.247957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c72 1352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.247957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.247957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.247957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.247957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.247957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.247957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.257956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.257957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.257957 LLDP, length 82 [|LLDP] 18:31:24.257957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.257957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c79 b472 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.257957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.257957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.257957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.257957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.257957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.267958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.267958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.267958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.267958 LLDP, length 82 [|LLDP] 18:31:24.267959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.267959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.267959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.267959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.267959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c81 5592 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.267959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.277957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.277957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.277957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.277957 LLDP, length 82 [|LLDP] 18:31:24.277957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.277958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c88 f6b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.277958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.277958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.277958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.277958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.287956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.287956 LLDP, length 82 [|LLDP] 18:31:24.287956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.287956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c90 97d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.287956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.287956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.287956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.287956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.287956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.287956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.297959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.297959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.297959 LLDP, length 82 [|LLDP] 18:31:24.297959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.297959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c98 38f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.297959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.297959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.297959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.297959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.297960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.307959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.307959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.307959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.307959 LLDP, length 82 [|LLDP] 18:31:24.307959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.307959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.307959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.307960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.307960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c9f da12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.307960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.317957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.317957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.317957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.317957 LLDP, length 82 [|LLDP] 18:31:24.317957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.317957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ca7 7b32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.317957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.317958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.317958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.317958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.327958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.327958 LLDP, length 82 [|LLDP] 18:31:24.327958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.327958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0caf 1c52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.327958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.327958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.327958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.327958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.327958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.327958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.337957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.337957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.337957 LLDP, length 82 [|LLDP] 18:31:24.337957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.337957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cb6 bd72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.337957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.337958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.337958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.337958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.337958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.347959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.347959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.347959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.347959 LLDP, length 82 [|LLDP] 18:31:24.347959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.347959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.347959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.347960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.347960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cbe 5e92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.347960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.357957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.357957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.357957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.357957 LLDP, length 82 [|LLDP] 18:31:24.357957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.357958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cc5 ffb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.357958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.357958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.357958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.357958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.367957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.367957 LLDP, length 82 [|LLDP] 18:31:24.367957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.367957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ccd a0d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.367957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.367957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.367957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.367957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.367957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.367957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.377956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.377956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.377957 LLDP, length 82 [|LLDP] 18:31:24.377957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.377957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cd5 41f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.377957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.377957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.377957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.377957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.377957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.387956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.387956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.387956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.387956 LLDP, length 82 [|LLDP] 18:31:24.387956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.387956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.387957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.387957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.387957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cdc e312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.387957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.397958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.397958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.397959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.397959 LLDP, length 82 [|LLDP] 18:31:24.397959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.397959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ce4 8432 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.397959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.397959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.397959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.397959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.407956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.407956 LLDP, length 82 [|LLDP] 18:31:24.407956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.407956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cec 2552 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.407956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.407956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.407956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.407956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.407956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.407956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.417959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.417959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.417959 LLDP, length 82 [|LLDP] 18:31:24.417959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.417959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cf3 c672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.417959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.417959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.417960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.417960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.417960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.427958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.427958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.427958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.427959 LLDP, length 82 [|LLDP] 18:31:24.427959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.427959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.427959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.427959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.427959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cfb 6792 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.427959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.437960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.437960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.437960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.437960 LLDP, length 82 [|LLDP] 18:31:24.437960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.437960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d03 08b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.437960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.437960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.437960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.437960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.447959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.447959 LLDP, length 82 [|LLDP] 18:31:24.447959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.447959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d0a a9d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.447959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.447959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.447959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.447959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.447960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.447960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.457956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.457956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.457956 LLDP, length 82 [|LLDP] 18:31:24.457956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.457956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d12 4af2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.457956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.457956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.457956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.457956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.457956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.467957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.467957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.467958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.467958 LLDP, length 82 [|LLDP] 18:31:24.467958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.467958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.467958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.467958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.467958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d19 ec12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.467958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.477957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.477957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.477957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.477957 LLDP, length 82 [|LLDP] 18:31:24.477957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.477957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d21 8d32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.477957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.477957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.477957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.477957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.487958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.487958 LLDP, length 82 [|LLDP] 18:31:24.487958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.487958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d29 2e52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.487958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.487958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.487958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.487958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.487958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.487958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.497958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.497959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.497959 LLDP, length 82 [|LLDP] 18:31:24.497959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.497959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d30 cf72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.497959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.497959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.497959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.497959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.497959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.507957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.507957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.507958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.507958 LLDP, length 82 [|LLDP] 18:31:24.507958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.507958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.507958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.507958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.507958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d38 7092 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.507958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.517960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.517960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.517960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.517960 LLDP, length 82 [|LLDP] 18:31:24.517960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.517960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d40 11b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.517960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.517960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.517960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.517960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.527959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.527959 LLDP, length 82 [|LLDP] 18:31:24.527959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.527959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d47 b2d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.527959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.527959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.527959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.527959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.527959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.527959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.537956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.537956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.537956 LLDP, length 82 [|LLDP] 18:31:24.537956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.537956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d4f 53f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.537956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.537956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.537956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.537956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.537956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.547957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.547957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.547957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.547957 LLDP, length 82 [|LLDP] 18:31:24.547957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.547957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.547957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.547958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.547958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d56 f512 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.547958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.557956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.557956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.557956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.557956 LLDP, length 82 [|LLDP] 18:31:24.557956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.557956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d5e 9632 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.557956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.557956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.557956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.557956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.567957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.567957 LLDP, length 82 [|LLDP] 18:31:24.567957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.567957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d66 3752 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.567957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.567957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.567957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.567957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.567957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.567957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.577955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.577955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.577955 LLDP, length 82 [|LLDP] 18:31:24.577955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.577955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d6d d872 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.577955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.577955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.577955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.577956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.577956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.587955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.587955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.587955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.587955 LLDP, length 82 [|LLDP] 18:31:24.587955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.587955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.587955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.587955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.587955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d75 7992 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.587955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.597958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.597958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.597958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.597958 LLDP, length 82 [|LLDP] 18:31:24.597958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.597958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d7d 1ab2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.597958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.597958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.597958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.597958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.607956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.607956 LLDP, length 82 [|LLDP] 18:31:24.607956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.607956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d84 bbd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.607956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.607956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.607956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.607956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.607956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.607956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.617974 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.617974 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.617974 LLDP, length 82 [|LLDP] 18:31:24.617974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.617974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d8c 5cf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.617974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.617974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.617974 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.617974 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.617974 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.627971 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.627972 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.627972 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.627972 LLDP, length 82 [|LLDP] 18:31:24.627972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.627972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.627972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.627972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.627972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d93 fe12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.627972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.637957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.637957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.637957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.637957 LLDP, length 82 [|LLDP] 18:31:24.637957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.637957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d9b 9f32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.637957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.637957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.637958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.637958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.647957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.647957 LLDP, length 82 [|LLDP] 18:31:24.647957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.647957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0da3 4052 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.647957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.647957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.647957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.647957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.647957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.647957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.657957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.657957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.657957 LLDP, length 82 [|LLDP] 18:31:24.657957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.657957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0daa e172 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.657957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.657957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.657957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.657958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.657958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.667956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.667956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.667956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.667956 LLDP, length 82 [|LLDP] 18:31:24.667956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.667956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.667957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.667957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.667957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0db2 8292 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.667957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.677955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.677955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.677955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.677955 LLDP, length 82 [|LLDP] 18:31:24.677955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.677955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dba 23b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.677955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.677955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.677955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.677955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.687956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.687956 LLDP, length 82 [|LLDP] 18:31:24.687956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.687956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dc1 c4d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.687956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.687956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.687956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.687956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.687956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.687956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.697955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.697955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.697955 LLDP, length 82 [|LLDP] 18:31:24.697955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.697955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dc9 65f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.697955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.697955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.697955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.697955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.697955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.707957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.707957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.707957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.707957 LLDP, length 82 [|LLDP] 18:31:24.707957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.707958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.707958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.707958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.707958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dd1 0712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.707958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.717956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.717956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.717956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.717957 LLDP, length 82 [|LLDP] 18:31:24.717957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.717957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dd8 a832 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.717957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.717957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.717957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.717957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.727955 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.727955 LLDP, length 82 [|LLDP] 18:31:24.727955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.727955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0de0 4952 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.727955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.727955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.727955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.727955 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.727955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.727955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.737956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.737956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.737956 LLDP, length 82 [|LLDP] 18:31:24.737956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.737956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0de7 ea72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.737956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.737956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.737956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.737956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.737956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.747957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.747958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.747958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.747958 LLDP, length 82 [|LLDP] 18:31:24.747958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.747958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.747958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.747958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.747958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0def 8b92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.747958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.757954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.757954 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.757954 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.757954 LLDP, length 82 [|LLDP] 18:31:24.757954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.757954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0df7 2cb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.757954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.757954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.757954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.757954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.767954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.767954 LLDP, length 82 [|LLDP] 18:31:24.767954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.767954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dfe cdd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.767954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.767954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.767954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.767954 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.767954 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.767954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.777954 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.777954 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.777954 LLDP, length 82 [|LLDP] 18:31:24.777954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.777954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e06 6ef2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.777954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.777954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.777955 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.777955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.777955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.787953 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.787953 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.787953 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.787953 LLDP, length 82 [|LLDP] 18:31:24.787953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.787953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.787953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.787954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.787954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e0e 1012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.787954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.797960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.797960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.797960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.797960 LLDP, length 82 [|LLDP] 18:31:24.797960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.797960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e15 b132 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.797960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.797960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.797960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.797960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.807962 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.807962 LLDP, length 82 [|LLDP] 18:31:24.807962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.807962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e1d 5252 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.807962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.807962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.807962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.807962 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.807962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.807963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.817961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.817961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.817961 LLDP, length 82 [|LLDP] 18:31:24.817961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.817961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e24 f372 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.817962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.817962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.817962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.817962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.817962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.827970 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.827970 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.827970 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.827970 LLDP, length 82 [|LLDP] 18:31:24.827971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.827971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.827971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.827971 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.827971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e2c 9492 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.827971 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.837962 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.837962 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.837962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.837962 LLDP, length 82 [|LLDP] 18:31:24.837962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.837962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e34 35b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.837962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.837962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.837962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.837962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.847962 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.847962 LLDP, length 82 [|LLDP] 18:31:24.847962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.847962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e3b d6d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.847962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.847962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.847962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.847962 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.847962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.847962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.857993 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.857993 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.857993 LLDP, length 82 [|LLDP] 18:31:24.857993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.857993 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e43 77f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.857993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.857993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.857994 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.857994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.857994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.868000 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.868000 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.868000 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.868001 LLDP, length 82 [|LLDP] 18:31:24.868001 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.868001 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.868001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.868001 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.868001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e4b 1912 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.868001 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.877995 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.877995 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.877995 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.877995 LLDP, length 82 [|LLDP] 18:31:24.877995 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.877995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e52 ba32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.877995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.877995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.877995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.877995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.887996 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.887996 LLDP, length 82 [|LLDP] 18:31:24.887996 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.887997 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e5a 5b52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.887997 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.887997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.887997 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.887997 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.887997 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.887997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.898000 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.898000 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.898000 LLDP, length 82 [|LLDP] 18:31:24.898000 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.898000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e61 fc72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.898000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.898000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.898000 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.898000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.898000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.907987 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.907987 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.907987 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.907987 LLDP, length 82 [|LLDP] 18:31:24.907988 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.907988 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.907988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.907988 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.907988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e69 9d92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.907988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.917992 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.917992 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.917992 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.917992 LLDP, length 82 [|LLDP] 18:31:24.917992 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.917992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e71 3eb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.917993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.917993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.917993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.917993 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.927967 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.927968 LLDP, length 82 [|LLDP] 18:31:24.927968 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.927968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e78 dfd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.927968 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.927968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.927968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.927968 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.927968 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.927968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.937966 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.937966 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.937966 LLDP, length 82 [|LLDP] 18:31:24.937966 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.937966 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e80 80f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.937966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.937966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.937966 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.937966 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.937966 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.947964 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.947964 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.947964 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.947964 LLDP, length 82 [|LLDP] 18:31:24.947964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.947964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.947965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.947965 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.947965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e88 2212 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.947965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.957959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.957959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.957959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.957959 LLDP, length 82 [|LLDP] 18:31:24.957959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.957959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e8f c332 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.957959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.957959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.957959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.957959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.967963 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.967963 LLDP, length 82 [|LLDP] 18:31:24.967963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.967963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e97 6452 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.967963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.967963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.967963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.967963 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.967963 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.967963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.977957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.977958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.977958 LLDP, length 82 [|LLDP] 18:31:24.977958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.977958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e9f 0572 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.977958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.977958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.977958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.977958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.977958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.987959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.987959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.987959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.987959 LLDP, length 82 [|LLDP] 18:31:24.987959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.987959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.987959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.987959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.987959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ea6 a692 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.987959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:24.997959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.997959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:24.997959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:24.997959 LLDP, length 82 [|LLDP] 18:31:24.997959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:24.997959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eae 47b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:24.997959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:24.997959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:24.997959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:24.997960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.007959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.007959 LLDP, length 82 [|LLDP] 18:31:25.007959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.007959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eb5 e8d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.007959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.007959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.007959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.007959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.007959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.007959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.017957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.017957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.017957 LLDP, length 82 [|LLDP] 18:31:25.017957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.017957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ebd 89f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.017957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.017958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.017958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.017958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.017958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.027958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.027958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.027958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.027958 LLDP, length 82 [|LLDP] 18:31:25.027958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.027958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.027958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.027958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.027958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ec5 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.027958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.037957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.037957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.037957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.037957 LLDP, length 82 [|LLDP] 18:31:25.037957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.037957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ecc cc32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.037957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.037957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.037957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.037957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.047962 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.047962 LLDP, length 82 [|LLDP] 18:31:25.047962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.047962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ed4 6d52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.047962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.047963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.047963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.047963 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.047963 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.047963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.057957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.057957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.057957 LLDP, length 82 [|LLDP] 18:31:25.057958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.057958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0edc 0e72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.057958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.057958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.057958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.057958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.057958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.067958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.067958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.067958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.067958 LLDP, length 82 [|LLDP] 18:31:25.067958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.067958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.067958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.067958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.067958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ee3 af92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.067958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.077959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.077959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.077959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.077959 LLDP, length 82 [|LLDP] 18:31:25.077959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.077959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eeb 50b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.077959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.077959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.077959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.077959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.087958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.087958 LLDP, length 82 [|LLDP] 18:31:25.087959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.087959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ef2 f1d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.087959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.087959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.087959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.087959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.087959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.087959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.097959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.097959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.097959 LLDP, length 82 [|LLDP] 18:31:25.097959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.097959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0efa 92f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.097959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.097959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.097959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.097959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.097959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.107958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.107958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.107958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.107958 LLDP, length 82 [|LLDP] 18:31:25.107958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.107958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.107958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.107958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.107958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f02 3412 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.107958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.117958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.117958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.117958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.117958 LLDP, length 82 [|LLDP] 18:31:25.117958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.117958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f09 d532 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.117959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.117959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.117959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.117959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.127957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.127957 LLDP, length 82 [|LLDP] 18:31:25.127957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.127957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f11 7652 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.127957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.127957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.127958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.127958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.127958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.127958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.137961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.137961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.137961 LLDP, length 82 [|LLDP] 18:31:25.137961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.137961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f19 1772 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.137961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.137961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.137961 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.137961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.137961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.147963 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.147963 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.147963 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.147963 LLDP, length 82 [|LLDP] 18:31:25.147963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.147963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.147963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.147963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.147964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f20 b892 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.147964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.157957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.157957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.157957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.157957 LLDP, length 82 [|LLDP] 18:31:25.157957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.157957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f28 59b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.157958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.157958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.157958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.157958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.167957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.167957 LLDP, length 82 [|LLDP] 18:31:25.167957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.167957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f2f fad2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.167957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.167957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.167957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.167958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.167958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.167958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.177975 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.177975 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.177975 LLDP, length 82 [|LLDP] 18:31:25.177975 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.177975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f37 9bf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.177975 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.177975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.177975 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.177975 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.177976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.187957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.187957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.187957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.187957 LLDP, length 82 [|LLDP] 18:31:25.187957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.187957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.187957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.187957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.187957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f3f 3d12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.187957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.197960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.197960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.197960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.197961 LLDP, length 82 [|LLDP] 18:31:25.197961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.197961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f46 de32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.197961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.197961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.197961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.197961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.207956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.207956 LLDP, length 82 [|LLDP] 18:31:25.207956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.207956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f4e 7f52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.207956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.207957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.207957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.207957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.207957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.207957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.217956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.217956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.217956 LLDP, length 82 [|LLDP] 18:31:25.217956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.217956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f56 2072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.217956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.217956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.217956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.217956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.217956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.227956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.227956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.227956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.227956 LLDP, length 82 [|LLDP] 18:31:25.227956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.227956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.227957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.227957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.227957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f5d c192 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.227957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.237956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.237956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.237956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.237956 LLDP, length 82 [|LLDP] 18:31:25.237956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.237956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f65 62b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.237956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.237956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.237956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.237956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.247959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.247959 LLDP, length 82 [|LLDP] 18:31:25.247959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.247959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f6d 03d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.247959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.247959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.247959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.247959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.247959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.247959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.257958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.257958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.257958 LLDP, length 82 [|LLDP] 18:31:25.257958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.257958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f74 a4f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.257958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.257958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.257959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.257959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.257959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.267958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.267958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.267958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.267958 LLDP, length 82 [|LLDP] 18:31:25.267958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.267958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.267959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.267959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.267959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f7c 4612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.267959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.277958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.277958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.277958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.277958 LLDP, length 82 [|LLDP] 18:31:25.277958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.277958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f83 e732 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.277958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.277958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.277958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.277958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.287956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.287956 LLDP, length 82 [|LLDP] 18:31:25.287956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.287956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f8b 8852 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.287956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.287956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.287957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.287957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.287957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.287957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.297961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.297961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.297961 LLDP, length 82 [|LLDP] 18:31:25.297961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.297961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f93 2972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.297962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.297962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.297962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.297962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.297962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.307958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.307958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.307958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.307958 LLDP, length 82 [|LLDP] 18:31:25.307958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.307958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.307958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.307958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.307958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f9a ca92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.307958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.317957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.317957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.317957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.317957 LLDP, length 82 [|LLDP] 18:31:25.317957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.317958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fa2 6bb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.317958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.317958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.317958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.317958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.327957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.327957 LLDP, length 82 [|LLDP] 18:31:25.327957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.327957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0faa 0cd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.327957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.327957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.327957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.327957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.327957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.327957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.337957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.337957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.337957 LLDP, length 82 [|LLDP] 18:31:25.337957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.337957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fb1 adf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.337957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.337957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.337957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.337957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.337958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.347961 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.347961 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.347961 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.347961 LLDP, length 82 [|LLDP] 18:31:25.347961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.347961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.347961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.347961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.347961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fb9 4f12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.347961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.357956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.357956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.357956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.357956 LLDP, length 82 [|LLDP] 18:31:25.357957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.357957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fc0 f032 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.357957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.357957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.357957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.357957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.367957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.367957 LLDP, length 82 [|LLDP] 18:31:25.367957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.367957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fc8 9152 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.367957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.367957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.367957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.367957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.367958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.367958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.377956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.377956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.377957 LLDP, length 82 [|LLDP] 18:31:25.377957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.377957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fd0 3272 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.377957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.377957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.377957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.377957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.377957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.387956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.387956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.387956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.387956 LLDP, length 82 [|LLDP] 18:31:25.387957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.387957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.387957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.387957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.387957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fd7 d392 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.387957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.397962 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.397962 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.397962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.397962 LLDP, length 82 [|LLDP] 18:31:25.397962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.397962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fdf 74b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.397962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.397962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.397962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.397963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.407957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.407957 LLDP, length 82 [|LLDP] 18:31:25.407957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.407957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fe7 15d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.407957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.407957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.407957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.407957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.407958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.407958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.417958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.417958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.417958 LLDP, length 82 [|LLDP] 18:31:25.417958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.417958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fee b6f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.417958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.417958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.417958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.417959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.417959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.427960 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.427960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.427960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.427960 LLDP, length 82 [|LLDP] 18:31:25.427960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.427960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.427960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.427960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.427960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ff6 5812 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.427960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.437957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.437957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.437957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.437957 LLDP, length 82 [|LLDP] 18:31:25.437957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.437958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ffd f932 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.437958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.437958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.437958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.437958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.447959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.447959 LLDP, length 82 [|LLDP] 18:31:25.447959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.447959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1005 9a52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.447959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.447959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.447959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.447959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.447959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.447959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.457958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.457958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.457958 LLDP, length 82 [|LLDP] 18:31:25.457958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.457958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 100d 3b72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.457959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.457959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.457959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.457959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.457959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.467957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.467957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.467957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.467957 LLDP, length 82 [|LLDP] 18:31:25.467957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.467957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.467958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.467958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.467958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1014 dc92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.467958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.477958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.477958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.477958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.477958 LLDP, length 82 [|LLDP] 18:31:25.477958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.477958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 101c 7db2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.477958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.477959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.477959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.477959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.487959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.487959 LLDP, length 82 [|LLDP] 18:31:25.487959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.487960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1024 1ed2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.487960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.487960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.487960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.487960 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.487960 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.487960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.497962 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.497962 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.497962 LLDP, length 82 [|LLDP] 18:31:25.497962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.497962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 102b bff2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.497962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.497962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.497962 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.497962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.497962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.507958 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.507958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.507958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.507958 LLDP, length 82 [|LLDP] 18:31:25.507958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.507958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.507959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.507959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.507959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1033 6112 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.507959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.517957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.517958 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.517958 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.517958 LLDP, length 82 [|LLDP] 18:31:25.517958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.517958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 103b 0232 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.517958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.517958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.517958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.517958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.527957 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.527957 LLDP, length 82 [|LLDP] 18:31:25.527957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.527957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1042 a352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.527957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.527957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.527957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.527957 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.527957 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.527957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.537956 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.537956 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.537956 LLDP, length 82 [|LLDP] 18:31:25.537956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.537956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 104a 4472 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.537956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.537956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.537956 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.537956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.537956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:31:25.547959 IP 1.1.1.2.20044 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.547959 IP 192.168.1.1.2565 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:31:25.547959 IP 1.1.1.2.20468 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:31:25.547959 LLDP, length 82 [|LLDP] 18:31:25.547959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:31:25.547959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:31:25.547959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:31:25.547959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:31:25.547959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1051 e592 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:31:25.547959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 4401 packets captured 4401 packets received by filter 0 packets dropped by kernel 880 packets dropped by interface
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_bridge_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=43, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:31:34 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=43, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=43, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=14] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=43, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=43, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=16] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=43, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":75,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=43, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=43, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=18] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=43, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=43, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:31:35 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=43, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:31:35 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=43, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=43, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=43, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":75,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=43, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=43, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=43, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=26] Channel closed DEBUG agg1:Logger.py:156
Passed functional/bridging/test_bridging_bum_traffic_port.py::test_bridging_bum_traffic_port_with_rif 255.12
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_port_with_rif">Starting testcase:test_bridging_bum_traffic_port_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2233' coro=<test_bridging_bum_traffic_port_with_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py:49> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=43, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=44] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=44] Local address: 172.17.0.3, port 43512 INFO asyncssh:logging.py:92 [conn=44] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=44] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=44] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:31:36 PM UTC INFO asyncssh:logging.py:92 [conn=44, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip address add 100.1.1.253/24 dev swp1 && ip address add 101.1.1.253/24 dev swp2 INFO asyncssh:logging.py:92 [conn=44, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=2] Command: ip address add 100.1.1.253/24 dev swp1 && ip address add 101.1.1.253/24 dev swp2 INFO asyncssh:logging.py:92 [conn=44, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=44, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=44, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=4] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=44, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=44, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip -j link show swp1 INFO asyncssh:logging.py:92 [conn=44, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=6] Command: ip -j link show swp1 INFO asyncssh:logging.py:92 [conn=44, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=6] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 15 tcpdump -i swp1 -n on agg1... INFO asyncssh:logging.py:92 [conn=44, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=7] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp1 -n INFO asyncssh:logging.py:92 [conn=44, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=8] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp1 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6c9a80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI BridgedLLDP SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI LACPDU SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4ToMe SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI ARP_Request_BC SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI ARP_Reply SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_Broadcast SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPV4_SSH SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPV4_Telnet SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_ICMP_Request SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_DCHP_BC SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_Reserved_MC SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_OSPFIGP SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_VRRP SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_IGMP SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPV4_BGP SIP-DIP N/A Tx 439 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=44, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=8] Channel closed DEBUG agg1:Logger.py:156 18:35:33.046192 LLDP, length 219: localhost 18:35:36.423370 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.423370 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.423370 LLDP, length 82 [|LLDP] 18:35:36.423370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.423370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.423370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 033e 463e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.423370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.423370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.423370 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.423371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.423371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.423371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.423371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.423371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.423371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.433338 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.433338 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.433338 LLDP, length 82 [|LLDP] 18:35:36.433338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.433338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.433338 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.433338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.433338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.433338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0345 e75e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.433339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.433339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.433339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.433339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.433339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.433339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.443334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.443334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.443334 LLDP, length 82 [|LLDP] 18:35:36.443334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.443334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.443334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 034d 887e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.443334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.443334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.443335 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.443335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.443335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.443335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.443335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.443335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.443335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.453333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.453333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.453333 LLDP, length 82 [|LLDP] 18:35:36.453333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.453333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.453333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0355 299e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.453333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.453333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.453333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.453333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.453333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.453333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.453333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.453334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.453334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.463332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.463332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.463332 LLDP, length 82 [|LLDP] 18:35:36.463332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.463332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.463332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 035c cabe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.463332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.463332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.463332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.463332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.463332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.463332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.463332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.463333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.463333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.473330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.473330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.473330 LLDP, length 82 [|LLDP] 18:35:36.473330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.473330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.473330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0364 6bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.473330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.473330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.473330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.473330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.473331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.473331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.473331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.473331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.473331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.483330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.483331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.483331 LLDP, length 82 [|LLDP] 18:35:36.483331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.483331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.483331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.483331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.483331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.483331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 036c 0cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.483331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.483331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.483331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.483331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.483331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.483331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.493331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.493331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.493331 LLDP, length 82 [|LLDP] 18:35:36.493331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.493331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.493331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0373 ae1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.493331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.493331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.493331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.493331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.493331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.493331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.493331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.493332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.493332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.503331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.503331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.503331 LLDP, length 82 [|LLDP] 18:35:36.503331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.503331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.503331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 037b 4f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.503331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.503331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.503331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.503331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.503331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.503331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.503332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.503332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.503332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.513336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.513336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.513336 LLDP, length 82 [|LLDP] 18:35:36.513336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.513336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.513336 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.513336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.513336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.513336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0382 f05e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.513336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.513336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.513337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.513337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.513337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.513337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.523343 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.523343 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.523344 LLDP, length 82 [|LLDP] 18:35:36.523344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.523344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.523344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 038a 917e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.523344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.523344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.523344 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.523344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.523344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.523344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.523344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.523344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.523344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.533331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.533331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.533331 LLDP, length 82 [|LLDP] 18:35:36.533331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.533331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.533331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0392 329e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.533331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.533331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.533331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.533331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.533331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.533331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.533331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.533332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.533332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.543331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.543331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.543331 LLDP, length 82 [|LLDP] 18:35:36.543331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.543331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.543331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0399 d3be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.543332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.543332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.543332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.543332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.543332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.543332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.543332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.543332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.543332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.553331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.553331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.553331 LLDP, length 82 [|LLDP] 18:35:36.553331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.553331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.553331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03a1 74de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.553331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.553331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.553331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.553331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.553331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.553331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.553331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.553331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.553332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.563329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.563329 LLDP, length 82 [|LLDP] 18:35:36.563330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.563330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.563330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.563330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.563330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.563330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.563330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03a9 15fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.563330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.563330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.563330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.563330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.563330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.563330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.573324 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.573324 LLDP, length 82 [|LLDP] 18:35:36.573324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.573325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.573325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03b0 b71e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.573325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.573325 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.573325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.573325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.573325 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.573325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.573325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.573325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.573325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.573325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.583325 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.583325 LLDP, length 82 [|LLDP] 18:35:36.583326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.583326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.583326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03b8 583e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.583326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.583326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.583326 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.583326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.583326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.583326 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.583326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.583326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.583326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.583326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.593324 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.593324 LLDP, length 82 [|LLDP] 18:35:36.593324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.593324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.593324 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.593324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.593324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.593324 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.593324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03bf f95e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.593325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.593325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.593325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.593325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.593325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.593325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.603327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.603328 LLDP, length 82 [|LLDP] 18:35:36.603328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.603328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.603328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03c7 9a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.603328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.603328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.603328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.603328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.603328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.603328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.603328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.603328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.603328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.603329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.613334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.613334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.613334 LLDP, length 82 [|LLDP] 18:35:36.613334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.613334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.613334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03cf 3b9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.613334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.613334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.613334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.613334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.613334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.613335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.613335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.613335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.613335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.623329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.623329 LLDP, length 82 [|LLDP] 18:35:36.623329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.623329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.623329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03d6 dcbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.623330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.623330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.623330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.623330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.623330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.623330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.623330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.623330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.623330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.623330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.633329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.633329 LLDP, length 82 [|LLDP] 18:35:36.633329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.633329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.633329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03de 7dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.633329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.633329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.633329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.633329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.633329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.633329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.633330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.633330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.633330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.633330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.643333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.643333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.643333 LLDP, length 82 [|LLDP] 18:35:36.643333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.643333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.643333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.643334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.643334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.643334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03e6 1efe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.643334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.643334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.643334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.643334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.643334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.643334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.653328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.653328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.653328 LLDP, length 82 [|LLDP] 18:35:36.653328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.653329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.653329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03ed c01e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.653329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.653329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.653329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.653329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.653329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.653329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.653329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.653329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.653329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.663352 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.663353 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.663353 LLDP, length 82 [|LLDP] 18:35:36.663353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.663353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.663353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03f5 613e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.663353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.663353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.663353 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.663353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.663353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.663353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.663353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.663353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.663354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.673329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.673329 LLDP, length 82 [|LLDP] 18:35:36.673329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.673329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.673329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.673329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.673329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.673329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.673329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03fd 025e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.673329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.673329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.673329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.673329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.673329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.673330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.683330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.683330 LLDP, length 82 [|LLDP] 18:35:36.683330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.683330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.683330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0404 a37e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.683330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.683331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.683331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.683331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.683331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.683331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.683331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.683331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.683331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.683331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.693329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.693329 LLDP, length 82 [|LLDP] 18:35:36.693329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.693329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.693329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 040c 449e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.693329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.693329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.693329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.693329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.693329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.693329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.693330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.693330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.693330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.693330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.703333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.703333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.703333 LLDP, length 82 [|LLDP] 18:35:36.703333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.703333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.703333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0413 e5be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.703333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.703333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.703333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.703333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.703333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.703334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.703334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.703334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.703334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.713328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.713328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.713328 LLDP, length 82 [|LLDP] 18:35:36.713328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.713329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.713329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 041b 86de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.713329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.713329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.713329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.713329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.713329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.713329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.713329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.713329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.713329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.723331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.723331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.723331 LLDP, length 82 [|LLDP] 18:35:36.723331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.723331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.723331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.723331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.723331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.723331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0423 27fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.723331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.723331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.723331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.723331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.723331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.723332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.733328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.733328 LLDP, length 82 [|LLDP] 18:35:36.733328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.733328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.733328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 042a c91e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.733329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.733329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.733329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.733329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.733329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.733329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.733329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.733329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.733329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.733329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.743331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.743331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.743331 LLDP, length 82 [|LLDP] 18:35:36.743331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.743331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.743331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0432 6a3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.743331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.743331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.743332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.743332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.743332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.743332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.743332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.743332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.743332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.753330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.753330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.753330 LLDP, length 82 [|LLDP] 18:35:36.753330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.753330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.753330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.753330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.753330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.753330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 043a 0b5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.753330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.753330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.753330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.753330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.753331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.753331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.763334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.763334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.763334 LLDP, length 82 [|LLDP] 18:35:36.763334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.763334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.763334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0441 ac7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.763334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.763334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.763334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.763334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.763334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.763334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.763335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.763335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.763335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.773331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.773331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.773331 LLDP, length 82 [|LLDP] 18:35:36.773331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.773331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.773331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0449 4d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.773331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.773331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.773331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.773331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.773331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.773331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.773332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.773332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.773332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.783327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.783327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.783327 LLDP, length 82 [|LLDP] 18:35:36.783327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.783327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.783327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0450 eebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.783328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.783328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.783328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.783328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.783328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.783328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.783328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.783328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.783328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.793330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.793330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.793330 LLDP, length 82 [|LLDP] 18:35:36.793330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.793330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.793330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0458 8fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.793330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.793330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.793330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.793330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.793331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.793331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.793331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.793331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.793331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.803333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.803334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.803334 LLDP, length 82 [|LLDP] 18:35:36.803334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.803334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.803334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.803334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.803334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.803334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0460 30fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.803334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.803334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.803334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.803334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.803334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.803334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.813339 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.813340 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.813340 LLDP, length 82 [|LLDP] 18:35:36.813340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.813340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.813340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0467 d21e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.813340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.813340 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.813340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.813340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.813340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.813340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.813340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.813340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.813340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.823333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.823334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.823334 LLDP, length 82 [|LLDP] 18:35:36.823334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.823334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.823334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 046f 733e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.823334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.823334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.823334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.823334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.823334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.823334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.823334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.823334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.823334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.833330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.833330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.833330 LLDP, length 82 [|LLDP] 18:35:36.833330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.833330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.833330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.833330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.833330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.833330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0477 145e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.833330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.833330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.833331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.833331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.833331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.833331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.843331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.843331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.843331 LLDP, length 82 [|LLDP] 18:35:36.843331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.843331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.843331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 047e b57e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.843331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.843331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.843331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.843331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.843331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.843332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.843332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.843332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.843332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.853329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.853329 LLDP, length 82 [|LLDP] 18:35:36.853329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.853329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.853329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0486 569e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.853329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.853329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.853330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.853330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.853330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.853330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.853330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.853330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.853330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.853330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.863331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.863331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.863331 LLDP, length 82 [|LLDP] 18:35:36.863331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.863331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.863331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 048d f7be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.863331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.863332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.863332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.863332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.863332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.863332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.863332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.863332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.863332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.873329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.873329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.873329 LLDP, length 82 [|LLDP] 18:35:36.873330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.873330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.873330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0495 98de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.873330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.873330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.873330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.873330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.873330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.873330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.873330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.873330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.873330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.883329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.883329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.883329 LLDP, length 82 [|LLDP] 18:35:36.883329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.883330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.883330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.883330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.883330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.883330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 049d 39fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.883330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.883330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.883330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.883330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.883330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.883330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.893350 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.893350 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.893350 LLDP, length 82 [|LLDP] 18:35:36.893350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.893350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.893350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04a4 db1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.893350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.893350 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.893350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.893351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.893351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.893351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.893351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.893351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.893351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.903363 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.903363 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.903363 LLDP, length 82 [|LLDP] 18:35:36.903363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.903363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.903363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04ac 7c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.903363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.903363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.903363 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.903363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.903363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.903364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.903364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.903364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.903364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.913349 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.913349 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.913350 LLDP, length 82 [|LLDP] 18:35:36.913350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.913350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.913350 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.913350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.913350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.913350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04b4 1d5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.913350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.913350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.913350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.913350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.913350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.913350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.923336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.923336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.923336 LLDP, length 82 [|LLDP] 18:35:36.923337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.923337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.923337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04bb be7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.923337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.923337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.923337 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.923337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.923337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.923337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.923337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.923337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.923337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.933336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.933336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.933336 LLDP, length 82 [|LLDP] 18:35:36.933336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.933336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.933336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04c3 5f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.933336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.933336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.933336 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.933336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.933336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.933336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.933336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.933337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.933337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.943330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.943330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.943331 LLDP, length 82 [|LLDP] 18:35:36.943331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.943331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.943331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04cb 00be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.943331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.943331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.943331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.943331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.943331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.943331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.943331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.943331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.943331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.953330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.953331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.953331 LLDP, length 82 [|LLDP] 18:35:36.953331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.953331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.953331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04d2 a1de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.953331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.953331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.953331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.953331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.953331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.953331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.953331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.953331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.953331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.963331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.963331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.963331 LLDP, length 82 [|LLDP] 18:35:36.963331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.963331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.963331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.963332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.963332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.963332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04da 42fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.963332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.963332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.963332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.963332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.963332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.963332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.973330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.973331 LLDP, length 82 [|LLDP] 18:35:36.973331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.973331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.973331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04e1 e41e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.973331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.973331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.973331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.973331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.973331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.973331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.973331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.973331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.973331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.973331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.983332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.983332 LLDP, length 82 [|LLDP] 18:35:36.983333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.983333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.983333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04e9 853e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.983333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.983333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.983333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.983333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.983333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.983333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.983333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.983333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.983333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.983333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.993331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.993331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.993331 LLDP, length 82 [|LLDP] 18:35:36.993332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.993332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.993332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.993332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.993332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.993332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04f1 265e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.993332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.993332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.993332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.993332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.993332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.993332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.003334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.003334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.003334 LLDP, length 82 [|LLDP] 18:35:37.003334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.003335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.003335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04f8 c77e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.003335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.003335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.003335 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.003335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.003335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.003335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.003335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.003335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.003335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.013334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.013334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.013334 LLDP, length 82 [|LLDP] 18:35:37.013334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.013334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.013334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0500 689e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.013334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.013334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.013334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.013334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.013334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.013334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.013335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.013335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.013335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.023332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.023332 LLDP, length 82 [|LLDP] 18:35:37.023332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.023332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.023332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0508 09be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.023333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.023333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.023333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.023333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.023333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.023333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.023333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.023333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.023333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.023333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.033332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.033332 LLDP, length 82 [|LLDP] 18:35:37.033332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.033332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.033332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 050f aade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.033332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.033332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.033333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.033333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.033333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.033333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.033333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.033333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.033333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.033333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.043329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.043329 LLDP, length 82 [|LLDP] 18:35:37.043329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.043329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.043329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.043329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.043329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.043330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.043330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0517 4bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.043330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.043330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.043330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.043330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.043330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.043330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.053330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.053330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.053330 LLDP, length 82 [|LLDP] 18:35:37.053330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.053330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.053330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 051e ed1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.053330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.053330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.053330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.053330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.053330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.053330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.053330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.053330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.053331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.063330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.063330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.063330 LLDP, length 82 [|LLDP] 18:35:37.063330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.063330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.063330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0526 8e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.063330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.063330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.063330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.063330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.063331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.063331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.063331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.063331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.063331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.073329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.073329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.073330 LLDP, length 82 [|LLDP] 18:35:37.073330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.073330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.073330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.073330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.073330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.073330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 052e 2f5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.073330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.073330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.073330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.073330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.073330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.073330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.083329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.083329 LLDP, length 82 [|LLDP] 18:35:37.083329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.083329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.083329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0535 d07e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.083329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.083329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.083329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.083329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.083330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.083330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.083330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.083330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.083330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.083330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.093327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.093327 LLDP, length 82 [|LLDP] 18:35:37.093327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.093327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.093328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 053d 719e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.093328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.093328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.093328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.093328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.093328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.093328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.093328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.093328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.093328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.093328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.103332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.103332 LLDP, length 82 [|LLDP] 18:35:37.103332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.103332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.103332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0545 12be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.103332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.103333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.103333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.103333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.103333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.103333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.103333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.103333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.103333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.103333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.113331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.113331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.113331 LLDP, length 82 [|LLDP] 18:35:37.113331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.113331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.113331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 054c b3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.113331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.113332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.113332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.113332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.113332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.113332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.113332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.113332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.113332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.123332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.123332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.123332 LLDP, length 82 [|LLDP] 18:35:37.123332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.123332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.123332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.123332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.123332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.123333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0554 54fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.123333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.123333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.123333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.123333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.123333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.123333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.133340 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.133340 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.133340 LLDP, length 82 [|LLDP] 18:35:37.133340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.133340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.133340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 055b f61e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.133340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.133341 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.133341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.133341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.133341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.133341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.133341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.133341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.133341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.143334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.143334 LLDP, length 82 [|LLDP] 18:35:37.143334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.143334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.143334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0563 973e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.143334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.143334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.143334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.143334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.143335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.143335 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.143335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.143335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.143335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.143335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.153334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.153334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.153334 LLDP, length 82 [|LLDP] 18:35:37.153334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.153334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.153334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.153334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.153334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.153334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 056b 385e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.153334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.153334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.153335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.153335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.153335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.153335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.163331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.163331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.163331 LLDP, length 82 [|LLDP] 18:35:37.163332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.163332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.163332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0572 d97e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.163332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.163332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.163332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.163332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.163332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.163332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.163332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.163332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.163332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.173328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.173329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.173329 LLDP, length 82 [|LLDP] 18:35:37.173329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.173329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.173329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 057a 7a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.173329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.173329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.173329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.173329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.173329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.173329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.173329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.173329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.173329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.183331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.183331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.183331 LLDP, length 82 [|LLDP] 18:35:37.183331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.183331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.183331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0582 1bbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.183331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.183332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.183332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.183332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.183332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.183332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.183332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.183332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.183332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.193329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.193329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.193329 LLDP, length 82 [|LLDP] 18:35:37.193329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.193329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.193329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0589 bcde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.193329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.193329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.193329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.193329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.193329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.193329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.193329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.193330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.193330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.203338 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.203338 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.203338 LLDP, length 82 [|LLDP] 18:35:37.203338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.203338 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.203338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.203338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.203338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.203338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0591 5dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.203338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.203338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.203339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.203339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.203339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.203339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.213335 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.213335 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.213335 LLDP, length 82 [|LLDP] 18:35:37.213335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.213335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.213335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0598 ff1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.213335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.213336 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.213336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.213336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.213336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.213336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.213336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.213336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.213336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.223330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.223330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.223330 LLDP, length 82 [|LLDP] 18:35:37.223330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.223330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.223330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05a0 a03e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.223330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.223330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.223330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.223330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.223331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.223331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.223331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.223331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.223331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.233329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.233329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.233329 LLDP, length 82 [|LLDP] 18:35:37.233329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.233329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.233329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.233329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.233329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.233329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05a8 415e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.233329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.233329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.233329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.233330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.233330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.233330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.243330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.243330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.243330 LLDP, length 82 [|LLDP] 18:35:37.243331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.243331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.243331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05af e27e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.243331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.243331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.243331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.243331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.243331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.243331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.243331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.243331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.243331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.253329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.253329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.253329 LLDP, length 82 [|LLDP] 18:35:37.253329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.253329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.253330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05b7 839e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.253330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.253330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.253330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.253330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.253330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.253330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.253330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.253330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.253330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.263341 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.263341 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.263341 LLDP, length 82 [|LLDP] 18:35:37.263341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.263341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.263341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05bf 24be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.263341 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.263341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.263341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.263341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.263341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.263342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.263342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.263342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.263342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.273331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.273331 LLDP, length 82 [|LLDP] 18:35:37.273331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.273331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.273331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05c6 c5de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.273331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.273331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.273331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.273332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.273332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.273332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.273332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.273332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.273332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.273332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.283331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.283331 LLDP, length 82 [|LLDP] 18:35:37.283332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.283332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.283332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.283332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.283332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.283332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.283332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05ce 66fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.283332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.283332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.283332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.283332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.283332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.283332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.293329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.293330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.293330 LLDP, length 82 [|LLDP] 18:35:37.293330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.293330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.293330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05d6 081e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.293330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.293330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.293330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.293330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.293330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.293330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.293330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.293330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.293330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.303329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.303329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.303329 LLDP, length 82 [|LLDP] 18:35:37.303329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.303329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.303329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05dd a93e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.303329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.303329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.303329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.303329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.303329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.303329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.303329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.303329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.303330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.313331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.313331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.313331 LLDP, length 82 [|LLDP] 18:35:37.313331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.313331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.313331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.313331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.313332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.313332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05e5 4a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.313332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.313332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.313332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.313332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.313332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.313332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.323332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.323332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.323332 LLDP, length 82 [|LLDP] 18:35:37.323332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.323332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.323332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05ec eb7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.323332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.323333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.323333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.323333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.323333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.323333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.323333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.323333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.323333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.333331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.333331 LLDP, length 82 [|LLDP] 18:35:37.333331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.333331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.333331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05f4 8c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.333331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.333331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.333332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.333332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.333332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.333332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.333332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.333332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.333332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.333332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.343329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.343329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.343330 LLDP, length 82 [|LLDP] 18:35:37.343330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.343330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.343330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05fc 2dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.343330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.343330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.343330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.343330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.343330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.343330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.343330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.343330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.343330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.353329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.353329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.353329 LLDP, length 82 [|LLDP] 18:35:37.353329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.353329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.353329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0603 cede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.353329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.353330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.353330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.353330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.353330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.353330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.353330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.353330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.353330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.363330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.363330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.363330 LLDP, length 82 [|LLDP] 18:35:37.363330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.363331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.363331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.363331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.363331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.363331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 060b 6ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.363331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.363331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.363331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.363331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.363331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.363331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.373330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.373330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.373330 LLDP, length 82 [|LLDP] 18:35:37.373330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.373330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.373330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0613 111e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.373330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.373330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.373331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.373331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.373331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.373331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.373331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.373331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.373331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.383330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.383330 LLDP, length 82 [|LLDP] 18:35:37.383330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.383330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.383330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 061a b23e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.383330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.383330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.383330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.383330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.383330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.383330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.383330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.383330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.383331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.383331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.393330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.393330 LLDP, length 82 [|LLDP] 18:35:37.393330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.393330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.393330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.393330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.393330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.393330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.393330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0622 535e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.393331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.393331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.393331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.393331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.393331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.393331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.403326 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.403326 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.403326 LLDP, length 82 [|LLDP] 18:35:37.403326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.403326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.403326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0629 f47e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.403326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.403327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.403327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.403327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.403327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.403327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.403327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.403327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.403327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.413335 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.413335 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.413335 LLDP, length 82 [|LLDP] 18:35:37.413335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.413335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.413335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0631 959e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.413335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.413335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.413336 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.413336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.413336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.413336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.413336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.413336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.413336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.423341 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.423341 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.423341 LLDP, length 82 [|LLDP] 18:35:37.423341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.423341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.423341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0639 36be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.423341 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.423341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.423341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.423341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.423341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.423342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.423342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.423342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.423342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.433335 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.433335 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.433335 LLDP, length 82 [|LLDP] 18:35:37.433335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.433335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.433335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0640 d7de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.433335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.433335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.433335 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.433335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.433335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.433335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.433335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.433336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.433336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.443337 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.443337 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.443338 LLDP, length 82 [|LLDP] 18:35:37.443338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.443338 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.443338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.443338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.443338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.443338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0648 78fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.443338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.443338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.443338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.443338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.443338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.443338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.453334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.453334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.453334 LLDP, length 82 [|LLDP] 18:35:37.453334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.453334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.453334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0650 1a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.453334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.453335 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.453335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.453335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.453335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.453335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.453335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.453335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.453335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.463331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.463331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.463331 LLDP, length 82 [|LLDP] 18:35:37.463331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.463331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.463331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0657 bb3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.463331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.463331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.463331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.463331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.463332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.463332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.463332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.463332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.463332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.473330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.473330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.473330 LLDP, length 82 [|LLDP] 18:35:37.473330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.473331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.473331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.473331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.473331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.473331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 065f 5c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.473331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.473331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.473331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.473331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.473331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.473331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.483329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.483329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.483329 LLDP, length 82 [|LLDP] 18:35:37.483329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.483329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.483329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0666 fd7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.483329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.483329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.483329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.483329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.483329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.483329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.483329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.483330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.483330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.493329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.493329 LLDP, length 82 [|LLDP] 18:35:37.493329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.493330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.493330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 066e 9e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.493330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.493330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.493330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.493330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.493330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.493330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.493330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.493330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.493330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.493330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.503332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.503332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.503332 LLDP, length 82 [|LLDP] 18:35:37.503332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.503332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.503332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0676 3fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.503332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.503332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.503332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.503332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.503332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.503332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.503333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.503333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.503333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.513333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.513333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.513333 LLDP, length 82 [|LLDP] 18:35:37.513333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.513333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.513333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 067d e0de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.513333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.513333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.513333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.513333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.513333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.513333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.513334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.513334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.513334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.523336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.523336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.523336 LLDP, length 82 [|LLDP] 18:35:37.523336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.523336 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.523336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.523336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.523336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.523336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0685 81fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.523336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.523336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.523336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.523336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.523337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.523337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.533331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.533331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.533331 LLDP, length 82 [|LLDP] 18:35:37.533331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.533331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.533331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 068d 231e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.533331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.533331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.533331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.533332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.533332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.533332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.533332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.533332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.533332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.543331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.543331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.543331 LLDP, length 82 [|LLDP] 18:35:37.543331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.543331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.543331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0694 c43e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.543331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.543331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.543331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.543332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.543332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.543332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.543332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.543332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.543332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.553330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.553330 LLDP, length 82 [|LLDP] 18:35:37.553330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.553330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.553330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.553330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.553330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.553330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.553331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 069c 655e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.553331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.553331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.553331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.553331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.553331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.553331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.563330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.563330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.563330 LLDP, length 82 [|LLDP] 18:35:37.563330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.563330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.563330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06a4 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.563330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.563330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.563330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.563330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.563330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.563330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.563330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.563331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.563331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.573333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.573333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.573333 LLDP, length 82 [|LLDP] 18:35:37.573334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.573334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.573334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06ab a79e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.573334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.573334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.573334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.573334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.573334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.573334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.573334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.573334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.573334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.583330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.583330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.583330 LLDP, length 82 [|LLDP] 18:35:37.583330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.583330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.583330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06b3 48be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.583330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.583330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.583330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.583330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.583331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.583331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.583331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.583331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.583331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.593329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.593329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.593329 LLDP, length 82 [|LLDP] 18:35:37.593329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.593329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.593329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06ba e9de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.593330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.593330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.593330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.593330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.593330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.593330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.593330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.593330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.593330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.603336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.603336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.603336 LLDP, length 82 [|LLDP] 18:35:37.603336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.603336 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.603336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.603337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.603337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.603337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06c2 8afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.603337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.603337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.603337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.603337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.603337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.603337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.613333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.613333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.613333 LLDP, length 82 [|LLDP] 18:35:37.613333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.613333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.613333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06ca 2c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.613333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.613333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.613333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.613333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.613333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.613333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.613333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.613333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.613334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.623333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.623333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.623333 LLDP, length 82 [|LLDP] 18:35:37.623333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.623333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.623333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06d1 cd3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.623333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.623333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.623334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.623334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.623334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.623334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.623334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.623334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.623334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.633330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.633330 LLDP, length 82 [|LLDP] 18:35:37.633330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.633330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.633331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.633331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.633331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.633331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.633331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06d9 6e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.633331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.633331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.633331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.633331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.633331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.633331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.643332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.643332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.643332 LLDP, length 82 [|LLDP] 18:35:37.643332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.643333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.643333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06e1 0f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.643333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.643333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.643333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.643333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.643333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.643333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.643333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.643333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.643333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.653329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.653329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.653329 LLDP, length 82 [|LLDP] 18:35:37.653329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.653329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.653329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06e8 b09e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.653329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.653329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.653329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.653329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.653329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.653330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.653330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.653330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.653330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.663338 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.663338 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.663339 LLDP, length 82 [|LLDP] 18:35:37.663339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.663339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.663339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06f0 51be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.663339 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.663339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.663339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.663339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.663339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.663339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.663339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.663339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.663339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.673375 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.673375 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.673375 LLDP, length 82 [|LLDP] 18:35:37.673375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.673375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.673375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06f7 f2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.673375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.673375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.673375 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.673375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.673375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.673376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.673376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.673376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.673376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.683337 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.683337 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.683337 LLDP, length 82 [|LLDP] 18:35:37.683337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.683337 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.683337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.683337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.683337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.683337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06ff 93fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.683337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.683337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.683338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.683338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.683338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.683338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.693336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.693336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.693336 LLDP, length 82 [|LLDP] 18:35:37.693336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.693336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.693336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0707 351e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.693337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.693337 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.693337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.693337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.693337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.693337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.693337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.693337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.693337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.703330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.703330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.703330 LLDP, length 82 [|LLDP] 18:35:37.703331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.703331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.703331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 070e d63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.703331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.703331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.703331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.703331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.703331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.703331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.703331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.703331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.703331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.713331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.713331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.713331 LLDP, length 82 [|LLDP] 18:35:37.713331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.713331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.713331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.713331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.713331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.713331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0716 775e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.713332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.713332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.713332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.713332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.713332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.713332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.723336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.723336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.723336 LLDP, length 82 [|LLDP] 18:35:37.723336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.723337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.723337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 071e 187e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.723337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.723337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.723337 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.723337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.723337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.723337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.723337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.723337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.723337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.733327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.733327 LLDP, length 82 [|LLDP] 18:35:37.733327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.733327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.733328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0725 b99e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.733328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.733328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.733328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.733328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.733328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.733328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.733328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.733328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.733328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.733328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.743335 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.743335 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.743335 LLDP, length 82 [|LLDP] 18:35:37.743335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.743335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.743335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 072d 5abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.743336 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.743336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.743336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.743336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.743336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.743336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.743336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.743336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.743336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.753329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.753329 LLDP, length 82 [|LLDP] 18:35:37.753329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.753329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.753329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0734 fbde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.753329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.753329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.753330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.753330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.753330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.753330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.753330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.753330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.753330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.753330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.763329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.763329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.763329 LLDP, length 82 [|LLDP] 18:35:37.763329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.763329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.763330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.763330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.763330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.763330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 073c 9cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.763330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.763330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.763330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.763330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.763330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.763330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.773330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.773330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.773330 LLDP, length 82 [|LLDP] 18:35:37.773330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.773330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.773330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0744 3e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.773330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.773330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.773331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.773331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.773331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.773331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.773331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.773331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.773331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.783327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.783328 LLDP, length 82 [|LLDP] 18:35:37.783328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.783328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.783328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 074b df3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.783328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.783328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.783328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.783328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.783328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.783328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.783328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.783328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.783328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.783328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.793327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.793327 LLDP, length 82 [|LLDP] 18:35:37.793327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.793327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.793327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.793327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.793328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.793328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.793328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0753 805e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.793328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.793328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.793328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.793328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.793328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.793328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.803328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.803328 LLDP, length 82 [|LLDP] 18:35:37.803328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.803328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.803328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 075b 217e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.803328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.803328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.803328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.803328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.803329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.803329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.803329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.803329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.803329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.803329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.813328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.813328 LLDP, length 82 [|LLDP] 18:35:37.813328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.813328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.813328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0762 c29e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.813328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.813328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.813328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.813328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.813328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.813328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.813329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.813329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.813329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.813329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.823330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.823331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.823331 LLDP, length 82 [|LLDP] 18:35:37.823331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.823331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.823331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 076a 63be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.823331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.823331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.823331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.823331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.823331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.823331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.823331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.823331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.823331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.833328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.833328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.833328 LLDP, length 82 [|LLDP] 18:35:37.833328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.833328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.833328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0772 04de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.833328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.833328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.833328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.833329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.833329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.833329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.833329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.833329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.833329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.843329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.843329 LLDP, length 82 [|LLDP] 18:35:37.843329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.843329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.843329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.843329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.843329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.843329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.843329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0779 a5fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.843329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.843329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.843329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.843329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.843330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.843330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.853327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.853327 LLDP, length 82 [|LLDP] 18:35:37.853327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.853327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.853328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0781 471e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.853328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.853328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.853328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.853328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.853328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.853328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.853328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.853328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.853328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.853328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.863327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.863327 LLDP, length 82 [|LLDP] 18:35:37.863327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.863327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.863327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0788 e83e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.863327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.863328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.863328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.863328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.863328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.863328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.863328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.863328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.863328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.863328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.873325 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.873325 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.873325 LLDP, length 82 [|LLDP] 18:35:37.873325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.873326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.873326 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.873326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.873326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.873326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0790 895e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.873326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.873326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.873326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.873326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.873326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.873326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.883329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.883329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.883329 LLDP, length 82 [|LLDP] 18:35:37.883329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.883329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.883329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0798 2a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.883329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.883329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.883329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.883329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.883329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.883329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.883329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.883330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.883330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.893324 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.893324 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.893324 LLDP, length 82 [|LLDP] 18:35:37.893324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.893324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.893324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 079f cb9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.893324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.893324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.893325 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.893325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.893325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.893325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.893325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.893325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.893325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.903328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.903329 LLDP, length 82 [|LLDP] 18:35:37.903329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.903329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.903329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07a7 6cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.903329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.903329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.903329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.903329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.903329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.903329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.903329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.903329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.903329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.903329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.913327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.913327 LLDP, length 82 [|LLDP] 18:35:37.913328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.913328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.913328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07af 0dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.913328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.913328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.913328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.913328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.913328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.913328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.913328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.913328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.913328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.913328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.923330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.923330 LLDP, length 82 [|LLDP] 18:35:37.923330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.923331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.923331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.923331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.923331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.923331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.923331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07b6 aefe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.923331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.923331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.923331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.923331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.923331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.923331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.933327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.933327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.933327 LLDP, length 82 [|LLDP] 18:35:37.933327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.933327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.933327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07be 501e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.933327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.933328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.933328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.933328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.933328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.933328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.933328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.933328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.933328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.943328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.943328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.943329 LLDP, length 82 [|LLDP] 18:35:37.943329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.943329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.943329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07c5 f13e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.943329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.943329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.943329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.943329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.943329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.943329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.943329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.943329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.943329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.953329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.953329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.953329 LLDP, length 82 [|LLDP] 18:35:37.953329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.953329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.953329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.953329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.953329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.953329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07cd 925e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.953329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.953329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.953329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.953329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.953330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.953330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.963331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.963331 LLDP, length 82 [|LLDP] 18:35:37.963331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.963331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.963331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07d5 337e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.963331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.963331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.963331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.963331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.963331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.963331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.963331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.963331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.963332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.963332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.973329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.973329 LLDP, length 82 [|LLDP] 18:35:37.973329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.973329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.973329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07dc d49e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.973329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.973329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.973329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.973329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.973329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.973330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.973330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.973330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.973330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.973330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.983327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.983327 LLDP, length 82 [|LLDP] 18:35:37.983327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.983328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.983328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07e4 75be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.983328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.983328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.983328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.983328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.983328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.983328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.983328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.983328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.983328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.983328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.993329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.993329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.993330 LLDP, length 82 [|LLDP] 18:35:37.993330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.993330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.993330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07ec 16de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.993330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.993330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.993330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.993330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.993330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.993330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.993330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.993330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.993330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.003332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.003332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.003332 LLDP, length 82 [|LLDP] 18:35:38.003332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.003332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.003332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.003332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.003332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.003332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07f3 b7fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.003332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.003332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.003332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.003332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.003333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.003333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.013331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.013331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.013331 LLDP, length 82 [|LLDP] 18:35:38.013331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.013331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.013331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07fb 591e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.013331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.013331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.013331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.013331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.013332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.013332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.013332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.013332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.013332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.023329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.023329 LLDP, length 82 [|LLDP] 18:35:38.023329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.023329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.023329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0802 fa3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.023329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.023329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.023329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.023329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.023329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.023329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.023329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.023329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.023330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.023330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.033327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.033327 LLDP, length 82 [|LLDP] 18:35:38.033327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.033327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.033327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.033327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.033327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.033327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.033327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 080a 9b5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.033327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.033327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.033327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.033327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.033327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.033328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.043327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.043327 LLDP, length 82 [|LLDP] 18:35:38.043327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.043327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.043327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0812 3c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.043327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.043327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.043327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.043327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.043327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.043327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.043327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.043327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.043327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.043328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.053325 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.053325 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.053325 LLDP, length 82 [|LLDP] 18:35:38.053325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.053325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.053326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0819 dd9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.053326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.053326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.053326 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.053326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.053326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.053326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.053326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.053326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.053326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.063328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.063328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.063328 LLDP, length 82 [|LLDP] 18:35:38.063328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.063329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.063329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0821 7ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.063329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.063329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.063329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.063329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.063329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.063329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.063329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.063329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.063329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.073328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.073328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.073328 LLDP, length 82 [|LLDP] 18:35:38.073328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.073328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.073328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0829 1fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.073328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.073328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.073329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.073329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.073329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.073329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.073329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.073329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.073329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.083333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.083333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.083333 LLDP, length 82 [|LLDP] 18:35:38.083333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.083333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.083333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.083333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.083333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.083333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0830 c0fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.083333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.083334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.083334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.083334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.083334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.083334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.093325 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.093325 LLDP, length 82 [|LLDP] 18:35:38.093325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.093325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.093325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0838 621e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.093326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.093326 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.093326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.093326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.093326 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.093326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.093326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.093326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.093326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.093326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.103327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.103327 LLDP, length 82 [|LLDP] 18:35:38.103327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.103327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.103327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0840 033e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.103328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.103328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.103328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.103328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.103328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.103328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.103328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.103328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.103328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.103328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.113328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.113328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.113328 LLDP, length 82 [|LLDP] 18:35:38.113328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.113328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.113328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.113328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.113328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.113329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0847 a45e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.113329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.113329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.113329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.113329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.113329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.113329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.123329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.123330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.123330 LLDP, length 82 [|LLDP] 18:35:38.123330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.123330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.123330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 084f 457e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.123330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.123330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.123330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.123330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.123330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.123330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.123330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.123330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.123330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.133335 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.133335 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.133335 LLDP, length 82 [|LLDP] 18:35:38.133335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.133336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.133336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0856 e69e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.133336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.133336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.133336 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.133336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.133336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.133336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.133336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.133336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.133336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.143327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.143327 LLDP, length 82 [|LLDP] 18:35:38.143327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.143327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.143327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 085e 87be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.143327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.143327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.143327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.143327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.143327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.143327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.143327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.143328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.143328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.143328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.153325 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.153325 LLDP, length 82 [|LLDP] 18:35:38.153325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.153325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.153325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0866 28de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.153325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.153325 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.153325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.153325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.153325 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.153325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.153326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.153326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.153326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.153326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.163326 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.163326 LLDP, length 82 [|LLDP] 18:35:38.163326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.163326 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.163326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.163326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.163326 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.163326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.163326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 086d c9fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.163326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.163327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.163327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.163327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.163327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.163327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.173327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.173327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.173327 LLDP, length 82 [|LLDP] 18:35:38.173327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.173327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.173327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0875 6b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.173327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.173327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.173327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.173328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.173328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.173328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.173328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.173328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.173328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.183328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.183328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.183328 LLDP, length 82 [|LLDP] 18:35:38.183328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.183328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.183328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 087d 0c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.183329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.183329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.183329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.183329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.183329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.183329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.183329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.183329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.183329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.193326 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.193326 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.193327 LLDP, length 82 [|LLDP] 18:35:38.193327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.193327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.193327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.193327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.193327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.193327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0884 ad5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.193327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.193327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.193327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.193327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.193327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.193327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.203327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.203327 LLDP, length 82 [|LLDP] 18:35:38.203327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.203327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.203327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 088c 4e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.203327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.203327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.203327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.203327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.203327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.203327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.203327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.203327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.203327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.203328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.213328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.213328 LLDP, length 82 [|LLDP] 18:35:38.213328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.213328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.213328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0893 ef9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.213328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.213328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.213328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.213328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.213329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.213329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.213329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.213329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.213329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.213329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.223329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.223329 LLDP, length 82 [|LLDP] 18:35:38.223329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.223329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.223329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 089b 90be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.223330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.223330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.223330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.223330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.223330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.223330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.223330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.223330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.223330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.223330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.233326 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.233326 LLDP, length 82 [|LLDP] 18:35:38.233326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.233326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.233326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08a3 31de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.233327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.233327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.233327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.233327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.233327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.233327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.233327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.233327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.233327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.233327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.243331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.243332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.243332 LLDP, length 82 [|LLDP] 18:35:38.243332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.243332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.243332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.243332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.243332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.243332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08aa d2fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.243332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.243332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.243332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.243332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.243332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.243332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.253329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.253329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.253329 LLDP, length 82 [|LLDP] 18:35:38.253329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.253329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.253329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08b2 741e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.253329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.253329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.253330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.253330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.253330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.253330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.253330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.253330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.253330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.263328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.263328 LLDP, length 82 [|LLDP] 18:35:38.263328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.263328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.263328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08ba 153e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.263328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.263328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.263328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.263329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.263329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.263329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.263329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.263329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.263329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.263329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.273327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.273327 LLDP, length 82 [|LLDP] 18:35:38.273327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.273327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.273327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.273327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.273327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.273327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.273328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08c1 b65e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.273328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.273328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.273328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.273328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.273328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.273328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.283332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.283332 LLDP, length 82 [|LLDP] 18:35:38.283332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.283332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.283332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08c9 577e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.283332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.283332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.283332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.283332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.283332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.283332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.283333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.283333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.283333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.283333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.293328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.293328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.293328 LLDP, length 82 [|LLDP] 18:35:38.293328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.293328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.293328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08d0 f89e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.293328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.293328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.293328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.293328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.293328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.293329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.293329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.293329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.293329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.303325 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.303325 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.303325 LLDP, length 82 [|LLDP] 18:35:38.303325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.303325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.303325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08d8 99be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.303325 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.303325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.303326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.303326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.303326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.303326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.303326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.303326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.303326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.313326 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.313327 LLDP, length 82 [|LLDP] 18:35:38.313327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.313327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.313327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08e0 3ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.313327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.313327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.313327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.313327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.313327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.313327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.313327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.313327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.313327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.313327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.323329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.323329 LLDP, length 82 [|LLDP] 18:35:38.323329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.323329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.323329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.323329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.323329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.323329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.323329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08e7 dbfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.323329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.323329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.323329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.323329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.323329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.323329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.333340 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.333340 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.333340 LLDP, length 82 [|LLDP] 18:35:38.333340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.333340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.333340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08ef 7d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.333340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.333340 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.333340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.333341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.333341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.333341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.333341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.333341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.333341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.343339 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.343339 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.343340 LLDP, length 82 [|LLDP] 18:35:38.343340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.343340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.343340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08f7 1e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.343340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.343340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.343340 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.343340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.343340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.343340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.343340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.343340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.343340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.353336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.353336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.353336 LLDP, length 82 [|LLDP] 18:35:38.353336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.353336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.353336 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.353336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.353336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.353336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08fe bf5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.353336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.353337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.353337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.353337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.353337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.353337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.363340 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.363340 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.363341 LLDP, length 82 [|LLDP] 18:35:38.363341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.363341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.363341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0906 607e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.363341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.363341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.363341 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.363341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.363341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.363341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.363341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.363341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.363341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.373332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.373332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.373332 LLDP, length 82 [|LLDP] 18:35:38.373332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.373332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.373332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 090e 019e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.373332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.373332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.373332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.373332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.373332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.373332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.373332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.373332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.373332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.383330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.383330 LLDP, length 82 [|LLDP] 18:35:38.383330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.383330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.383330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0915 a2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.383330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.383330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.383330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.383330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.383331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.383331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.383331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.383331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.383331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.383331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.393330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.393330 LLDP, length 82 [|LLDP] 18:35:38.393330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.393330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.393330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 091d 43de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.393330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.393330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.393330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.393330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.393330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.393330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.393330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.393330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.393331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.393331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.403326 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.403326 LLDP, length 82 [|LLDP] 18:35:38.403326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.403326 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.403327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.403327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.403327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.403327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.403327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0924 e4fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.403327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.403327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.403327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.403327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.403327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.403327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.413326 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.413326 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.413326 LLDP, length 82 [|LLDP] 18:35:38.413326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.413326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.413326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 092c 861e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.413327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.413327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.413327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.413327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.413327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.413327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.413327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.413327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.413327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.423328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.423328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.423328 LLDP, length 82 [|LLDP] 18:35:38.423328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.423328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.423328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0934 273e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.423328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.423328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.423328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.423328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.423328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.423329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.423329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.423329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.423329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.433329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.433329 LLDP, length 82 [|LLDP] 18:35:38.433329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.433329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.433329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.433329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.433329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.433329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.433329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 093b c85e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.433329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.433329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.433330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.433330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.433330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.433330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.443327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.443328 LLDP, length 82 [|LLDP] 18:35:38.443328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.443328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.443328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0943 697e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.443328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.443328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.443328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.443328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.443328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.443328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.443328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.443328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.443328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.443328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.453327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.453327 LLDP, length 82 [|LLDP] 18:35:38.453328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.453328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.453328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 094b 0a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.453328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.453328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.453328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.453328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.453328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.453328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.453328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.453328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.453328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.453328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.463330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.463330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.463330 LLDP, length 82 [|LLDP] 18:35:38.463330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.463330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.463330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0952 abbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.463330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.463330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.463330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.463331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.463331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.463331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.463331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.463331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.463331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.473330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.473330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.473330 LLDP, length 82 [|LLDP] 18:35:38.473330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.473331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.473331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 095a 4cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.473331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.473331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.473331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.473331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.473331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.473331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.473331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.473331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.473331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.483328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.483328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.483328 LLDP, length 82 [|LLDP] 18:35:38.483328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.483328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.483328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.483328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.483328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.483328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0961 edfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.483328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.483329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.483329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.483329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.483329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.483329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.493329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.493329 LLDP, length 82 [|LLDP] 18:35:38.493329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.493329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.493329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0969 8f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.493329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.493329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.493329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.493329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.493329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.493329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.493329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.493329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.493329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.493330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.503327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.503327 LLDP, length 82 [|LLDP] 18:35:38.503327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.503328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.503328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0971 303e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.503328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.503328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.503328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.503328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.503328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.503328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.503328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.503328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.503328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.503328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.513327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.513327 LLDP, length 82 [|LLDP] 18:35:38.513327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.513327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.513327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.513327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.513327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.513327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.513327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0978 d15e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.513327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.513327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.513328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.513328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.513328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.513328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.523330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.523331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.523331 LLDP, length 82 [|LLDP] 18:35:38.523331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.523331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.523331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0980 727e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.523331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.523331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.523331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.523331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.523331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.523331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.523331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.523331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.523331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.533351 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.533351 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.533351 LLDP, length 82 [|LLDP] 18:35:38.533351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.533351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.533352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0988 139e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.533352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.533352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.533352 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.533352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.533352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.533352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.533352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.533352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.533352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.543341 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.543341 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.543341 LLDP, length 82 [|LLDP] 18:35:38.543341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.543341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.543341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 098f b4be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.543341 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.543341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.543341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.543341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.543342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.543342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.543342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.543342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.543342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.553333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.553333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.553333 LLDP, length 82 [|LLDP] 18:35:38.553334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.553334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.553334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0997 55de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.553334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.553334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.553334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.553334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.553334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.553334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.553334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.553334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.553334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.563331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.563331 LLDP, length 82 [|LLDP] 18:35:38.563331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.563331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.563331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.563332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.563332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.563332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.563332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 099e f6fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.563332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.563332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.563332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.563332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.563332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.563332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.573330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.573330 LLDP, length 82 [|LLDP] 18:35:38.573330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.573330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.573330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09a6 981e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.573330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.573331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.573331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.573331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.573331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.573331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.573331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.573331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.573331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.573331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.583333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.583333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.583333 LLDP, length 82 [|LLDP] 18:35:38.583333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.583333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.583333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09ae 393e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.583333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.583333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.583333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.583333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.583333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.583333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.583333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.583334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.583334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.593328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.593328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.593328 LLDP, length 82 [|LLDP] 18:35:38.593328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.593328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.593328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.593328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.593328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.593329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09b5 da5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.593329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.593329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.593329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.593329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.593329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.593329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.603329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.603329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.603329 LLDP, length 82 [|LLDP] 18:35:38.603329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.603330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.603330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09bd 7b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.603330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.603330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.603330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.603330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.603330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.603330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.603330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.603330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.603330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.613328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.613328 LLDP, length 82 [|LLDP] 18:35:38.613328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.613328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.613328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09c5 1c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.613328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.613328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.613328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.613328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.613328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.613328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.613328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.613328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.613329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.613329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.623330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.623330 LLDP, length 82 [|LLDP] 18:35:38.623330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.623330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.623330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09cc bdbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.623330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.623330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.623330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.623330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.623330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.623330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.623331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.623331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.623331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.623331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.633330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.633330 LLDP, length 82 [|LLDP] 18:35:38.633330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.633330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.633330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09d4 5ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.633331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.633331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.633331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.633331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.633331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.633331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.633331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.633331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.633331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.633331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.643336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.643336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.643336 LLDP, length 82 [|LLDP] 18:35:38.643336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.643336 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.643336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.643337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.643337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.643337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09db fffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.643337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.643337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.643337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.643337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.643337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.643337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.653328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.653328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.653328 LLDP, length 82 [|LLDP] 18:35:38.653328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.653328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.653329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09e3 a11e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.653329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.653329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.653329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.653329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.653329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.653329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.653329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.653329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.653329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.663330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.663330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.663330 LLDP, length 82 [|LLDP] 18:35:38.663330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.663331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.663331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09eb 423e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.663331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.663331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.663331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.663331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.663331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.663331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.663331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.663331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.663331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.673330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.673330 LLDP, length 82 [|LLDP] 18:35:38.673330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.673330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.673330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.673330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.673330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.673330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.673330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09f2 e35e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.673330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.673330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.673331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.673331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.673331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.673331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.683332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.683332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.683332 LLDP, length 82 [|LLDP] 18:35:38.683332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.683332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.683332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09fa 847e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.683332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.683332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.683333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.683333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.683333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.683333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.683333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.683333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.683333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.693329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.693329 LLDP, length 82 [|LLDP] 18:35:38.693329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.693329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.693330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a02 259e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.693330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.693330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.693330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.693330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.693330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.693330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.693330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.693330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.693330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.693330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.703329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.703329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.703329 LLDP, length 82 [|LLDP] 18:35:38.703329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.703329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.703329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a09 c6be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.703329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.703329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.703330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.703330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.703330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.703330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.703330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.703330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.703330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.713328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.713328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.713328 LLDP, length 82 [|LLDP] 18:35:38.713328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.713328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.713328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a11 67de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.713328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.713328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.713328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.713328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.713328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.713328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.713329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.713329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.713329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.723329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.723329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.723329 LLDP, length 82 [|LLDP] 18:35:38.723329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.723329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.723329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.723329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.723329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.723329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a19 08fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.723329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.723329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.723329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.723329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.723330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.723330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.733329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.733329 LLDP, length 82 [|LLDP] 18:35:38.733329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.733329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.733329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a20 aa1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.733329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.733329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.733329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.733329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.733329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.733330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.733330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.733330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.733330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.733330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.743329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.743329 LLDP, length 82 [|LLDP] 18:35:38.743329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.743329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.743329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a28 4b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.743329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.743329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.743329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.743330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.743330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.743330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.743330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.743330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.743330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.743330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.753329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.753329 LLDP, length 82 [|LLDP] 18:35:38.753329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.753329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.753329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.753329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.753329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.753329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.753329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a2f ec5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.753329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.753329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.753329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.753329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.753329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.753330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.763330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.763330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.763330 LLDP, length 82 [|LLDP] 18:35:38.763330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.763330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.763331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a37 8d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.763331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.763331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.763331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.763331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.763331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.763331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.763331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.763331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.763331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.773333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.773333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.773333 LLDP, length 82 [|LLDP] 18:35:38.773333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.773333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.773334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a3f 2e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.773334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.773334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.773334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.773334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.773334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.773334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.773334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.773334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.773334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.783329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.783329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.783329 LLDP, length 82 [|LLDP] 18:35:38.783329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.783329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.783329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a46 cfbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.783329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.783329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.783330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.783330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.783330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.783330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.783330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.783330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.783330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.793329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.793329 LLDP, length 82 [|LLDP] 18:35:38.793329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.793329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.793329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a4e 70de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.793330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.793330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.793330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.793330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.793330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.793330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.793330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.793330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.793330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.793330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.803327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.803327 LLDP, length 82 [|LLDP] 18:35:38.803328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.803328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.803328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.803328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.803328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.803328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.803328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a56 11fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.803328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.803328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.803328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.803328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.803328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.803328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.813327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.813327 LLDP, length 82 [|LLDP] 18:35:38.813327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.813327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.813327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a5d b31e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.813327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.813327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.813328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.813328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.813328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.813328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.813328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.813328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.813328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.813328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.823332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.823332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.823332 LLDP, length 82 [|LLDP] 18:35:38.823332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.823332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.823332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a65 543e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.823332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.823332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.823333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.823333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.823333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.823333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.823333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.823333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.823333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.833330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.833330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.833330 LLDP, length 82 [|LLDP] 18:35:38.833330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.833330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.833330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.833330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.833330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.833330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a6c f55e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.833330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.833330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.833330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.833330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.833330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.833331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.843330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.843330 LLDP, length 82 [|LLDP] 18:35:38.843330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.843330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.843330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a74 967e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.843330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.843330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.843331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.843331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.843331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.843331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.843331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.843331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.843331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.843331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.853329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.853329 LLDP, length 82 [|LLDP] 18:35:38.853329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.853329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.853329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a7c 379e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.853329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.853329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.853329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.853329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.853329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.853329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.853329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.853330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.853330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.853330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.863340 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.863340 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.863340 LLDP, length 82 [|LLDP] 18:35:38.863340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.863340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.863340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a83 d8be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.863340 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.863340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.863340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.863340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.863340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.863340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.863341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.863341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.863341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.873330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.873330 LLDP, length 82 [|LLDP] 18:35:38.873330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.873330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.873330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a8b 79de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.873330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.873330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.873330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.873331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.873331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.873331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.873331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.873331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.873331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.873331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.883342 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.883342 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.883342 LLDP, length 82 [|LLDP] 18:35:38.883342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.883342 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.883342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.883342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.883342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.883342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a93 1afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.883343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.883343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.883343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.883343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.883343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.883343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.893330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.893330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.893330 LLDP, length 82 [|LLDP] 18:35:38.893330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.893330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.893330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a9a bc1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.893330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.893330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.893331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.893331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.893331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.893331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.893331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.893331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.893331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.903327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.903327 LLDP, length 82 [|LLDP] 18:35:38.903328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.903328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.903328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aa2 5d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.903328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.903328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.903328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.903328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.903328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.903328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.903328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.903328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.903328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.903328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.913327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.913327 LLDP, length 82 [|LLDP] 18:35:38.913327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.913327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.913328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.913328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.913328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.913328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.913328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aa9 fe5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.913328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.913328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.913328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.913328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.913328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.913328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.923342 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.923342 LLDP, length 82 [|LLDP] 18:35:38.923342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.923342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.923342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ab1 9f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.923342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.923342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.923343 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.923343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.923343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.923343 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.923343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.923343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.923343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.923343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.933337 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.933337 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.933337 LLDP, length 82 [|LLDP] 18:35:38.933338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.933338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.933338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ab9 409e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.933338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.933338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.933338 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.933338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.933338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.933338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.933338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.933338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.933338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.943332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.943332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.943332 LLDP, length 82 [|LLDP] 18:35:38.943333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.943333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.943333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ac0 e1be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.943333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.943333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.943333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.943333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.943333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.943333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.943333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.943333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.943333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.953333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.953333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.953333 LLDP, length 82 [|LLDP] 18:35:38.953333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.953333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.953333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ac8 82de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.953333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.953334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.953334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.953334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.953334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.953334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.953334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.953334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.953334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.963338 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.963338 LLDP, length 82 [|LLDP] 18:35:38.963338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.963338 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.963338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.963338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.963338 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.963338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.963338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ad0 23fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.963338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.963338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.963338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.963338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.963339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.963339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.973334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.973334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.973334 LLDP, length 82 [|LLDP] 18:35:38.973334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.973334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.973334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ad7 c51e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.973334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.973334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.973334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.973334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.973335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.973335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.973335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.973335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.973335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.983332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.983332 LLDP, length 82 [|LLDP] 18:35:38.983332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.983332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.983332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0adf 663e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.983332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.983332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.983332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.983333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.983333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.983333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.983333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.983333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.983333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.983333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.993330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.993330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.993330 LLDP, length 82 [|LLDP] 18:35:38.993330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.993330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.993331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.993331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.993331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.993331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ae7 075e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.993331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.993331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.993331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.993331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.993331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.993331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.003331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.003331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.003332 LLDP, length 82 [|LLDP] 18:35:39.003332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.003332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.003332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aee a87e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.003332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.003332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.003332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.003332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.003332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.003332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.003332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.003332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.003332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.013330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.013330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.013330 LLDP, length 82 [|LLDP] 18:35:39.013330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.013330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.013330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0af6 499e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.013330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.013330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.013330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.013330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.013330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.013330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.013330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.013331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.013331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.023334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.023334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.023334 LLDP, length 82 [|LLDP] 18:35:39.023334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.023335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.023335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0afd eabe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.023335 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.023335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.023335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.023335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.023335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.023335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.023335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.023335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.023335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.033329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.033329 LLDP, length 82 [|LLDP] 18:35:39.033329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.033330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.033330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b05 8bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.033330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.033330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.033330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.033330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.033330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.033330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.033330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.033330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.033330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.033330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.043336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.043336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.043337 LLDP, length 82 [|LLDP] 18:35:39.043337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.043337 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.043337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.043337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.043337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.043337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b0d 2cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.043337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.043337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.043337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.043337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.043337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.043337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.053327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.053327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.053327 LLDP, length 82 [|LLDP] 18:35:39.053327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.053327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.053327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b14 ce1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.053327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.053327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.053327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.053327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.053327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.053328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.053328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.053328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.053328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.063328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.063328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.063328 LLDP, length 82 [|LLDP] 18:35:39.063329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.063329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.063329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b1c 6f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.063329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.063329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.063329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.063329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.063329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.063329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.063329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.063329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.063329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.073330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.073330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.073330 LLDP, length 82 [|LLDP] 18:35:39.073330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.073331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.073331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.073331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.073331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.073331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b24 105e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.073331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.073331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.073331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.073331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.073331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.073331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.083331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.083331 LLDP, length 82 [|LLDP] 18:35:39.083331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.083331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.083331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b2b b17e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.083331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.083331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.083331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.083331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.083331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.083331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.083331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.083331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.083332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.083332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.093330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.093330 LLDP, length 82 [|LLDP] 18:35:39.093330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.093330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.093330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b33 529e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.093330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.093330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.093330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.093330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.093330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.093330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.093330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.093330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.093331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.093331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.103328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.103328 LLDP, length 82 [|LLDP] 18:35:39.103329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.103329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.103329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b3a f3be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.103329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.103329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.103329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.103329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.103329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.103329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.103329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.103329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.103329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.103329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.113329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.113329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.113329 LLDP, length 82 [|LLDP] 18:35:39.113330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.113330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.113330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b42 94de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.113330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.113330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.113330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.113330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.113330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.113330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.113330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.113330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.113330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.123330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.123330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.123330 LLDP, length 82 [|LLDP] 18:35:39.123330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.123330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.123330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.123330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.123330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.123330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b4a 35fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.123331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.123331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.123331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.123331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.123331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.123331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.133335 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.133335 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.133335 LLDP, length 82 [|LLDP] 18:35:39.133335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.133336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.133336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b51 d71e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.133336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.133336 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.133336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.133336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.133336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.133336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.133336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.133336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.133336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.143362 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.143362 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.143362 LLDP, length 82 [|LLDP] 18:35:39.143362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.143362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.143362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b59 783e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.143362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.143362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.143362 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.143362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.143363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.143363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.143363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.143363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.143363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.153372 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.153372 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.153372 LLDP, length 82 [|LLDP] 18:35:39.153372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.153372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.153372 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.153372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.153372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.153372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b61 195e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.153372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.153372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.153372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.153373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.153373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.153373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.163348 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.163348 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.163348 LLDP, length 82 [|LLDP] 18:35:39.163348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.163348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.163349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b68 ba7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.163349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.163349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.163349 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.163349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.163349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.163349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.163349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.163349 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.163349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.173334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.173335 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.173335 LLDP, length 82 [|LLDP] 18:35:39.173335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.173335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.173335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b70 5b9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.173335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.173335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.173335 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.173335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.173335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.173335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.173335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.173335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.173335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.183340 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.183340 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.183340 LLDP, length 82 [|LLDP] 18:35:39.183340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.183340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.183340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b77 fcbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.183341 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.183341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.183341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.183341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.183341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.183341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.183341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.183341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.183341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.193332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.193332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.193332 LLDP, length 82 [|LLDP] 18:35:39.193332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.193332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.193332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b7f 9dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.193332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.193332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.193332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.193332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.193332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.193332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.193333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.193333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.193333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.203331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.203331 LLDP, length 82 [|LLDP] 18:35:39.203331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.203331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.203331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.203331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.203331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.203331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.203331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b87 3efe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.203331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.203331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.203331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.203331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.203331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.203332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.213331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.213331 LLDP, length 82 [|LLDP] 18:35:39.213331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.213331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.213331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b8e e01e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.213331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.213331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.213331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.213331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.213331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.213331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.213331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.213332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.213332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.213332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.223388 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.223388 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.223388 LLDP, length 82 [|LLDP] 18:35:39.223388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.223388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.223388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b96 813e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.223388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.223389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.223389 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.223389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.223389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.223389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.223389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.223389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.223389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.233333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.233333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.233333 LLDP, length 82 [|LLDP] 18:35:39.233333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.233333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.233333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.233333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.233333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.233334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b9e 225e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.233334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.233334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.233334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.233334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.233334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.233334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.243333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.243333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.243333 LLDP, length 82 [|LLDP] 18:35:39.243333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.243333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.243333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ba5 c37e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.243333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.243333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.243333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.243333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.243334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.243334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.243334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.243334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.243334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.253344 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.253344 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.253344 LLDP, length 82 [|LLDP] 18:35:39.253344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.253344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.253344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bad 649e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.253344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.253344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.253344 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.253345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.253345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.253345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.253345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.253345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.253345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.263333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.263333 LLDP, length 82 [|LLDP] 18:35:39.263333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.263333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.263333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bb5 05be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.263333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.263333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.263333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.263333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.263333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.263333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.263333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.263334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.263334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.263334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.273331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.273331 LLDP, length 82 [|LLDP] 18:35:39.273331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.273331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.273332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bbc a6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.273332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.273332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.273332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.273332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.273332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.273332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.273332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.273332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.273332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.273332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.283332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.283332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.283332 LLDP, length 82 [|LLDP] 18:35:39.283332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.283332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.283332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.283332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.283332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.283332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bc4 47fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.283332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.283332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.283332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.283332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.283332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.283333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.293333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.293333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.293333 LLDP, length 82 [|LLDP] 18:35:39.293333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.293333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.293333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bcb e91e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.293334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.293334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.293334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.293334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.293334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.293334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.293334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.293334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.293334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.303329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.303329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.303329 LLDP, length 82 [|LLDP] 18:35:39.303329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.303330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.303330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bd3 8a3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.303330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.303330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.303330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.303330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.303330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.303330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.303330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.303330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.303330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.313330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.313330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.313330 LLDP, length 82 [|LLDP] 18:35:39.313330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.313330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.313331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.313331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.313331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.313331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bdb 2b5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.313331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.313331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.313331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.313331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.313331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.313331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.323331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.323331 LLDP, length 82 [|LLDP] 18:35:39.323331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.323331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.323331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0be2 cc7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.323332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.323332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.323332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.323332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.323332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.323332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.323332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.323332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.323332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.323332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.333331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.333331 LLDP, length 82 [|LLDP] 18:35:39.333331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.333331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.333332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bea 6d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.333332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.333332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.333332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.333332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.333332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.333332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.333332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.333332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.333332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.333332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.343332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.343332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.343332 LLDP, length 82 [|LLDP] 18:35:39.343332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.343332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.343332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bf2 0ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.343333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.343333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.343333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.343333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.343333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.343333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.343333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.343333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.343333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.353333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.353333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.353333 LLDP, length 82 [|LLDP] 18:35:39.353333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.353334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.353334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bf9 afde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.353334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.353334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.353334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.353334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.353334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.353334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.353334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.353334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.353334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.363330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.363330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.363330 LLDP, length 82 [|LLDP] 18:35:39.363330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.363331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.363331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.363331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.363331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.363331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c01 50fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.363331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.363331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.363331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.363331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.363331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.363331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.373331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.373331 LLDP, length 82 [|LLDP] 18:35:39.373331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.373331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.373331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c08 f21e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.373331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.373331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.373331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.373331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.373331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.373331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.373331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.373332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.373332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.373332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.383331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.383331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.383331 LLDP, length 82 [|LLDP] 18:35:39.383331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.383331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.383331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c10 933e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.383332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.383332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.383332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.383332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.383332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.383332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.383332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.383332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.383332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.393345 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.393345 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.393345 LLDP, length 82 [|LLDP] 18:35:39.393345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.393345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.393345 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.393345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.393345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.393345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c18 345e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.393345 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.393346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.393346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.393346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.393346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.393346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.403337 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.403337 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.403337 LLDP, length 82 [|LLDP] 18:35:39.403337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.403337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.403337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c1f d57e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.403337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.403337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.403337 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.403337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.403337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.403337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.403337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.403338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.403338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.413334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.413334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.413334 LLDP, length 82 [|LLDP] 18:35:39.413334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.413334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.413334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c27 769e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.413334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.413335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.413335 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.413335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.413335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.413335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.413335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.413335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.413335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.423331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.423331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.423332 LLDP, length 82 [|LLDP] 18:35:39.423332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.423332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.423332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c2f 17be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.423332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.423332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.423332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.423332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.423332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.423332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.423332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.423332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.423332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.433332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.433332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.433332 LLDP, length 82 [|LLDP] 18:35:39.433332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.433332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.433332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c36 b8de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.433332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.433333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.433333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.433333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.433333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.433333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.433333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.433333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.433333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.443330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.443330 LLDP, length 82 [|LLDP] 18:35:39.443330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.443330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.443330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.443331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.443331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.443331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.443331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c3e 59fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.443331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.443331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.443331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.443331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.443331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.443331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.453329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.453329 LLDP, length 82 [|LLDP] 18:35:39.453329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.453329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.453329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c45 fb1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.453329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.453330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.453330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.453330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.453330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.453330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.453330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.453330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.453330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.453330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.463331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.463331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.463331 LLDP, length 82 [|LLDP] 18:35:39.463331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.463331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.463331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c4d 9c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.463331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.463331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.463331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.463331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.463331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.463331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.463331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.463332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.463332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.473328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.473328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.473328 LLDP, length 82 [|LLDP] 18:35:39.473328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.473328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.473328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.473329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.473329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.473329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c55 3d5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.473329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.473329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.473329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.473329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.473329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.473329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.483330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.483330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.483330 LLDP, length 82 [|LLDP] 18:35:39.483330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.483330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.483330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c5c de7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.483330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.483330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.483330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.483330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.483330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.483330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.483331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.483331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.483331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.493329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.493329 LLDP, length 82 [|LLDP] 18:35:39.493329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.493330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.493330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c64 7f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.493330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.493330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.493330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.493330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.493330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.493330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.493330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.493330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.493330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.493330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.503339 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.503339 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.503339 LLDP, length 82 [|LLDP] 18:35:39.503339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.503339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.503339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c6c 20be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.503339 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.503339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.503339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.503339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.503339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.503339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.503339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.503340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.503340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.513329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.513329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.513329 LLDP, length 82 [|LLDP] 18:35:39.513330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.513330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.513330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c73 c1de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.513330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.513330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.513330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.513330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.513330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.513330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.513330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.513330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.513330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.523328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.523328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.523328 LLDP, length 82 [|LLDP] 18:35:39.523328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.523328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.523329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.523329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.523329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.523329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c7b 62fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.523329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.523329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.523329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.523329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.523329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.523329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.533328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.533328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.533328 LLDP, length 82 [|LLDP] 18:35:39.533328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.533328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.533328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c83 041e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.533329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.533329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.533329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.533329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.533329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.533329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.533329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.533329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.533329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.543329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.543329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.543329 LLDP, length 82 [|LLDP] 18:35:39.543329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.543329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.543329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c8a a53e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.543329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.543329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.543329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.543329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.543329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.543330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.543330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.543330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.543330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.553328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.553328 LLDP, length 82 [|LLDP] 18:35:39.553328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.553328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.553328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.553328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.553328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.553328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.553328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c92 465e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.553329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.553329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.553329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.553329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.553329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.553329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.563331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.563331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.563331 LLDP, length 82 [|LLDP] 18:35:39.563331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.563331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.563331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c99 e77e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.563331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.563332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.563332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.563332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.563332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.563332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.563332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.563332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.563332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.573329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.573329 LLDP, length 82 [|LLDP] 18:35:39.573329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.573329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.573329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ca1 889e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.573329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.573329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.573329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.573330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.573330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.573330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.573330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.573330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.573330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.573330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.583333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.583333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.583333 LLDP, length 82 [|LLDP] 18:35:39.583333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.583333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.583333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ca9 29be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.583333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.583333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.583333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.583333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.583333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.583333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.583333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.583333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.583334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.593329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.593330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.593330 LLDP, length 82 [|LLDP] 18:35:39.593330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.593330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.593330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cb0 cade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.593330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.593330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.593330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.593330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.593330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.593330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.593330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.593330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.593330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.603333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.603333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.603334 LLDP, length 82 [|LLDP] 18:35:39.603334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.603334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.603334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.603334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.603334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.603334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cb8 6bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.603334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.603334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.603334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.603334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.603334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.603334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.613331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.613331 LLDP, length 82 [|LLDP] 18:35:39.613331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.613332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.613332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cc0 0d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.613332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.613332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.613332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.613332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.613332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.613332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.613332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.613332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.613332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.613332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.623329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.623329 LLDP, length 82 [|LLDP] 18:35:39.623329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.623329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.623329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cc7 ae3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.623329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.623329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.623329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.623329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.623329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.623329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.623329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.623330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.623330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.623330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.633330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.633330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.633330 LLDP, length 82 [|LLDP] 18:35:39.633330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.633330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.633330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.633331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.633331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.633331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ccf 4f5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.633331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.633331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.633331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.633331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.633331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.633331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.643330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.643330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.643330 LLDP, length 82 [|LLDP] 18:35:39.643330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.643330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.643330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cd6 f07e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.643330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.643330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.643331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.643331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.643331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.643331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.643331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.643331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.643331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.653329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.653329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.653329 LLDP, length 82 [|LLDP] 18:35:39.653329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.653329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.653329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cde 919e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.653329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.653329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.653329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.653329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.653329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.653330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.653330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.653330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.653330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.663331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.663331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.663331 LLDP, length 82 [|LLDP] 18:35:39.663331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.663331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.663331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ce6 32be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.663331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.663331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.663331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.663331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.663331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.663331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.663331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.663331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.663332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.673329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.673329 LLDP, length 82 [|LLDP] 18:35:39.673329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.673329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.673329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ced d3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.673329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.673329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.673329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.673329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.673330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.673330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.673330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.673330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.673330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.673330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.683329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.683329 LLDP, length 82 [|LLDP] 18:35:39.683330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.683330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.683330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.683330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.683330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.683330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.683330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cf5 74fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.683330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.683330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.683330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.683330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.683330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.683330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.693331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.693331 LLDP, length 82 [|LLDP] 18:35:39.693331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.693331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.693331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cfd 161e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.693331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.693331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.693331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.693331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.693331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.693331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.693332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.693332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.693332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.693332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.703333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.703333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.703333 LLDP, length 82 [|LLDP] 18:35:39.703333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.703333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.703333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d04 b73e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.703333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.703333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.703333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.703333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.703333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.703333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.703334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.703334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.703334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.713334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.713334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.713334 LLDP, length 82 [|LLDP] 18:35:39.713334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.713334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.713335 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.713335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.713335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.713335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d0c 585e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.713335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.713335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.713335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.713335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.713335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.713335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.723333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.723333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.723333 LLDP, length 82 [|LLDP] 18:35:39.723333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.723333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.723333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d13 f97e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.723333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.723333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.723333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.723333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.723333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.723334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.723334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.723334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.723334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.733332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.733332 LLDP, length 82 [|LLDP] 18:35:39.733332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.733332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.733332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d1b 9a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.733332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.733332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.733332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.733333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.733333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.733333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.733333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.733333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.733333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.733333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.743329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.743329 LLDP, length 82 [|LLDP] 18:35:39.743329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.743329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.743329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d23 3bbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.743329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.743330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.743330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.743330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.743330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.743330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.743330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.743330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.743330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.743330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.753328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.753328 LLDP, length 82 [|LLDP] 18:35:39.753328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.753328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.753329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d2a dcde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.753329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.753329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.753329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.753329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.753329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.753329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.753329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.753329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.753329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.753329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.763332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.763332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.763332 LLDP, length 82 [|LLDP] 18:35:39.763332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.763332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.763332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.763332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.763332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.763332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d32 7dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.763332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.763333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.763333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.763333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.763333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.763333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.773331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.773331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.773331 LLDP, length 82 [|LLDP] 18:35:39.773331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.773331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.773331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d3a 1f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.773331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.773331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.773331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.773331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.773332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.773332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.773332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.773332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.773332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.783331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.783331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.783331 LLDP, length 82 [|LLDP] 18:35:39.783331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.783332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.783332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d41 c03e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.783332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.783332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.783332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.783332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.783332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.783332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.783332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.783332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.783332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.793332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.793332 LLDP, length 82 [|LLDP] 18:35:39.793332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.793332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.793332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.793332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.793332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.793332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.793333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d49 615e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.793333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.793333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.793333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.793333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.793333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.793333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.803348 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.803348 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.803348 LLDP, length 82 [|LLDP] 18:35:39.803348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.803348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.803348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d51 027e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.803348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.803348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.803348 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.803349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.803349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.803349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.803349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.803349 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.803349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.813349 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.813349 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.813349 LLDP, length 82 [|LLDP] 18:35:39.813349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.813349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.813349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d58 a39e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.813349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.813349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.813349 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.813349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.813350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.813350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.813350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.813350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.813350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.823337 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.823337 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.823338 LLDP, length 82 [|LLDP] 18:35:39.823338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.823338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.823338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d60 44be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.823338 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.823338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.823338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.823338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.823338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.823338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.823338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.823338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.823338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.833336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.833336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.833336 LLDP, length 82 [|LLDP] 18:35:39.833337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.833337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.833337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d67 e5de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.833337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.833337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.833337 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.833337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.833337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.833337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.833337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.833337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.833337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.843330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.843330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.843330 LLDP, length 82 [|LLDP] 18:35:39.843330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.843330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.843330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.843330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.843330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.843330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d6f 86fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.843330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.843331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.843331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.843331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.843331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.843331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.853336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.853336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.853336 LLDP, length 82 [|LLDP] 18:35:39.853336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.853336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.853336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d77 281e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.853336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.853336 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.853336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.853336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.853337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.853337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.853337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.853337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.853337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.863371 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.863371 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.863371 LLDP, length 82 [|LLDP] 18:35:39.863371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.863372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.863372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d7e c93e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.863372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.863372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.863372 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.863372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.863372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.863372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.863372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.863372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.863372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.873359 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.873359 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.873359 LLDP, length 82 [|LLDP] 18:35:39.873359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.873359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.873359 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.873360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.873360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.873360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d86 6a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.873360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.873360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.873360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.873360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.873360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.873360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.883356 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.883356 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.883356 LLDP, length 82 [|LLDP] 18:35:39.883356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.883356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.883356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d8e 0b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.883356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.883356 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.883356 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.883356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.883357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.883357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.883357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.883357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.883357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.893365 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.893365 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.893365 LLDP, length 82 [|LLDP] 18:35:39.893365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.893365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.893365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d95 ac9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.893366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.893366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.893366 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.893366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.893366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.893366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.893366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.893366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.893366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.903362 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.903362 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.903362 LLDP, length 82 [|LLDP] 18:35:39.903362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.903362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.903362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d9d 4dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.903362 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.903362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.903362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.903362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.903362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.903362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.903362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.903362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.903362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.913361 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.913361 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.913361 LLDP, length 82 [|LLDP] 18:35:39.913361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.913361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.913361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0da4 eede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.913361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.913361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.913361 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.913361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.913361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.913361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.913361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.913361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.913362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.923354 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.923354 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.923354 LLDP, length 82 [|LLDP] 18:35:39.923354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.923354 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.923354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.923354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.923354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.923354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dac 8ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.923354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.923354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.923354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.923354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.923355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.923355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.933333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.933333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.933333 LLDP, length 82 [|LLDP] 18:35:39.933333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.933333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.933333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0db4 311e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.933333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.933333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.933334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.933334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.933334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.933334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.933334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.933334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.933334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.943331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.943331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.943331 LLDP, length 82 [|LLDP] 18:35:39.943331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.943331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.943331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dbb d23e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.943331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.943332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.943332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.943332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.943332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.943332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.943332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.943332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.943332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.953331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.953331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.953332 LLDP, length 82 [|LLDP] 18:35:39.953332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.953332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.953332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.953332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.953332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.953332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dc3 735e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.953332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.953332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.953332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.953332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.953332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.953332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.963332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.963332 LLDP, length 82 [|LLDP] 18:35:39.963333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.963333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.963333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dcb 147e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.963333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.963333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.963333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.963333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.963333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.963333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.963333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.963333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.963333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.963333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.973329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.973329 LLDP, length 82 [|LLDP] 18:35:39.973329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.973329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.973329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dd2 b59e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.973330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.973330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.973330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.973330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.973330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.973330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.973330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.973330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.973330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.973330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.983330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.983330 LLDP, length 82 [|LLDP] 18:35:39.983331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.983331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.983331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dda 56be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.983331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.983331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.983331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.983331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.983331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.983331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.983331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.983331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.983331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.983331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.993328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.993329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.993329 LLDP, length 82 [|LLDP] 18:35:39.993329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.993329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.993329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0de1 f7de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.993329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.993329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.993329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.993329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.993329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.993329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.993329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.993329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.993329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.003336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.003336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.003336 LLDP, length 82 [|LLDP] 18:35:40.003336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.003336 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.003336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.003336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.003336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.003336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0de9 98fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.003337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.003337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.003337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.003337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.003337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.003337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.013332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.013332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.013332 LLDP, length 82 [|LLDP] 18:35:40.013332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.013333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.013333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0df1 3a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.013333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.013333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.013333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.013333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.013333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.013333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.013333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.013333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.013333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.023330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.023330 LLDP, length 82 [|LLDP] 18:35:40.023330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.023330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.023331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0df8 db3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.023331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.023331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.023331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.023331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.023331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.023331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.023331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.023331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.023331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.023331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.033331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.033331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.033331 LLDP, length 82 [|LLDP] 18:35:40.033332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.033332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.033332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.033332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.033332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.033332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e00 7c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.033332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.033332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.033332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.033332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.033332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.033332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.043331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.043331 LLDP, length 82 [|LLDP] 18:35:40.043331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.043331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.043331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e08 1d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.043331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.043331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.043331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.043331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.043331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.043331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.043331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.043331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.043331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.043332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.053331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.053331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.053331 LLDP, length 82 [|LLDP] 18:35:40.053331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.053331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.053331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e0f be9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.053331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.053331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.053331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.053331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.053331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.053331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.053332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.053332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.053332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.063328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.063328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.063328 LLDP, length 82 [|LLDP] 18:35:40.063328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.063328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.063329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e17 5fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.063329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.063329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.063329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.063329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.063329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.063329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.063329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.063329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.063329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.073329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.073329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.073329 LLDP, length 82 [|LLDP] 18:35:40.073329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.073329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.073329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e1f 00de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.073329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.073329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.073329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.073330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.073330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.073330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.073330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.073330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.073330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.083331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.083331 LLDP, length 82 [|LLDP] 18:35:40.083331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.083331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.083331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.083331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.083331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.083331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.083331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e26 a1fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.083332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.083332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.083332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.083332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.083332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.083332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.093329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.093329 LLDP, length 82 [|LLDP] 18:35:40.093329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.093329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.093329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e2e 431e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.093329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.093330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.093330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.093330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.093330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.093330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.093330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.093330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.093330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.093330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.103337 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.103337 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.103337 LLDP, length 82 [|LLDP] 18:35:40.103337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.103337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.103337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e35 e43e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.103337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.103337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.103337 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.103337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.103337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.103337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.103337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.103338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.103338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.113329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.113329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.113329 LLDP, length 82 [|LLDP] 18:35:40.113329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.113329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.113329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.113329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.113329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.113329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e3d 855e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.113330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.113330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.113330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.113330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.113330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.113330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.123330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.123330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.123330 LLDP, length 82 [|LLDP] 18:35:40.123330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.123330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.123330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e45 267e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.123330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.123330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.123331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.123331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.123331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.123331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.123331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.123331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.123331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.133331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.133331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.133331 LLDP, length 82 [|LLDP] 18:35:40.133331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.133331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.133331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e4c c79e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.133332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.133332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.133332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.133332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.133332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.133332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.133332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.133332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.133332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.143327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.143327 LLDP, length 82 [|LLDP] 18:35:40.143327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.143328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.143328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e54 68be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.143328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.143328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.143328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.143328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.143328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.143328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.143328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.143328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.143328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.143328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.153330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.153330 LLDP, length 82 [|LLDP] 18:35:40.153330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.153330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.153330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e5c 09de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.153330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.153330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.153330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.153330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.153330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.153330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.153330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.153330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.153331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.153331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.163329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.163329 LLDP, length 82 [|LLDP] 18:35:40.163329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.163330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.163330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.163330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.163330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.163330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.163330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e63 aafe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.163330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.163330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.163330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.163330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.163330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.163330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.173330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.173330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.173330 LLDP, length 82 [|LLDP] 18:35:40.173330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.173330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.173331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e6b 4c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.173331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.173331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.173331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.173331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.173331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.173331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.173331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.173331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.173331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.183330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.183330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.183330 LLDP, length 82 [|LLDP] 18:35:40.183330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.183330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.183330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e72 ed3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.183330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.183330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.183330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.183330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.183330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.183330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.183330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.183331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.183331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.193330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.193330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.193330 LLDP, length 82 [|LLDP] 18:35:40.193330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.193330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.193330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.193330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.193330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.193330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e7a 8e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.193331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.193331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.193331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.193331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.193331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.193331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.203330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.203330 LLDP, length 82 [|LLDP] 18:35:40.203330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.203331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.203331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e82 2f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.203331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.203331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.203331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.203331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.203331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.203331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.203331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.203331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.203331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.203331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.213337 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.213338 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.213338 LLDP, length 82 [|LLDP] 18:35:40.213338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.213338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.213338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e89 d09e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.213338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.213338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.213338 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.213338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.213338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.213338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.213338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.213338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.213338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.223336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.223336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.223336 LLDP, length 82 [|LLDP] 18:35:40.223337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.223337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.223337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e91 71be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.223337 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.223337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.223337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.223337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.223337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.223337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.223337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.223337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.223337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.233332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.233332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.233332 LLDP, length 82 [|LLDP] 18:35:40.233332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.233332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.233332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e99 12de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.233332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.233332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.233332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.233333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.233333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.233333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.233333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.233333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.233333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.243330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.243330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.243330 LLDP, length 82 [|LLDP] 18:35:40.243330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.243330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.243330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.243330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.243330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.243330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ea0 b3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.243330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.243330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.243331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.243331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.243331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.243331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.253349 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.253349 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.253349 LLDP, length 82 [|LLDP] 18:35:40.253349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.253349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.253349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ea8 551e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.253349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.253350 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.253350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.253350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.253350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.253350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.253350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.253350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.253350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.263339 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.263339 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.263339 LLDP, length 82 [|LLDP] 18:35:40.263339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.263339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.263339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eaf f63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.263339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.263340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.263340 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.263340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.263340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.263340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.263340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.263340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.263340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.273332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.273332 LLDP, length 82 [|LLDP] 18:35:40.273332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.273332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.273332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.273332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.273333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.273333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.273333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eb7 975e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.273333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.273333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.273333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.273333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.273333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.273333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.283333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.283333 LLDP, length 82 [|LLDP] 18:35:40.283333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.283333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.283334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ebf 387e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.283334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.283334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.283334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.283334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.283334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.283334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.283334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.283334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.283334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.283334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.293330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.293330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.293330 LLDP, length 82 [|LLDP] 18:35:40.293330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.293330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.293330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ec6 d99e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.293330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.293330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.293331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.293331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.293331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.293331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.293331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.293331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.293331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.303331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.303331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.303331 LLDP, length 82 [|LLDP] 18:35:40.303332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.303332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.303332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ece 7abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.303332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.303332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.303332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.303332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.303332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.303332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.303332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.303332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.303332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.313333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.313333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.313333 LLDP, length 82 [|LLDP] 18:35:40.313333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.313334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.313334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ed6 1bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.313334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.313334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.313334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.313334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.313334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.313334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.313334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.313334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.313334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.323330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.323330 LLDP, length 82 [|LLDP] 18:35:40.323330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.323330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.323330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.323330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.323330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.323330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.323331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0edd bcfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.323331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.323331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.323331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.323331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.323331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.323331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.333333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.333333 LLDP, length 82 [|LLDP] 18:35:40.333333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.333333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.333333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ee5 5e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.333334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.333334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.333334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.333334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.333334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.333334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.333334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.333334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.333334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.333334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.343332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.343332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.343333 LLDP, length 82 [|LLDP] 18:35:40.343333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.343333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.343333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eec ff3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.343333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.343333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.343333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.343333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.343333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.343333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.343333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.343333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.343333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.353331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.353331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.353331 LLDP, length 82 [|LLDP] 18:35:40.353331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.353331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.353331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.353331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.353331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.353331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ef4 a05e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.353331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.353332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.353332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.353332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.353332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.353332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.363334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.363334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.363334 LLDP, length 82 [|LLDP] 18:35:40.363334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.363334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.363334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0efc 417e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.363334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.363334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.363334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.363334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.363334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.363335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.363335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.363335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.363335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.373331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.373331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.373331 LLDP, length 82 [|LLDP] 18:35:40.373331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.373331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.373331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f03 e29e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.373331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.373331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.373331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.373331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.373332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.373332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.373332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.373332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.373332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.383331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.383331 LLDP, length 82 [|LLDP] 18:35:40.383331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.383331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.383331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f0b 83be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.383331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.383331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.383331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.383331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.383331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.383331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.383331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.383331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.383331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.383332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.393332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.393332 LLDP, length 82 [|LLDP] 18:35:40.393332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.393332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.393332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f13 24de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.393332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.393332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.393332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.393332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.393332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.393332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.393333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.393333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.393333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.393333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.403329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.403329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.403330 LLDP, length 82 [|LLDP] 18:35:40.403330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.403330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.403330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.403330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.403330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.403330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f1a c5fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.403330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.403330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.403330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.403330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.403330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.403330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.413330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.413330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.413330 LLDP, length 82 [|LLDP] 18:35:40.413330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.413330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.413330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f22 671e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.413330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.413330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.413330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.413330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.413330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.413330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.413331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.413331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.413331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.423331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.423331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.423331 LLDP, length 82 [|LLDP] 18:35:40.423331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.423331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.423331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f2a 083e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.423331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.423331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.423331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.423331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.423332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.423332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.423332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.423332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.423332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.433332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.433332 LLDP, length 82 [|LLDP] 18:35:40.433332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.433332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.433332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.433332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.433332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.433332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.433332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f31 a95e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.433332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.433332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.433332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.433332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.433333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.433333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.443332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.443332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.443332 LLDP, length 82 [|LLDP] 18:35:40.443332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.443332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.443332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f39 4a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.443332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.443332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.443332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.443332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.443332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.443333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.443333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.443333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.443333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.453333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.453333 LLDP, length 82 [|LLDP] 18:35:40.453333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.453333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.453333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f40 eb9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.453333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.453334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.453334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.453334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.453334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.453334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.453334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.453334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.453334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.453334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.463331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.463331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.463331 LLDP, length 82 [|LLDP] 18:35:40.463331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.463331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.463331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f48 8cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.463331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.463331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.463331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.463331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.463331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.463331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.463332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.463332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.463332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.473330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.473330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.473330 LLDP, length 82 [|LLDP] 18:35:40.473330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.473330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.473330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f50 2dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.473330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.473330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.473331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.473331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.473331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.473331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.473331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.473331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.473331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.483331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.483331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.483331 LLDP, length 82 [|LLDP] 18:35:40.483331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.483331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.483332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.483332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.483332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.483332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f57 cefe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.483332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.483332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.483332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.483332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.483332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.483332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.493332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.493332 LLDP, length 82 [|LLDP] 18:35:40.493332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.493332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.493333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f5f 701e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.493333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.493333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.493333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.493333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.493333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.493333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.493333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.493333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.493333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.493333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.503331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.503331 LLDP, length 82 [|LLDP] 18:35:40.503331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.503331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.503331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f67 113e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.503331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.503331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.503331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.503331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.503331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.503331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.503331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.503331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.503331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.503332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.513333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.513333 LLDP, length 82 [|LLDP] 18:35:40.513334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.513334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.513334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.513334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.513334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.513334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.513334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f6e b25e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.513334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.513334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.513334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.513334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.513334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.513334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.523329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.523329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.523329 LLDP, length 82 [|LLDP] 18:35:40.523330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.523330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.523330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f76 537e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.523330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.523330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.523330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.523330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.523330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.523330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.523330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.523330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.523330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.533330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.533330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.533330 LLDP, length 82 [|LLDP] 18:35:40.533330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.533330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.533330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f7d f49e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.533330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.533330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.533330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.533331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.533331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.533331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.533331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.533331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.533331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.543331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.543331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.543331 LLDP, length 82 [|LLDP] 18:35:40.543331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.543331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.543331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f85 95be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.543331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.543331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.543331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.543332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.543332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.543332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.543332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.543332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.543332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.553338 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.553338 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.553338 LLDP, length 82 [|LLDP] 18:35:40.553338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.553338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.553338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f8d 36de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.553338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.553338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.553338 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.553339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.553339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.553339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.553339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.553339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.553339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.563333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.563333 LLDP, length 82 [|LLDP] 18:35:40.563333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.563333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.563333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.563333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.563333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.563334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.563334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f94 d7fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.563334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.563334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.563334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.563334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.563334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.563334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.573332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.573332 LLDP, length 82 [|LLDP] 18:35:40.573332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.573332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.573332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f9c 791e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.573332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.573332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.573332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.573332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.573332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.573332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.573332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.573332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.573332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.573333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.583331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.583331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.583331 LLDP, length 82 [|LLDP] 18:35:40.583331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.583331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.583331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fa4 1a3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.583331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.583331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.583331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.583331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.583331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.583331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.583331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.583332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.583332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.593332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.593332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.593332 LLDP, length 82 [|LLDP] 18:35:40.593332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.593332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.593332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.593332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.593332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.593332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fab bb5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.593332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.593332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.593332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.593332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.593332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.593333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.603332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.603332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.603332 LLDP, length 82 [|LLDP] 18:35:40.603332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.603332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.603332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fb3 5c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.603332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.603332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.603332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.603333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.603333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.603333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.603333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.603333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.603333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.613330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.613330 LLDP, length 82 [|LLDP] 18:35:40.613330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.613330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.613330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fba fd9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.613330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.613330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.613330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.613330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.613331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.613331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.613331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.613331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.613331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.613331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.623330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.623330 LLDP, length 82 [|LLDP] 18:35:40.623330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.623330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.623330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fc2 9ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.623331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.623331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.623331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.623331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.623331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.623331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.623331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.623331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.623331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.623331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.633333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.633334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.633334 LLDP, length 82 [|LLDP] 18:35:40.633334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.633334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.633334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fca 3fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.633334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.633334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.633334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.633334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.633334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.633334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.633334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.633334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.633334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.643332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.643332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.643332 LLDP, length 82 [|LLDP] 18:35:40.643332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.643333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.643333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.643333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.643333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.643333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fd1 e0fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.643333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.643333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.643333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.643333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.643333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.643333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.653331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.653331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.653331 LLDP, length 82 [|LLDP] 18:35:40.653331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.653331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.653331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fd9 821e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.653331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.653331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.653332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.653332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.653332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.653332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.653332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.653332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.653332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.663334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.663335 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.663335 LLDP, length 82 [|LLDP] 18:35:40.663335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.663335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.663335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fe1 233e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.663335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.663335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.663335 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.663335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.663335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.663335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.663335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.663335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.663336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.673332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.673332 LLDP, length 82 [|LLDP] 18:35:40.673332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.673332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.673332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.673332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.673332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.673332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.673332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fe8 c45e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.673333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.673333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.673333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.673333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.673333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.673333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.683333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.683333 LLDP, length 82 [|LLDP] 18:35:40.683333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.683334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.683334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ff0 657e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.683334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.683334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.683334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.683334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.683334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.683334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.683334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.683334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.683334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.683334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.693330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.693330 LLDP, length 82 [|LLDP] 18:35:40.693330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.693330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.693330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ff8 069e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.693331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.693331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.693331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.693331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.693331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.693331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.693331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.693331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.693331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.693331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.703331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.703331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.703331 LLDP, length 82 [|LLDP] 18:35:40.703331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.703331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.703331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fff a7be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.703331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.703331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.703332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.703332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.703332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.703332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.703332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.703332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.703332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.713332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.713332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.713332 LLDP, length 82 [|LLDP] 18:35:40.713332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.713332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.713332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1007 48de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.713332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.713332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.713332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.713332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.713332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.713332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.713332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.713332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.713333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.723333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.723334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.723334 LLDP, length 82 [|LLDP] 18:35:40.723334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.723334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.723334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.723334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.723334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.723334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 100e e9fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.723334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.723334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.723334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.723334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.723334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.723334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.733332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.733332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.733332 LLDP, length 82 [|LLDP] 18:35:40.733332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.733332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.733332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1016 8b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.733332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.733332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.733332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.733332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.733332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.733332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.733333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.733333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.733333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.743331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.743331 LLDP, length 82 [|LLDP] 18:35:40.743331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.743331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.743331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 101e 2c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.743331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.743331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.743331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.743331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.743331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.743332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.743332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.743332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.743332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.743332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.753331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.753332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.753332 LLDP, length 82 [|LLDP] 18:35:40.753332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.753332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.753332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.753332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.753332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.753332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1025 cd5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.753332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.753332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.753332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.753332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.753332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.753332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.763330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.763330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.763330 LLDP, length 82 [|LLDP] 18:35:40.763330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.763330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.763330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 102d 6e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.763330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.763330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.763330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.763330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.763331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.763331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.763331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.763331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.763331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.773327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.773327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.773327 LLDP, length 82 [|LLDP] 18:35:40.773327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.773328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.773328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1035 0f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.773328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.773328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.773328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.773328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.773328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.773328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.773328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.773328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.773328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.783332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.783332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.783332 LLDP, length 82 [|LLDP] 18:35:40.783332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.783332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.783332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 103c b0be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.783332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.783332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.783332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.783332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.783332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.783332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.783333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.783333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.783333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.793333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.793333 LLDP, length 82 [|LLDP] 18:35:40.793333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.793333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.793333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1044 51de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.793333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.793333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.793333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.793333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.793333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.793333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.793333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.793333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.793333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.793334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.803329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.803329 LLDP, length 82 [|LLDP] 18:35:40.803330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.803330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.803330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.803330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.803330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.803330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.803330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 104b f2fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.803330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.803330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.803330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.803330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.803330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.803330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 6586 packets captured 6586 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT aggregation 1] Ran timeout --preserve-status 15 tcpdump -i swp1 -n on agg1 with rc 0 and out 18:35:33.046192 LLDP, length 219: localhost 18:35:36.423370 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.423370 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.423370 LLDP, length 82 [|LLDP] 18:35:36.423370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.423370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.423370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 033e 463e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.423370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.423370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.423370 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.423371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.423371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.423371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.423371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.423371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.423371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.433338 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.433338 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.433338 LLDP, length 82 [|LLDP] 18:35:36.433338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.433338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.433338 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.433338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.433338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.433338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0345 e75e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.433339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.433339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.433339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.433339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.433339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.433339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.443334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.443334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.443334 LLDP, length 82 [|LLDP] 18:35:36.443334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.443334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.443334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 034d 887e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.443334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.443334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.443335 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.443335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.443335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.443335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.443335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.443335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.443335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.453333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.453333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.453333 LLDP, length 82 [|LLDP] 18:35:36.453333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.453333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.453333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0355 299e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.453333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.453333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.453333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.453333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.453333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.453333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.453333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.453334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.453334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.463332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.463332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.463332 LLDP, length 82 [|LLDP] 18:35:36.463332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.463332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.463332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 035c cabe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.463332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.463332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.463332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.463332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.463332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.463332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.463332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.463333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.463333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.473330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.473330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.473330 LLDP, length 82 [|LLDP] 18:35:36.473330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.473330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.473330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0364 6bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.473330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.473330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.473330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.473330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.473331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.473331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.473331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.473331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.473331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.483330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.483331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.483331 LLDP, length 82 [|LLDP] 18:35:36.483331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.483331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.483331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.483331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.483331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.483331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 036c 0cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.483331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.483331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.483331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.483331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.483331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.483331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.493331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.493331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.493331 LLDP, length 82 [|LLDP] 18:35:36.493331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.493331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.493331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0373 ae1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.493331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.493331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.493331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.493331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.493331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.493331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.493331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.493332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.493332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.503331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.503331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.503331 LLDP, length 82 [|LLDP] 18:35:36.503331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.503331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.503331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 037b 4f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.503331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.503331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.503331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.503331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.503331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.503331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.503332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.503332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.503332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.513336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.513336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.513336 LLDP, length 82 [|LLDP] 18:35:36.513336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.513336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.513336 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.513336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.513336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.513336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0382 f05e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.513336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.513336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.513337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.513337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.513337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.513337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.523343 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.523343 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.523344 LLDP, length 82 [|LLDP] 18:35:36.523344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.523344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.523344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 038a 917e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.523344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.523344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.523344 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.523344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.523344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.523344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.523344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.523344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.523344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.533331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.533331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.533331 LLDP, length 82 [|LLDP] 18:35:36.533331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.533331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.533331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0392 329e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.533331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.533331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.533331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.533331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.533331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.533331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.533331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.533332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.533332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.543331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.543331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.543331 LLDP, length 82 [|LLDP] 18:35:36.543331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.543331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.543331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0399 d3be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.543332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.543332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.543332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.543332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.543332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.543332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.543332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.543332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.543332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.553331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.553331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.553331 LLDP, length 82 [|LLDP] 18:35:36.553331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.553331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.553331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03a1 74de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.553331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.553331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.553331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.553331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.553331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.553331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.553331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.553331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.553332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.563329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.563329 LLDP, length 82 [|LLDP] 18:35:36.563330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.563330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.563330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.563330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.563330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.563330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.563330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03a9 15fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.563330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.563330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.563330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.563330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.563330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.563330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.573324 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.573324 LLDP, length 82 [|LLDP] 18:35:36.573324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.573325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.573325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03b0 b71e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.573325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.573325 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.573325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.573325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.573325 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.573325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.573325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.573325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.573325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.573325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.583325 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.583325 LLDP, length 82 [|LLDP] 18:35:36.583326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.583326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.583326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03b8 583e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.583326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.583326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.583326 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.583326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.583326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.583326 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.583326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.583326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.583326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.583326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.593324 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.593324 LLDP, length 82 [|LLDP] 18:35:36.593324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.593324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.593324 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.593324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.593324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.593324 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.593324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03bf f95e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.593325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.593325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.593325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.593325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.593325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.593325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.603327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.603328 LLDP, length 82 [|LLDP] 18:35:36.603328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.603328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.603328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03c7 9a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.603328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.603328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.603328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.603328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.603328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.603328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.603328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.603328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.603328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.603329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.613334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.613334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.613334 LLDP, length 82 [|LLDP] 18:35:36.613334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.613334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.613334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03cf 3b9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.613334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.613334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.613334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.613334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.613334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.613335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.613335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.613335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.613335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.623329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.623329 LLDP, length 82 [|LLDP] 18:35:36.623329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.623329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.623329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03d6 dcbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.623330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.623330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.623330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.623330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.623330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.623330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.623330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.623330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.623330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.623330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.633329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.633329 LLDP, length 82 [|LLDP] 18:35:36.633329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.633329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.633329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03de 7dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.633329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.633329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.633329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.633329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.633329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.633329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.633330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.633330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.633330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.633330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.643333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.643333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.643333 LLDP, length 82 [|LLDP] 18:35:36.643333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.643333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.643333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.643334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.643334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.643334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03e6 1efe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.643334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.643334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.643334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.643334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.643334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.643334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.653328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.653328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.653328 LLDP, length 82 [|LLDP] 18:35:36.653328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.653329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.653329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03ed c01e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.653329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.653329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.653329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.653329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.653329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.653329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.653329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.653329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.653329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.663352 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.663353 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.663353 LLDP, length 82 [|LLDP] 18:35:36.663353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.663353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.663353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03f5 613e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.663353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.663353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.663353 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.663353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.663353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.663353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.663353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.663353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.663354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.673329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.673329 LLDP, length 82 [|LLDP] 18:35:36.673329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.673329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.673329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.673329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.673329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.673329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.673329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 03fd 025e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.673329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.673329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.673329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.673329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.673329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.673330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.683330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.683330 LLDP, length 82 [|LLDP] 18:35:36.683330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.683330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.683330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0404 a37e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.683330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.683331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.683331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.683331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.683331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.683331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.683331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.683331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.683331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.683331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.693329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.693329 LLDP, length 82 [|LLDP] 18:35:36.693329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.693329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.693329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 040c 449e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.693329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.693329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.693329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.693329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.693329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.693329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.693330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.693330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.693330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.693330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.703333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.703333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.703333 LLDP, length 82 [|LLDP] 18:35:36.703333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.703333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.703333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0413 e5be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.703333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.703333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.703333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.703333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.703333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.703334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.703334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.703334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.703334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.713328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.713328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.713328 LLDP, length 82 [|LLDP] 18:35:36.713328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.713329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.713329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 041b 86de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.713329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.713329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.713329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.713329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.713329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.713329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.713329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.713329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.713329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.723331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.723331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.723331 LLDP, length 82 [|LLDP] 18:35:36.723331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.723331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.723331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.723331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.723331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.723331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0423 27fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.723331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.723331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.723331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.723331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.723331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.723332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.733328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.733328 LLDP, length 82 [|LLDP] 18:35:36.733328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.733328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.733328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 042a c91e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.733329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.733329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.733329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.733329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.733329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.733329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.733329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.733329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.733329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.733329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.743331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.743331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.743331 LLDP, length 82 [|LLDP] 18:35:36.743331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.743331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.743331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0432 6a3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.743331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.743331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.743332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.743332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.743332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.743332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.743332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.743332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.743332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.753330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.753330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.753330 LLDP, length 82 [|LLDP] 18:35:36.753330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.753330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.753330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.753330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.753330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.753330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 043a 0b5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.753330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.753330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.753330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.753330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.753331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.753331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.763334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.763334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.763334 LLDP, length 82 [|LLDP] 18:35:36.763334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.763334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.763334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0441 ac7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.763334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.763334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.763334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.763334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.763334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.763334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.763335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.763335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.763335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.773331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.773331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.773331 LLDP, length 82 [|LLDP] 18:35:36.773331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.773331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.773331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0449 4d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.773331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.773331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.773331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.773331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.773331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.773331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.773332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.773332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.773332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.783327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.783327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.783327 LLDP, length 82 [|LLDP] 18:35:36.783327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.783327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.783327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0450 eebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.783328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.783328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.783328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.783328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.783328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.783328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.783328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.783328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.783328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.793330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.793330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.793330 LLDP, length 82 [|LLDP] 18:35:36.793330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.793330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.793330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0458 8fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.793330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.793330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.793330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.793330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.793331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.793331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.793331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.793331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.793331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.803333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.803334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.803334 LLDP, length 82 [|LLDP] 18:35:36.803334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.803334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.803334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.803334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.803334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.803334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0460 30fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.803334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.803334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.803334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.803334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.803334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.803334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.813339 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.813340 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.813340 LLDP, length 82 [|LLDP] 18:35:36.813340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.813340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.813340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0467 d21e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.813340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.813340 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.813340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.813340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.813340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.813340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.813340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.813340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.813340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.823333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.823334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.823334 LLDP, length 82 [|LLDP] 18:35:36.823334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.823334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.823334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 046f 733e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.823334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.823334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.823334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.823334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.823334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.823334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.823334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.823334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.823334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.833330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.833330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.833330 LLDP, length 82 [|LLDP] 18:35:36.833330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.833330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.833330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.833330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.833330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.833330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0477 145e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.833330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.833330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.833331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.833331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.833331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.833331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.843331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.843331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.843331 LLDP, length 82 [|LLDP] 18:35:36.843331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.843331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.843331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 047e b57e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.843331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.843331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.843331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.843331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.843331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.843332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.843332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.843332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.843332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.853329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.853329 LLDP, length 82 [|LLDP] 18:35:36.853329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.853329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.853329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0486 569e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.853329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.853329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.853330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.853330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.853330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.853330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.853330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.853330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.853330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.853330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.863331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.863331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.863331 LLDP, length 82 [|LLDP] 18:35:36.863331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.863331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.863331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 048d f7be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.863331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.863332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.863332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.863332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.863332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.863332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.863332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.863332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.863332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.873329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.873329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.873329 LLDP, length 82 [|LLDP] 18:35:36.873330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.873330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.873330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0495 98de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.873330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.873330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.873330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.873330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.873330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.873330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.873330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.873330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.873330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.883329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.883329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.883329 LLDP, length 82 [|LLDP] 18:35:36.883329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.883330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.883330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.883330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.883330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.883330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 049d 39fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.883330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.883330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.883330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.883330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.883330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.883330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.893350 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.893350 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.893350 LLDP, length 82 [|LLDP] 18:35:36.893350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.893350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.893350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04a4 db1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.893350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.893350 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.893350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.893351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.893351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.893351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.893351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.893351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.893351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.903363 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.903363 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.903363 LLDP, length 82 [|LLDP] 18:35:36.903363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.903363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.903363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04ac 7c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.903363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.903363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.903363 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.903363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.903363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.903364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.903364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.903364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.903364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.913349 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.913349 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.913350 LLDP, length 82 [|LLDP] 18:35:36.913350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.913350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.913350 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.913350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.913350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.913350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04b4 1d5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.913350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.913350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.913350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.913350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.913350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.913350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.923336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.923336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.923336 LLDP, length 82 [|LLDP] 18:35:36.923337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.923337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.923337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04bb be7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.923337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.923337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.923337 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.923337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.923337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.923337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.923337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.923337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.923337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.933336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.933336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.933336 LLDP, length 82 [|LLDP] 18:35:36.933336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.933336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.933336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04c3 5f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.933336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.933336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.933336 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.933336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.933336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.933336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.933336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.933337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.933337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.943330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.943330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.943331 LLDP, length 82 [|LLDP] 18:35:36.943331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.943331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.943331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04cb 00be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.943331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.943331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.943331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.943331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.943331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.943331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.943331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.943331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.943331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.953330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.953331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.953331 LLDP, length 82 [|LLDP] 18:35:36.953331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.953331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.953331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04d2 a1de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.953331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.953331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.953331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.953331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.953331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.953331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.953331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.953331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.953331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.963331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.963331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.963331 LLDP, length 82 [|LLDP] 18:35:36.963331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.963331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.963331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.963332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.963332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.963332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04da 42fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.963332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.963332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.963332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.963332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.963332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.963332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.973330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.973331 LLDP, length 82 [|LLDP] 18:35:36.973331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.973331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.973331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04e1 e41e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.973331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.973331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.973331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.973331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.973331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.973331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.973331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.973331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.973331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.973331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.983332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.983332 LLDP, length 82 [|LLDP] 18:35:36.983333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.983333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.983333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04e9 853e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.983333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.983333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.983333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.983333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.983333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.983333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.983333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.983333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.983333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.983333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:36.993331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.993331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:36.993331 LLDP, length 82 [|LLDP] 18:35:36.993332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:36.993332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:36.993332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:36.993332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:36.993332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.993332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04f1 265e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:36.993332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:36.993332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:36.993332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:36.993332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:36.993332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:36.993332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.003334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.003334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.003334 LLDP, length 82 [|LLDP] 18:35:37.003334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.003335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.003335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 04f8 c77e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.003335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.003335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.003335 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.003335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.003335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.003335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.003335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.003335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.003335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.013334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.013334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.013334 LLDP, length 82 [|LLDP] 18:35:37.013334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.013334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.013334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0500 689e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.013334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.013334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.013334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.013334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.013334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.013334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.013335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.013335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.013335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.023332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.023332 LLDP, length 82 [|LLDP] 18:35:37.023332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.023332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.023332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0508 09be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.023333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.023333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.023333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.023333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.023333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.023333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.023333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.023333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.023333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.023333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.033332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.033332 LLDP, length 82 [|LLDP] 18:35:37.033332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.033332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.033332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 050f aade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.033332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.033332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.033333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.033333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.033333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.033333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.033333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.033333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.033333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.033333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.043329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.043329 LLDP, length 82 [|LLDP] 18:35:37.043329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.043329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.043329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.043329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.043329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.043330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.043330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0517 4bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.043330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.043330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.043330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.043330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.043330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.043330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.053330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.053330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.053330 LLDP, length 82 [|LLDP] 18:35:37.053330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.053330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.053330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 051e ed1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.053330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.053330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.053330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.053330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.053330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.053330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.053330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.053330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.053331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.063330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.063330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.063330 LLDP, length 82 [|LLDP] 18:35:37.063330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.063330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.063330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0526 8e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.063330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.063330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.063330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.063330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.063331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.063331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.063331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.063331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.063331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.073329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.073329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.073330 LLDP, length 82 [|LLDP] 18:35:37.073330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.073330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.073330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.073330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.073330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.073330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 052e 2f5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.073330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.073330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.073330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.073330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.073330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.073330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.083329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.083329 LLDP, length 82 [|LLDP] 18:35:37.083329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.083329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.083329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0535 d07e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.083329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.083329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.083329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.083329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.083330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.083330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.083330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.083330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.083330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.083330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.093327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.093327 LLDP, length 82 [|LLDP] 18:35:37.093327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.093327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.093328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 053d 719e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.093328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.093328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.093328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.093328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.093328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.093328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.093328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.093328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.093328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.093328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.103332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.103332 LLDP, length 82 [|LLDP] 18:35:37.103332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.103332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.103332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0545 12be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.103332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.103333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.103333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.103333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.103333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.103333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.103333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.103333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.103333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.103333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.113331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.113331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.113331 LLDP, length 82 [|LLDP] 18:35:37.113331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.113331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.113331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 054c b3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.113331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.113332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.113332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.113332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.113332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.113332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.113332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.113332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.113332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.123332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.123332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.123332 LLDP, length 82 [|LLDP] 18:35:37.123332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.123332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.123332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.123332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.123332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.123333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0554 54fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.123333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.123333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.123333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.123333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.123333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.123333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.133340 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.133340 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.133340 LLDP, length 82 [|LLDP] 18:35:37.133340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.133340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.133340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 055b f61e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.133340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.133341 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.133341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.133341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.133341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.133341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.133341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.133341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.133341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.143334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.143334 LLDP, length 82 [|LLDP] 18:35:37.143334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.143334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.143334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0563 973e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.143334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.143334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.143334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.143334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.143335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.143335 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.143335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.143335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.143335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.143335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.153334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.153334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.153334 LLDP, length 82 [|LLDP] 18:35:37.153334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.153334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.153334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.153334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.153334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.153334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 056b 385e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.153334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.153334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.153335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.153335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.153335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.153335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.163331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.163331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.163331 LLDP, length 82 [|LLDP] 18:35:37.163332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.163332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.163332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0572 d97e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.163332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.163332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.163332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.163332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.163332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.163332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.163332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.163332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.163332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.173328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.173329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.173329 LLDP, length 82 [|LLDP] 18:35:37.173329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.173329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.173329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 057a 7a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.173329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.173329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.173329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.173329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.173329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.173329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.173329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.173329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.173329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.183331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.183331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.183331 LLDP, length 82 [|LLDP] 18:35:37.183331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.183331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.183331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0582 1bbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.183331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.183332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.183332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.183332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.183332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.183332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.183332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.183332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.183332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.193329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.193329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.193329 LLDP, length 82 [|LLDP] 18:35:37.193329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.193329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.193329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0589 bcde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.193329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.193329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.193329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.193329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.193329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.193329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.193329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.193330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.193330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.203338 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.203338 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.203338 LLDP, length 82 [|LLDP] 18:35:37.203338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.203338 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.203338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.203338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.203338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.203338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0591 5dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.203338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.203338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.203339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.203339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.203339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.203339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.213335 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.213335 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.213335 LLDP, length 82 [|LLDP] 18:35:37.213335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.213335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.213335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0598 ff1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.213335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.213336 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.213336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.213336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.213336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.213336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.213336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.213336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.213336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.223330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.223330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.223330 LLDP, length 82 [|LLDP] 18:35:37.223330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.223330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.223330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05a0 a03e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.223330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.223330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.223330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.223330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.223331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.223331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.223331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.223331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.223331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.233329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.233329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.233329 LLDP, length 82 [|LLDP] 18:35:37.233329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.233329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.233329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.233329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.233329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.233329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05a8 415e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.233329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.233329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.233329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.233330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.233330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.233330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.243330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.243330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.243330 LLDP, length 82 [|LLDP] 18:35:37.243331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.243331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.243331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05af e27e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.243331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.243331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.243331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.243331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.243331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.243331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.243331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.243331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.243331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.253329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.253329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.253329 LLDP, length 82 [|LLDP] 18:35:37.253329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.253329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.253330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05b7 839e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.253330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.253330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.253330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.253330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.253330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.253330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.253330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.253330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.253330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.263341 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.263341 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.263341 LLDP, length 82 [|LLDP] 18:35:37.263341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.263341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.263341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05bf 24be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.263341 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.263341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.263341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.263341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.263341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.263342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.263342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.263342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.263342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.273331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.273331 LLDP, length 82 [|LLDP] 18:35:37.273331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.273331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.273331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05c6 c5de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.273331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.273331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.273331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.273332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.273332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.273332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.273332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.273332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.273332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.273332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.283331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.283331 LLDP, length 82 [|LLDP] 18:35:37.283332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.283332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.283332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.283332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.283332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.283332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.283332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05ce 66fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.283332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.283332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.283332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.283332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.283332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.283332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.293329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.293330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.293330 LLDP, length 82 [|LLDP] 18:35:37.293330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.293330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.293330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05d6 081e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.293330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.293330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.293330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.293330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.293330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.293330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.293330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.293330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.293330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.303329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.303329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.303329 LLDP, length 82 [|LLDP] 18:35:37.303329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.303329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.303329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05dd a93e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.303329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.303329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.303329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.303329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.303329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.303329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.303329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.303329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.303330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.313331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.313331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.313331 LLDP, length 82 [|LLDP] 18:35:37.313331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.313331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.313331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.313331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.313332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.313332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05e5 4a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.313332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.313332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.313332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.313332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.313332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.313332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.323332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.323332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.323332 LLDP, length 82 [|LLDP] 18:35:37.323332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.323332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.323332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05ec eb7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.323332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.323333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.323333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.323333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.323333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.323333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.323333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.323333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.323333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.333331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.333331 LLDP, length 82 [|LLDP] 18:35:37.333331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.333331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.333331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05f4 8c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.333331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.333331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.333332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.333332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.333332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.333332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.333332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.333332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.333332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.333332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.343329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.343329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.343330 LLDP, length 82 [|LLDP] 18:35:37.343330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.343330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.343330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 05fc 2dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.343330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.343330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.343330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.343330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.343330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.343330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.343330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.343330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.343330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.353329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.353329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.353329 LLDP, length 82 [|LLDP] 18:35:37.353329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.353329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.353329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0603 cede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.353329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.353330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.353330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.353330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.353330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.353330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.353330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.353330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.353330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.363330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.363330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.363330 LLDP, length 82 [|LLDP] 18:35:37.363330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.363331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.363331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.363331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.363331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.363331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 060b 6ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.363331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.363331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.363331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.363331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.363331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.363331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.373330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.373330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.373330 LLDP, length 82 [|LLDP] 18:35:37.373330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.373330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.373330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0613 111e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.373330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.373330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.373331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.373331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.373331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.373331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.373331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.373331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.373331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.383330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.383330 LLDP, length 82 [|LLDP] 18:35:37.383330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.383330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.383330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 061a b23e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.383330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.383330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.383330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.383330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.383330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.383330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.383330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.383330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.383331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.383331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.393330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.393330 LLDP, length 82 [|LLDP] 18:35:37.393330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.393330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.393330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.393330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.393330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.393330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.393330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0622 535e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.393331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.393331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.393331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.393331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.393331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.393331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.403326 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.403326 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.403326 LLDP, length 82 [|LLDP] 18:35:37.403326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.403326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.403326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0629 f47e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.403326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.403327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.403327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.403327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.403327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.403327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.403327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.403327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.403327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.413335 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.413335 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.413335 LLDP, length 82 [|LLDP] 18:35:37.413335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.413335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.413335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0631 959e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.413335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.413335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.413336 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.413336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.413336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.413336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.413336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.413336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.413336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.423341 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.423341 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.423341 LLDP, length 82 [|LLDP] 18:35:37.423341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.423341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.423341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0639 36be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.423341 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.423341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.423341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.423341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.423341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.423342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.423342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.423342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.423342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.433335 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.433335 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.433335 LLDP, length 82 [|LLDP] 18:35:37.433335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.433335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.433335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0640 d7de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.433335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.433335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.433335 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.433335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.433335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.433335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.433335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.433336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.433336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.443337 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.443337 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.443338 LLDP, length 82 [|LLDP] 18:35:37.443338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.443338 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.443338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.443338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.443338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.443338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0648 78fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.443338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.443338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.443338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.443338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.443338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.443338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.453334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.453334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.453334 LLDP, length 82 [|LLDP] 18:35:37.453334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.453334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.453334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0650 1a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.453334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.453335 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.453335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.453335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.453335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.453335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.453335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.453335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.453335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.463331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.463331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.463331 LLDP, length 82 [|LLDP] 18:35:37.463331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.463331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.463331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0657 bb3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.463331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.463331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.463331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.463331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.463332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.463332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.463332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.463332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.463332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.473330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.473330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.473330 LLDP, length 82 [|LLDP] 18:35:37.473330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.473331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.473331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.473331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.473331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.473331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 065f 5c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.473331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.473331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.473331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.473331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.473331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.473331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.483329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.483329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.483329 LLDP, length 82 [|LLDP] 18:35:37.483329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.483329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.483329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0666 fd7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.483329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.483329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.483329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.483329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.483329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.483329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.483329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.483330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.483330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.493329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.493329 LLDP, length 82 [|LLDP] 18:35:37.493329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.493330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.493330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 066e 9e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.493330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.493330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.493330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.493330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.493330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.493330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.493330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.493330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.493330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.493330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.503332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.503332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.503332 LLDP, length 82 [|LLDP] 18:35:37.503332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.503332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.503332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0676 3fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.503332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.503332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.503332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.503332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.503332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.503332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.503333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.503333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.503333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.513333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.513333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.513333 LLDP, length 82 [|LLDP] 18:35:37.513333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.513333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.513333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 067d e0de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.513333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.513333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.513333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.513333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.513333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.513333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.513334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.513334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.513334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.523336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.523336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.523336 LLDP, length 82 [|LLDP] 18:35:37.523336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.523336 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.523336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.523336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.523336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.523336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0685 81fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.523336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.523336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.523336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.523336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.523337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.523337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.533331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.533331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.533331 LLDP, length 82 [|LLDP] 18:35:37.533331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.533331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.533331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 068d 231e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.533331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.533331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.533331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.533332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.533332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.533332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.533332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.533332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.533332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.543331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.543331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.543331 LLDP, length 82 [|LLDP] 18:35:37.543331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.543331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.543331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0694 c43e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.543331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.543331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.543331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.543332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.543332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.543332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.543332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.543332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.543332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.553330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.553330 LLDP, length 82 [|LLDP] 18:35:37.553330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.553330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.553330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.553330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.553330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.553330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.553331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 069c 655e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.553331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.553331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.553331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.553331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.553331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.553331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.563330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.563330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.563330 LLDP, length 82 [|LLDP] 18:35:37.563330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.563330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.563330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06a4 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.563330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.563330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.563330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.563330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.563330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.563330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.563330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.563331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.563331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.573333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.573333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.573333 LLDP, length 82 [|LLDP] 18:35:37.573334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.573334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.573334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06ab a79e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.573334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.573334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.573334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.573334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.573334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.573334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.573334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.573334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.573334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.583330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.583330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.583330 LLDP, length 82 [|LLDP] 18:35:37.583330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.583330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.583330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06b3 48be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.583330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.583330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.583330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.583330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.583331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.583331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.583331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.583331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.583331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.593329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.593329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.593329 LLDP, length 82 [|LLDP] 18:35:37.593329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.593329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.593329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06ba e9de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.593330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.593330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.593330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.593330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.593330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.593330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.593330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.593330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.593330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.603336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.603336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.603336 LLDP, length 82 [|LLDP] 18:35:37.603336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.603336 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.603336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.603337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.603337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.603337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06c2 8afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.603337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.603337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.603337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.603337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.603337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.603337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.613333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.613333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.613333 LLDP, length 82 [|LLDP] 18:35:37.613333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.613333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.613333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06ca 2c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.613333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.613333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.613333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.613333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.613333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.613333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.613333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.613333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.613334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.623333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.623333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.623333 LLDP, length 82 [|LLDP] 18:35:37.623333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.623333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.623333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06d1 cd3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.623333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.623333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.623334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.623334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.623334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.623334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.623334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.623334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.623334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.633330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.633330 LLDP, length 82 [|LLDP] 18:35:37.633330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.633330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.633331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.633331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.633331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.633331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.633331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06d9 6e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.633331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.633331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.633331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.633331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.633331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.633331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.643332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.643332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.643332 LLDP, length 82 [|LLDP] 18:35:37.643332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.643333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.643333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06e1 0f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.643333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.643333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.643333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.643333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.643333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.643333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.643333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.643333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.643333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.653329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.653329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.653329 LLDP, length 82 [|LLDP] 18:35:37.653329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.653329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.653329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06e8 b09e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.653329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.653329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.653329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.653329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.653329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.653330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.653330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.653330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.653330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.663338 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.663338 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.663339 LLDP, length 82 [|LLDP] 18:35:37.663339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.663339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.663339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06f0 51be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.663339 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.663339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.663339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.663339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.663339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.663339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.663339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.663339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.663339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.673375 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.673375 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.673375 LLDP, length 82 [|LLDP] 18:35:37.673375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.673375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.673375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06f7 f2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.673375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.673375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.673375 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.673375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.673375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.673376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.673376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.673376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.673376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.683337 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.683337 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.683337 LLDP, length 82 [|LLDP] 18:35:37.683337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.683337 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.683337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.683337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.683337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.683337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 06ff 93fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.683337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.683337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.683338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.683338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.683338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.683338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.693336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.693336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.693336 LLDP, length 82 [|LLDP] 18:35:37.693336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.693336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.693336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0707 351e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.693337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.693337 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.693337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.693337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.693337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.693337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.693337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.693337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.693337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.703330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.703330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.703330 LLDP, length 82 [|LLDP] 18:35:37.703331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.703331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.703331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 070e d63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.703331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.703331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.703331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.703331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.703331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.703331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.703331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.703331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.703331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.713331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.713331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.713331 LLDP, length 82 [|LLDP] 18:35:37.713331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.713331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.713331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.713331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.713331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.713331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0716 775e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.713332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.713332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.713332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.713332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.713332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.713332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.723336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.723336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.723336 LLDP, length 82 [|LLDP] 18:35:37.723336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.723337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.723337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 071e 187e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.723337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.723337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.723337 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.723337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.723337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.723337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.723337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.723337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.723337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.733327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.733327 LLDP, length 82 [|LLDP] 18:35:37.733327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.733327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.733328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0725 b99e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.733328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.733328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.733328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.733328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.733328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.733328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.733328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.733328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.733328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.733328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.743335 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.743335 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.743335 LLDP, length 82 [|LLDP] 18:35:37.743335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.743335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.743335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 072d 5abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.743336 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.743336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.743336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.743336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.743336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.743336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.743336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.743336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.743336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.753329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.753329 LLDP, length 82 [|LLDP] 18:35:37.753329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.753329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.753329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0734 fbde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.753329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.753329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.753330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.753330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.753330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.753330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.753330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.753330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.753330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.753330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.763329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.763329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.763329 LLDP, length 82 [|LLDP] 18:35:37.763329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.763329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.763330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.763330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.763330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.763330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 073c 9cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.763330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.763330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.763330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.763330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.763330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.763330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.773330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.773330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.773330 LLDP, length 82 [|LLDP] 18:35:37.773330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.773330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.773330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0744 3e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.773330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.773330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.773331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.773331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.773331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.773331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.773331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.773331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.773331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.783327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.783328 LLDP, length 82 [|LLDP] 18:35:37.783328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.783328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.783328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 074b df3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.783328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.783328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.783328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.783328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.783328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.783328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.783328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.783328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.783328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.783328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.793327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.793327 LLDP, length 82 [|LLDP] 18:35:37.793327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.793327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.793327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.793327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.793328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.793328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.793328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0753 805e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.793328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.793328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.793328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.793328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.793328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.793328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.803328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.803328 LLDP, length 82 [|LLDP] 18:35:37.803328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.803328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.803328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 075b 217e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.803328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.803328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.803328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.803328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.803329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.803329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.803329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.803329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.803329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.803329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.813328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.813328 LLDP, length 82 [|LLDP] 18:35:37.813328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.813328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.813328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0762 c29e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.813328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.813328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.813328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.813328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.813328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.813328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.813329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.813329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.813329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.813329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.823330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.823331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.823331 LLDP, length 82 [|LLDP] 18:35:37.823331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.823331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.823331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 076a 63be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.823331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.823331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.823331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.823331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.823331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.823331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.823331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.823331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.823331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.833328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.833328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.833328 LLDP, length 82 [|LLDP] 18:35:37.833328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.833328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.833328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0772 04de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.833328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.833328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.833328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.833329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.833329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.833329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.833329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.833329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.833329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.843329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.843329 LLDP, length 82 [|LLDP] 18:35:37.843329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.843329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.843329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.843329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.843329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.843329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.843329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0779 a5fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.843329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.843329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.843329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.843329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.843330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.843330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.853327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.853327 LLDP, length 82 [|LLDP] 18:35:37.853327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.853327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.853328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0781 471e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.853328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.853328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.853328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.853328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.853328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.853328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.853328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.853328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.853328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.853328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.863327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.863327 LLDP, length 82 [|LLDP] 18:35:37.863327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.863327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.863327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0788 e83e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.863327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.863328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.863328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.863328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.863328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.863328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.863328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.863328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.863328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.863328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.873325 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.873325 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.873325 LLDP, length 82 [|LLDP] 18:35:37.873325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.873326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.873326 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.873326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.873326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.873326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0790 895e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.873326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.873326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.873326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.873326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.873326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.873326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.883329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.883329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.883329 LLDP, length 82 [|LLDP] 18:35:37.883329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.883329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.883329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0798 2a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.883329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.883329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.883329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.883329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.883329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.883329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.883329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.883330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.883330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.893324 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.893324 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.893324 LLDP, length 82 [|LLDP] 18:35:37.893324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.893324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.893324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 079f cb9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.893324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.893324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.893325 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.893325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.893325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.893325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.893325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.893325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.893325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.903328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.903329 LLDP, length 82 [|LLDP] 18:35:37.903329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.903329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.903329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07a7 6cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.903329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.903329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.903329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.903329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.903329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.903329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.903329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.903329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.903329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.903329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.913327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.913327 LLDP, length 82 [|LLDP] 18:35:37.913328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.913328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.913328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07af 0dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.913328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.913328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.913328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.913328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.913328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.913328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.913328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.913328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.913328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.913328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.923330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.923330 LLDP, length 82 [|LLDP] 18:35:37.923330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.923331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.923331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.923331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.923331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.923331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.923331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07b6 aefe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.923331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.923331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.923331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.923331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.923331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.923331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.933327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.933327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.933327 LLDP, length 82 [|LLDP] 18:35:37.933327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.933327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.933327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07be 501e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.933327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.933328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.933328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.933328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.933328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.933328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.933328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.933328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.933328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.943328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.943328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.943329 LLDP, length 82 [|LLDP] 18:35:37.943329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.943329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.943329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07c5 f13e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.943329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.943329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.943329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.943329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.943329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.943329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.943329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.943329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.943329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.953329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.953329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.953329 LLDP, length 82 [|LLDP] 18:35:37.953329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.953329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.953329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.953329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.953329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.953329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07cd 925e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.953329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.953329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.953329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.953329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.953330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.953330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.963331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.963331 LLDP, length 82 [|LLDP] 18:35:37.963331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.963331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.963331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07d5 337e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.963331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.963331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.963331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.963331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.963331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.963331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.963331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.963331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.963332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.963332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.973329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.973329 LLDP, length 82 [|LLDP] 18:35:37.973329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.973329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.973329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07dc d49e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.973329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.973329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.973329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.973329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.973329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.973330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.973330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.973330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.973330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.973330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.983327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.983327 LLDP, length 82 [|LLDP] 18:35:37.983327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.983328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.983328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07e4 75be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.983328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.983328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.983328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.983328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.983328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.983328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.983328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.983328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.983328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.983328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:37.993329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.993329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:37.993330 LLDP, length 82 [|LLDP] 18:35:37.993330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:37.993330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:37.993330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07ec 16de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:37.993330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:37.993330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:37.993330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:37.993330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:37.993330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.993330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:37.993330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:37.993330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:37.993330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.003332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.003332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.003332 LLDP, length 82 [|LLDP] 18:35:38.003332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.003332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.003332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.003332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.003332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.003332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07f3 b7fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.003332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.003332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.003332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.003332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.003333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.003333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.013331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.013331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.013331 LLDP, length 82 [|LLDP] 18:35:38.013331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.013331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.013331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 07fb 591e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.013331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.013331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.013331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.013331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.013332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.013332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.013332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.013332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.013332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.023329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.023329 LLDP, length 82 [|LLDP] 18:35:38.023329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.023329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.023329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0802 fa3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.023329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.023329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.023329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.023329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.023329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.023329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.023329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.023329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.023330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.023330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.033327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.033327 LLDP, length 82 [|LLDP] 18:35:38.033327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.033327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.033327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.033327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.033327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.033327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.033327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 080a 9b5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.033327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.033327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.033327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.033327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.033327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.033328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.043327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.043327 LLDP, length 82 [|LLDP] 18:35:38.043327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.043327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.043327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0812 3c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.043327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.043327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.043327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.043327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.043327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.043327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.043327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.043327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.043327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.043328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.053325 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.053325 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.053325 LLDP, length 82 [|LLDP] 18:35:38.053325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.053325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.053326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0819 dd9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.053326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.053326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.053326 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.053326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.053326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.053326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.053326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.053326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.053326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.063328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.063328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.063328 LLDP, length 82 [|LLDP] 18:35:38.063328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.063329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.063329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0821 7ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.063329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.063329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.063329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.063329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.063329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.063329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.063329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.063329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.063329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.073328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.073328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.073328 LLDP, length 82 [|LLDP] 18:35:38.073328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.073328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.073328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0829 1fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.073328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.073328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.073329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.073329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.073329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.073329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.073329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.073329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.073329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.083333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.083333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.083333 LLDP, length 82 [|LLDP] 18:35:38.083333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.083333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.083333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.083333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.083333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.083333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0830 c0fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.083333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.083334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.083334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.083334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.083334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.083334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.093325 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.093325 LLDP, length 82 [|LLDP] 18:35:38.093325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.093325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.093325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0838 621e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.093326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.093326 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.093326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.093326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.093326 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.093326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.093326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.093326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.093326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.093326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.103327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.103327 LLDP, length 82 [|LLDP] 18:35:38.103327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.103327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.103327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0840 033e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.103328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.103328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.103328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.103328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.103328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.103328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.103328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.103328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.103328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.103328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.113328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.113328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.113328 LLDP, length 82 [|LLDP] 18:35:38.113328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.113328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.113328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.113328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.113328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.113329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0847 a45e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.113329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.113329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.113329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.113329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.113329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.113329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.123329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.123330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.123330 LLDP, length 82 [|LLDP] 18:35:38.123330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.123330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.123330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 084f 457e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.123330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.123330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.123330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.123330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.123330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.123330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.123330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.123330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.123330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.133335 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.133335 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.133335 LLDP, length 82 [|LLDP] 18:35:38.133335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.133336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.133336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0856 e69e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.133336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.133336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.133336 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.133336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.133336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.133336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.133336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.133336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.133336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.143327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.143327 LLDP, length 82 [|LLDP] 18:35:38.143327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.143327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.143327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 085e 87be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.143327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.143327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.143327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.143327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.143327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.143327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.143327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.143328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.143328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.143328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.153325 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.153325 LLDP, length 82 [|LLDP] 18:35:38.153325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.153325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.153325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0866 28de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.153325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.153325 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.153325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.153325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.153325 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.153325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.153326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.153326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.153326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.153326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.163326 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.163326 LLDP, length 82 [|LLDP] 18:35:38.163326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.163326 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.163326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.163326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.163326 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.163326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.163326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 086d c9fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.163326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.163327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.163327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.163327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.163327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.163327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.173327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.173327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.173327 LLDP, length 82 [|LLDP] 18:35:38.173327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.173327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.173327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0875 6b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.173327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.173327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.173327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.173328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.173328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.173328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.173328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.173328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.173328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.183328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.183328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.183328 LLDP, length 82 [|LLDP] 18:35:38.183328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.183328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.183328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 087d 0c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.183329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.183329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.183329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.183329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.183329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.183329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.183329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.183329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.183329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.193326 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.193326 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.193327 LLDP, length 82 [|LLDP] 18:35:38.193327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.193327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.193327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.193327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.193327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.193327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0884 ad5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.193327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.193327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.193327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.193327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.193327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.193327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.203327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.203327 LLDP, length 82 [|LLDP] 18:35:38.203327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.203327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.203327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 088c 4e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.203327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.203327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.203327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.203327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.203327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.203327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.203327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.203327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.203327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.203328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.213328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.213328 LLDP, length 82 [|LLDP] 18:35:38.213328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.213328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.213328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0893 ef9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.213328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.213328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.213328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.213328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.213329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.213329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.213329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.213329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.213329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.213329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.223329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.223329 LLDP, length 82 [|LLDP] 18:35:38.223329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.223329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.223329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 089b 90be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.223330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.223330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.223330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.223330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.223330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.223330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.223330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.223330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.223330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.223330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.233326 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.233326 LLDP, length 82 [|LLDP] 18:35:38.233326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.233326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.233326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08a3 31de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.233327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.233327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.233327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.233327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.233327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.233327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.233327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.233327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.233327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.233327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.243331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.243332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.243332 LLDP, length 82 [|LLDP] 18:35:38.243332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.243332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.243332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.243332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.243332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.243332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08aa d2fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.243332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.243332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.243332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.243332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.243332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.243332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.253329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.253329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.253329 LLDP, length 82 [|LLDP] 18:35:38.253329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.253329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.253329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08b2 741e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.253329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.253329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.253330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.253330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.253330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.253330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.253330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.253330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.253330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.263328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.263328 LLDP, length 82 [|LLDP] 18:35:38.263328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.263328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.263328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08ba 153e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.263328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.263328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.263328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.263329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.263329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.263329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.263329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.263329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.263329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.263329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.273327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.273327 LLDP, length 82 [|LLDP] 18:35:38.273327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.273327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.273327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.273327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.273327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.273327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.273328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08c1 b65e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.273328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.273328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.273328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.273328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.273328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.273328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.283332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.283332 LLDP, length 82 [|LLDP] 18:35:38.283332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.283332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.283332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08c9 577e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.283332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.283332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.283332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.283332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.283332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.283332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.283333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.283333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.283333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.283333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.293328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.293328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.293328 LLDP, length 82 [|LLDP] 18:35:38.293328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.293328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.293328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08d0 f89e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.293328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.293328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.293328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.293328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.293328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.293329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.293329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.293329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.293329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.303325 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.303325 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.303325 LLDP, length 82 [|LLDP] 18:35:38.303325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.303325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.303325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08d8 99be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.303325 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.303325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.303326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.303326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.303326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.303326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.303326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.303326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.303326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.313326 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.313327 LLDP, length 82 [|LLDP] 18:35:38.313327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.313327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.313327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08e0 3ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.313327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.313327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.313327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.313327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.313327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.313327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.313327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.313327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.313327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.313327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.323329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.323329 LLDP, length 82 [|LLDP] 18:35:38.323329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.323329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.323329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.323329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.323329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.323329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.323329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08e7 dbfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.323329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.323329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.323329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.323329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.323329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.323329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.333340 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.333340 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.333340 LLDP, length 82 [|LLDP] 18:35:38.333340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.333340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.333340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08ef 7d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.333340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.333340 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.333340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.333341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.333341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.333341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.333341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.333341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.333341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.343339 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.343339 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.343340 LLDP, length 82 [|LLDP] 18:35:38.343340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.343340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.343340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08f7 1e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.343340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.343340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.343340 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.343340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.343340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.343340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.343340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.343340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.343340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.353336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.353336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.353336 LLDP, length 82 [|LLDP] 18:35:38.353336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.353336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.353336 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.353336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.353336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.353336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 08fe bf5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.353336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.353337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.353337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.353337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.353337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.353337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.363340 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.363340 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.363341 LLDP, length 82 [|LLDP] 18:35:38.363341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.363341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.363341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0906 607e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.363341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.363341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.363341 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.363341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.363341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.363341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.363341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.363341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.363341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.373332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.373332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.373332 LLDP, length 82 [|LLDP] 18:35:38.373332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.373332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.373332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 090e 019e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.373332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.373332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.373332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.373332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.373332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.373332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.373332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.373332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.373332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.383330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.383330 LLDP, length 82 [|LLDP] 18:35:38.383330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.383330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.383330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0915 a2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.383330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.383330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.383330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.383330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.383331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.383331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.383331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.383331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.383331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.383331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.393330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.393330 LLDP, length 82 [|LLDP] 18:35:38.393330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.393330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.393330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 091d 43de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.393330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.393330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.393330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.393330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.393330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.393330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.393330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.393330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.393331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.393331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.403326 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.403326 LLDP, length 82 [|LLDP] 18:35:38.403326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.403326 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.403327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.403327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.403327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.403327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.403327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0924 e4fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.403327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.403327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.403327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.403327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.403327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.403327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.413326 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.413326 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.413326 LLDP, length 82 [|LLDP] 18:35:38.413326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.413326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.413326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 092c 861e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.413327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.413327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.413327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.413327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.413327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.413327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.413327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.413327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.413327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.423328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.423328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.423328 LLDP, length 82 [|LLDP] 18:35:38.423328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.423328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.423328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0934 273e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.423328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.423328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.423328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.423328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.423328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.423329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.423329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.423329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.423329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.433329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.433329 LLDP, length 82 [|LLDP] 18:35:38.433329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.433329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.433329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.433329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.433329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.433329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.433329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 093b c85e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.433329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.433329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.433330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.433330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.433330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.433330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.443327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.443328 LLDP, length 82 [|LLDP] 18:35:38.443328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.443328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.443328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0943 697e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.443328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.443328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.443328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.443328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.443328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.443328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.443328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.443328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.443328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.443328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.453327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.453327 LLDP, length 82 [|LLDP] 18:35:38.453328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.453328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.453328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 094b 0a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.453328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.453328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.453328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.453328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.453328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.453328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.453328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.453328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.453328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.453328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.463330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.463330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.463330 LLDP, length 82 [|LLDP] 18:35:38.463330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.463330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.463330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0952 abbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.463330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.463330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.463330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.463331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.463331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.463331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.463331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.463331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.463331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.473330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.473330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.473330 LLDP, length 82 [|LLDP] 18:35:38.473330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.473331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.473331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 095a 4cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.473331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.473331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.473331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.473331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.473331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.473331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.473331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.473331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.473331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.483328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.483328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.483328 LLDP, length 82 [|LLDP] 18:35:38.483328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.483328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.483328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.483328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.483328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.483328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0961 edfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.483328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.483329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.483329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.483329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.483329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.483329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.493329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.493329 LLDP, length 82 [|LLDP] 18:35:38.493329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.493329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.493329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0969 8f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.493329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.493329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.493329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.493329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.493329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.493329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.493329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.493329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.493329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.493330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.503327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.503327 LLDP, length 82 [|LLDP] 18:35:38.503327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.503328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.503328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0971 303e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.503328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.503328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.503328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.503328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.503328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.503328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.503328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.503328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.503328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.503328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.513327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.513327 LLDP, length 82 [|LLDP] 18:35:38.513327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.513327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.513327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.513327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.513327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.513327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.513327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0978 d15e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.513327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.513327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.513328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.513328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.513328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.513328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.523330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.523331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.523331 LLDP, length 82 [|LLDP] 18:35:38.523331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.523331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.523331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0980 727e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.523331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.523331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.523331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.523331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.523331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.523331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.523331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.523331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.523331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.533351 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.533351 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.533351 LLDP, length 82 [|LLDP] 18:35:38.533351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.533351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.533352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0988 139e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.533352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.533352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.533352 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.533352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.533352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.533352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.533352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.533352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.533352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.543341 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.543341 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.543341 LLDP, length 82 [|LLDP] 18:35:38.543341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.543341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.543341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 098f b4be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.543341 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.543341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.543341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.543341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.543342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.543342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.543342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.543342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.543342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.553333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.553333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.553333 LLDP, length 82 [|LLDP] 18:35:38.553334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.553334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.553334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0997 55de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.553334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.553334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.553334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.553334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.553334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.553334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.553334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.553334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.553334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.563331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.563331 LLDP, length 82 [|LLDP] 18:35:38.563331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.563331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.563331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.563332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.563332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.563332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.563332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 099e f6fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.563332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.563332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.563332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.563332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.563332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.563332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.573330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.573330 LLDP, length 82 [|LLDP] 18:35:38.573330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.573330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.573330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09a6 981e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.573330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.573331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.573331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.573331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.573331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.573331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.573331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.573331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.573331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.573331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.583333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.583333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.583333 LLDP, length 82 [|LLDP] 18:35:38.583333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.583333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.583333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09ae 393e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.583333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.583333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.583333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.583333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.583333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.583333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.583333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.583334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.583334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.593328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.593328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.593328 LLDP, length 82 [|LLDP] 18:35:38.593328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.593328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.593328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.593328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.593328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.593329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09b5 da5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.593329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.593329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.593329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.593329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.593329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.593329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.603329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.603329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.603329 LLDP, length 82 [|LLDP] 18:35:38.603329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.603330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.603330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09bd 7b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.603330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.603330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.603330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.603330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.603330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.603330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.603330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.603330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.603330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.613328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.613328 LLDP, length 82 [|LLDP] 18:35:38.613328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.613328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.613328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09c5 1c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.613328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.613328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.613328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.613328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.613328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.613328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.613328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.613328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.613329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.613329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.623330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.623330 LLDP, length 82 [|LLDP] 18:35:38.623330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.623330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.623330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09cc bdbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.623330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.623330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.623330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.623330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.623330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.623330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.623331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.623331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.623331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.623331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.633330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.633330 LLDP, length 82 [|LLDP] 18:35:38.633330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.633330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.633330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09d4 5ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.633331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.633331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.633331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.633331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.633331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.633331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.633331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.633331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.633331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.633331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.643336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.643336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.643336 LLDP, length 82 [|LLDP] 18:35:38.643336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.643336 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.643336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.643337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.643337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.643337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09db fffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.643337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.643337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.643337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.643337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.643337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.643337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.653328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.653328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.653328 LLDP, length 82 [|LLDP] 18:35:38.653328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.653328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.653329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09e3 a11e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.653329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.653329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.653329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.653329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.653329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.653329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.653329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.653329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.653329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.663330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.663330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.663330 LLDP, length 82 [|LLDP] 18:35:38.663330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.663331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.663331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09eb 423e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.663331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.663331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.663331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.663331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.663331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.663331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.663331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.663331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.663331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.673330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.673330 LLDP, length 82 [|LLDP] 18:35:38.673330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.673330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.673330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.673330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.673330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.673330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.673330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09f2 e35e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.673330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.673330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.673331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.673331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.673331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.673331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.683332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.683332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.683332 LLDP, length 82 [|LLDP] 18:35:38.683332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.683332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.683332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 09fa 847e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.683332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.683332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.683333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.683333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.683333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.683333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.683333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.683333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.683333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.693329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.693329 LLDP, length 82 [|LLDP] 18:35:38.693329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.693329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.693330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a02 259e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.693330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.693330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.693330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.693330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.693330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.693330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.693330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.693330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.693330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.693330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.703329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.703329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.703329 LLDP, length 82 [|LLDP] 18:35:38.703329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.703329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.703329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a09 c6be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.703329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.703329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.703330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.703330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.703330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.703330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.703330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.703330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.703330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.713328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.713328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.713328 LLDP, length 82 [|LLDP] 18:35:38.713328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.713328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.713328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a11 67de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.713328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.713328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.713328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.713328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.713328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.713328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.713329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.713329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.713329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.723329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.723329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.723329 LLDP, length 82 [|LLDP] 18:35:38.723329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.723329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.723329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.723329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.723329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.723329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a19 08fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.723329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.723329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.723329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.723329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.723330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.723330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.733329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.733329 LLDP, length 82 [|LLDP] 18:35:38.733329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.733329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.733329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a20 aa1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.733329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.733329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.733329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.733329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.733329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.733330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.733330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.733330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.733330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.733330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.743329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.743329 LLDP, length 82 [|LLDP] 18:35:38.743329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.743329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.743329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a28 4b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.743329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.743329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.743329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.743330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.743330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.743330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.743330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.743330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.743330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.743330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.753329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.753329 LLDP, length 82 [|LLDP] 18:35:38.753329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.753329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.753329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.753329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.753329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.753329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.753329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a2f ec5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.753329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.753329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.753329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.753329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.753329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.753330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.763330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.763330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.763330 LLDP, length 82 [|LLDP] 18:35:38.763330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.763330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.763331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a37 8d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.763331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.763331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.763331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.763331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.763331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.763331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.763331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.763331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.763331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.773333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.773333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.773333 LLDP, length 82 [|LLDP] 18:35:38.773333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.773333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.773334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a3f 2e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.773334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.773334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.773334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.773334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.773334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.773334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.773334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.773334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.773334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.783329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.783329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.783329 LLDP, length 82 [|LLDP] 18:35:38.783329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.783329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.783329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a46 cfbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.783329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.783329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.783330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.783330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.783330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.783330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.783330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.783330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.783330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.793329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.793329 LLDP, length 82 [|LLDP] 18:35:38.793329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.793329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.793329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a4e 70de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.793330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.793330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.793330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.793330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.793330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.793330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.793330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.793330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.793330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.793330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.803327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.803327 LLDP, length 82 [|LLDP] 18:35:38.803328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.803328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.803328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.803328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.803328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.803328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.803328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a56 11fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.803328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.803328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.803328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.803328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.803328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.803328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.813327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.813327 LLDP, length 82 [|LLDP] 18:35:38.813327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.813327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.813327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a5d b31e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.813327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.813327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.813328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.813328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.813328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.813328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.813328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.813328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.813328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.813328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.823332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.823332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.823332 LLDP, length 82 [|LLDP] 18:35:38.823332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.823332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.823332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a65 543e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.823332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.823332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.823333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.823333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.823333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.823333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.823333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.823333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.823333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.833330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.833330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.833330 LLDP, length 82 [|LLDP] 18:35:38.833330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.833330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.833330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.833330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.833330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.833330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a6c f55e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.833330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.833330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.833330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.833330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.833330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.833331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.843330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.843330 LLDP, length 82 [|LLDP] 18:35:38.843330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.843330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.843330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a74 967e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.843330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.843330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.843331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.843331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.843331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.843331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.843331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.843331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.843331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.843331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.853329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.853329 LLDP, length 82 [|LLDP] 18:35:38.853329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.853329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.853329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a7c 379e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.853329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.853329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.853329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.853329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.853329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.853329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.853329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.853330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.853330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.853330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.863340 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.863340 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.863340 LLDP, length 82 [|LLDP] 18:35:38.863340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.863340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.863340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a83 d8be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.863340 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.863340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.863340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.863340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.863340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.863340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.863341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.863341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.863341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.873330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.873330 LLDP, length 82 [|LLDP] 18:35:38.873330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.873330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.873330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a8b 79de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.873330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.873330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.873330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.873331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.873331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.873331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.873331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.873331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.873331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.873331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.883342 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.883342 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.883342 LLDP, length 82 [|LLDP] 18:35:38.883342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.883342 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.883342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.883342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.883342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.883342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a93 1afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.883343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.883343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.883343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.883343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.883343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.883343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.893330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.893330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.893330 LLDP, length 82 [|LLDP] 18:35:38.893330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.893330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.893330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0a9a bc1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.893330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.893330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.893331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.893331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.893331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.893331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.893331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.893331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.893331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.903327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.903327 LLDP, length 82 [|LLDP] 18:35:38.903328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.903328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.903328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aa2 5d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.903328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.903328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.903328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.903328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.903328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.903328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.903328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.903328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.903328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.903328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.913327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.913327 LLDP, length 82 [|LLDP] 18:35:38.913327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.913327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.913328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.913328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.913328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.913328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.913328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aa9 fe5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.913328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.913328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.913328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.913328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.913328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.913328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.923342 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.923342 LLDP, length 82 [|LLDP] 18:35:38.923342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.923342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.923342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ab1 9f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.923342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.923342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.923343 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.923343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.923343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.923343 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.923343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.923343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.923343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.923343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.933337 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.933337 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.933337 LLDP, length 82 [|LLDP] 18:35:38.933338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.933338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.933338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ab9 409e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.933338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.933338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.933338 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.933338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.933338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.933338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.933338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.933338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.933338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.943332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.943332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.943332 LLDP, length 82 [|LLDP] 18:35:38.943333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.943333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.943333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ac0 e1be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.943333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.943333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.943333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.943333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.943333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.943333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.943333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.943333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.943333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.953333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.953333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.953333 LLDP, length 82 [|LLDP] 18:35:38.953333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.953333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.953333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ac8 82de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.953333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.953334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.953334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.953334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.953334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.953334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.953334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.953334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.953334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.963338 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.963338 LLDP, length 82 [|LLDP] 18:35:38.963338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.963338 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.963338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.963338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.963338 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.963338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.963338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ad0 23fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.963338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.963338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.963338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.963338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.963339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.963339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.973334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.973334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.973334 LLDP, length 82 [|LLDP] 18:35:38.973334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.973334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.973334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ad7 c51e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.973334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.973334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.973334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.973334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.973335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.973335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.973335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.973335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.973335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.983332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.983332 LLDP, length 82 [|LLDP] 18:35:38.983332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.983332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.983332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0adf 663e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.983332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.983332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.983332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.983333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.983333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.983333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.983333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.983333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.983333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.983333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:38.993330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.993330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:38.993330 LLDP, length 82 [|LLDP] 18:35:38.993330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:38.993330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:38.993331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:38.993331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:38.993331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.993331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ae7 075e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:38.993331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:38.993331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:38.993331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:38.993331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:38.993331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:38.993331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.003331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.003331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.003332 LLDP, length 82 [|LLDP] 18:35:39.003332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.003332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.003332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0aee a87e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.003332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.003332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.003332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.003332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.003332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.003332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.003332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.003332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.003332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.013330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.013330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.013330 LLDP, length 82 [|LLDP] 18:35:39.013330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.013330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.013330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0af6 499e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.013330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.013330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.013330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.013330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.013330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.013330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.013330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.013331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.013331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.023334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.023334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.023334 LLDP, length 82 [|LLDP] 18:35:39.023334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.023335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.023335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0afd eabe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.023335 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.023335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.023335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.023335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.023335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.023335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.023335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.023335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.023335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.033329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.033329 LLDP, length 82 [|LLDP] 18:35:39.033329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.033330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.033330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b05 8bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.033330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.033330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.033330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.033330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.033330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.033330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.033330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.033330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.033330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.033330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.043336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.043336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.043337 LLDP, length 82 [|LLDP] 18:35:39.043337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.043337 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.043337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.043337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.043337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.043337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b0d 2cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.043337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.043337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.043337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.043337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.043337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.043337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.053327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.053327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.053327 LLDP, length 82 [|LLDP] 18:35:39.053327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.053327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.053327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b14 ce1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.053327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.053327 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.053327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.053327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.053327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.053328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.053328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.053328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.053328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.063328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.063328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.063328 LLDP, length 82 [|LLDP] 18:35:39.063329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.063329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.063329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b1c 6f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.063329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.063329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.063329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.063329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.063329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.063329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.063329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.063329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.063329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.073330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.073330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.073330 LLDP, length 82 [|LLDP] 18:35:39.073330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.073331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.073331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.073331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.073331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.073331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b24 105e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.073331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.073331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.073331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.073331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.073331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.073331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.083331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.083331 LLDP, length 82 [|LLDP] 18:35:39.083331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.083331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.083331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b2b b17e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.083331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.083331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.083331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.083331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.083331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.083331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.083331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.083331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.083332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.083332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.093330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.093330 LLDP, length 82 [|LLDP] 18:35:39.093330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.093330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.093330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b33 529e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.093330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.093330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.093330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.093330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.093330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.093330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.093330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.093330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.093331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.093331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.103328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.103328 LLDP, length 82 [|LLDP] 18:35:39.103329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.103329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.103329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b3a f3be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.103329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.103329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.103329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.103329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.103329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.103329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.103329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.103329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.103329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.103329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.113329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.113329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.113329 LLDP, length 82 [|LLDP] 18:35:39.113330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.113330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.113330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b42 94de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.113330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.113330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.113330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.113330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.113330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.113330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.113330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.113330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.113330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.123330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.123330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.123330 LLDP, length 82 [|LLDP] 18:35:39.123330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.123330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.123330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.123330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.123330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.123330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b4a 35fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.123331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.123331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.123331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.123331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.123331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.123331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.133335 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.133335 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.133335 LLDP, length 82 [|LLDP] 18:35:39.133335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.133336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.133336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b51 d71e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.133336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.133336 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.133336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.133336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.133336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.133336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.133336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.133336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.133336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.143362 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.143362 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.143362 LLDP, length 82 [|LLDP] 18:35:39.143362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.143362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.143362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b59 783e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.143362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.143362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.143362 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.143362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.143363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.143363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.143363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.143363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.143363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.153372 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.153372 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.153372 LLDP, length 82 [|LLDP] 18:35:39.153372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.153372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.153372 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.153372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.153372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.153372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b61 195e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.153372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.153372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.153372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.153373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.153373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.153373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.163348 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.163348 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.163348 LLDP, length 82 [|LLDP] 18:35:39.163348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.163348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.163349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b68 ba7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.163349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.163349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.163349 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.163349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.163349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.163349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.163349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.163349 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.163349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.173334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.173335 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.173335 LLDP, length 82 [|LLDP] 18:35:39.173335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.173335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.173335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b70 5b9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.173335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.173335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.173335 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.173335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.173335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.173335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.173335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.173335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.173335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.183340 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.183340 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.183340 LLDP, length 82 [|LLDP] 18:35:39.183340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.183340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.183340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b77 fcbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.183341 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.183341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.183341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.183341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.183341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.183341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.183341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.183341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.183341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.193332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.193332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.193332 LLDP, length 82 [|LLDP] 18:35:39.193332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.193332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.193332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b7f 9dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.193332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.193332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.193332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.193332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.193332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.193332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.193333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.193333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.193333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.203331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.203331 LLDP, length 82 [|LLDP] 18:35:39.203331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.203331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.203331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.203331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.203331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.203331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.203331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b87 3efe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.203331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.203331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.203331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.203331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.203331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.203332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.213331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.213331 LLDP, length 82 [|LLDP] 18:35:39.213331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.213331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.213331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b8e e01e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.213331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.213331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.213331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.213331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.213331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.213331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.213331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.213332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.213332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.213332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.223388 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.223388 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.223388 LLDP, length 82 [|LLDP] 18:35:39.223388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.223388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.223388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b96 813e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.223388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.223389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.223389 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.223389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.223389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.223389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.223389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.223389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.223389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.233333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.233333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.233333 LLDP, length 82 [|LLDP] 18:35:39.233333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.233333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.233333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.233333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.233333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.233334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0b9e 225e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.233334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.233334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.233334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.233334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.233334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.233334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.243333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.243333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.243333 LLDP, length 82 [|LLDP] 18:35:39.243333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.243333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.243333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ba5 c37e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.243333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.243333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.243333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.243333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.243334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.243334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.243334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.243334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.243334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.253344 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.253344 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.253344 LLDP, length 82 [|LLDP] 18:35:39.253344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.253344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.253344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bad 649e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.253344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.253344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.253344 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.253345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.253345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.253345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.253345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.253345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.253345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.263333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.263333 LLDP, length 82 [|LLDP] 18:35:39.263333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.263333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.263333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bb5 05be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.263333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.263333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.263333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.263333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.263333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.263333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.263333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.263334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.263334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.263334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.273331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.273331 LLDP, length 82 [|LLDP] 18:35:39.273331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.273331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.273332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bbc a6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.273332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.273332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.273332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.273332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.273332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.273332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.273332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.273332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.273332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.273332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.283332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.283332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.283332 LLDP, length 82 [|LLDP] 18:35:39.283332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.283332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.283332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.283332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.283332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.283332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bc4 47fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.283332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.283332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.283332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.283332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.283332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.283333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.293333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.293333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.293333 LLDP, length 82 [|LLDP] 18:35:39.293333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.293333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.293333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bcb e91e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.293334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.293334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.293334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.293334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.293334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.293334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.293334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.293334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.293334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.303329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.303329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.303329 LLDP, length 82 [|LLDP] 18:35:39.303329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.303330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.303330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bd3 8a3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.303330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.303330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.303330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.303330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.303330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.303330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.303330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.303330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.303330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.313330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.313330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.313330 LLDP, length 82 [|LLDP] 18:35:39.313330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.313330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.313331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.313331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.313331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.313331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bdb 2b5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.313331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.313331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.313331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.313331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.313331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.313331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.323331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.323331 LLDP, length 82 [|LLDP] 18:35:39.323331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.323331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.323331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0be2 cc7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.323332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.323332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.323332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.323332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.323332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.323332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.323332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.323332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.323332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.323332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.333331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.333331 LLDP, length 82 [|LLDP] 18:35:39.333331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.333331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.333332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bea 6d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.333332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.333332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.333332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.333332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.333332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.333332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.333332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.333332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.333332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.333332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.343332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.343332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.343332 LLDP, length 82 [|LLDP] 18:35:39.343332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.343332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.343332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bf2 0ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.343333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.343333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.343333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.343333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.343333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.343333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.343333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.343333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.343333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.353333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.353333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.353333 LLDP, length 82 [|LLDP] 18:35:39.353333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.353334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.353334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0bf9 afde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.353334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.353334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.353334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.353334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.353334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.353334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.353334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.353334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.353334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.363330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.363330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.363330 LLDP, length 82 [|LLDP] 18:35:39.363330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.363331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.363331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.363331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.363331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.363331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c01 50fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.363331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.363331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.363331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.363331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.363331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.363331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.373331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.373331 LLDP, length 82 [|LLDP] 18:35:39.373331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.373331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.373331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c08 f21e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.373331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.373331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.373331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.373331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.373331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.373331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.373331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.373332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.373332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.373332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.383331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.383331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.383331 LLDP, length 82 [|LLDP] 18:35:39.383331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.383331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.383331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c10 933e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.383332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.383332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.383332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.383332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.383332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.383332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.383332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.383332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.383332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.393345 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.393345 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.393345 LLDP, length 82 [|LLDP] 18:35:39.393345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.393345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.393345 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.393345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.393345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.393345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c18 345e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.393345 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.393346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.393346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.393346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.393346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.393346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.403337 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.403337 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.403337 LLDP, length 82 [|LLDP] 18:35:39.403337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.403337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.403337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c1f d57e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.403337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.403337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.403337 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.403337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.403337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.403337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.403337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.403338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.403338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.413334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.413334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.413334 LLDP, length 82 [|LLDP] 18:35:39.413334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.413334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.413334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c27 769e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.413334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.413335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.413335 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.413335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.413335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.413335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.413335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.413335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.413335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.423331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.423331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.423332 LLDP, length 82 [|LLDP] 18:35:39.423332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.423332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.423332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c2f 17be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.423332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.423332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.423332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.423332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.423332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.423332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.423332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.423332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.423332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.433332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.433332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.433332 LLDP, length 82 [|LLDP] 18:35:39.433332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.433332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.433332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c36 b8de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.433332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.433333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.433333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.433333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.433333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.433333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.433333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.433333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.433333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.443330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.443330 LLDP, length 82 [|LLDP] 18:35:39.443330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.443330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.443330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.443331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.443331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.443331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.443331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c3e 59fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.443331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.443331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.443331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.443331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.443331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.443331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.453329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.453329 LLDP, length 82 [|LLDP] 18:35:39.453329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.453329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.453329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c45 fb1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.453329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.453330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.453330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.453330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.453330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.453330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.453330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.453330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.453330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.453330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.463331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.463331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.463331 LLDP, length 82 [|LLDP] 18:35:39.463331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.463331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.463331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c4d 9c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.463331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.463331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.463331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.463331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.463331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.463331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.463331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.463332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.463332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.473328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.473328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.473328 LLDP, length 82 [|LLDP] 18:35:39.473328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.473328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.473328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.473329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.473329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.473329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c55 3d5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.473329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.473329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.473329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.473329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.473329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.473329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.483330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.483330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.483330 LLDP, length 82 [|LLDP] 18:35:39.483330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.483330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.483330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c5c de7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.483330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.483330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.483330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.483330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.483330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.483330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.483331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.483331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.483331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.493329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.493329 LLDP, length 82 [|LLDP] 18:35:39.493329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.493330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.493330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c64 7f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.493330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.493330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.493330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.493330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.493330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.493330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.493330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.493330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.493330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.493330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.503339 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.503339 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.503339 LLDP, length 82 [|LLDP] 18:35:39.503339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.503339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.503339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c6c 20be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.503339 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.503339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.503339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.503339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.503339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.503339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.503339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.503340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.503340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.513329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.513329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.513329 LLDP, length 82 [|LLDP] 18:35:39.513330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.513330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.513330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c73 c1de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.513330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.513330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.513330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.513330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.513330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.513330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.513330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.513330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.513330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.523328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.523328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.523328 LLDP, length 82 [|LLDP] 18:35:39.523328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.523328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.523329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.523329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.523329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.523329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c7b 62fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.523329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.523329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.523329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.523329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.523329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.523329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.533328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.533328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.533328 LLDP, length 82 [|LLDP] 18:35:39.533328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.533328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.533328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c83 041e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.533329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.533329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.533329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.533329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.533329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.533329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.533329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.533329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.533329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.543329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.543329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.543329 LLDP, length 82 [|LLDP] 18:35:39.543329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.543329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.543329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c8a a53e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.543329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.543329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.543329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.543329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.543329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.543330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.543330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.543330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.543330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.553328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.553328 LLDP, length 82 [|LLDP] 18:35:39.553328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.553328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.553328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.553328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.553328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.553328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.553328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c92 465e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.553329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.553329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.553329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.553329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.553329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.553329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.563331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.563331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.563331 LLDP, length 82 [|LLDP] 18:35:39.563331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.563331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.563331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0c99 e77e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.563331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.563332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.563332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.563332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.563332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.563332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.563332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.563332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.563332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.573329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.573329 LLDP, length 82 [|LLDP] 18:35:39.573329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.573329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.573329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ca1 889e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.573329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.573329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.573329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.573330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.573330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.573330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.573330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.573330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.573330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.573330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.583333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.583333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.583333 LLDP, length 82 [|LLDP] 18:35:39.583333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.583333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.583333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ca9 29be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.583333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.583333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.583333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.583333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.583333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.583333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.583333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.583333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.583334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.593329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.593330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.593330 LLDP, length 82 [|LLDP] 18:35:39.593330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.593330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.593330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cb0 cade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.593330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.593330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.593330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.593330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.593330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.593330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.593330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.593330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.593330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.603333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.603333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.603334 LLDP, length 82 [|LLDP] 18:35:39.603334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.603334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.603334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.603334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.603334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.603334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cb8 6bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.603334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.603334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.603334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.603334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.603334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.603334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.613331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.613331 LLDP, length 82 [|LLDP] 18:35:39.613331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.613332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.613332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cc0 0d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.613332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.613332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.613332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.613332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.613332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.613332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.613332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.613332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.613332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.613332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.623329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.623329 LLDP, length 82 [|LLDP] 18:35:39.623329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.623329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.623329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cc7 ae3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.623329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.623329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.623329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.623329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.623329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.623329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.623329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.623330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.623330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.623330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.633330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.633330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.633330 LLDP, length 82 [|LLDP] 18:35:39.633330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.633330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.633330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.633331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.633331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.633331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ccf 4f5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.633331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.633331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.633331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.633331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.633331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.633331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.643330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.643330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.643330 LLDP, length 82 [|LLDP] 18:35:39.643330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.643330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.643330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cd6 f07e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.643330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.643330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.643331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.643331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.643331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.643331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.643331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.643331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.643331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.653329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.653329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.653329 LLDP, length 82 [|LLDP] 18:35:39.653329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.653329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.653329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cde 919e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.653329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.653329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.653329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.653329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.653329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.653330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.653330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.653330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.653330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.663331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.663331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.663331 LLDP, length 82 [|LLDP] 18:35:39.663331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.663331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.663331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ce6 32be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.663331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.663331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.663331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.663331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.663331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.663331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.663331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.663331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.663332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.673329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.673329 LLDP, length 82 [|LLDP] 18:35:39.673329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.673329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.673329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ced d3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.673329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.673329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.673329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.673329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.673330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.673330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.673330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.673330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.673330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.673330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.683329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.683329 LLDP, length 82 [|LLDP] 18:35:39.683330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.683330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.683330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.683330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.683330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.683330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.683330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cf5 74fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.683330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.683330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.683330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.683330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.683330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.683330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.693331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.693331 LLDP, length 82 [|LLDP] 18:35:39.693331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.693331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.693331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0cfd 161e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.693331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.693331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.693331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.693331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.693331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.693331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.693332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.693332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.693332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.693332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.703333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.703333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.703333 LLDP, length 82 [|LLDP] 18:35:39.703333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.703333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.703333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d04 b73e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.703333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.703333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.703333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.703333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.703333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.703333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.703334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.703334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.703334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.713334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.713334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.713334 LLDP, length 82 [|LLDP] 18:35:39.713334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.713334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.713335 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.713335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.713335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.713335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d0c 585e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.713335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.713335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.713335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.713335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.713335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.713335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.723333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.723333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.723333 LLDP, length 82 [|LLDP] 18:35:39.723333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.723333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.723333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d13 f97e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.723333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.723333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.723333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.723333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.723333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.723334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.723334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.723334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.723334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.733332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.733332 LLDP, length 82 [|LLDP] 18:35:39.733332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.733332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.733332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d1b 9a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.733332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.733332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.733332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.733333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.733333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.733333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.733333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.733333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.733333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.733333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.743329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.743329 LLDP, length 82 [|LLDP] 18:35:39.743329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.743329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.743329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d23 3bbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.743329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.743330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.743330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.743330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.743330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.743330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.743330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.743330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.743330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.743330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.753328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.753328 LLDP, length 82 [|LLDP] 18:35:39.753328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.753328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.753329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d2a dcde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.753329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.753329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.753329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.753329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.753329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.753329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.753329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.753329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.753329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.753329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.763332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.763332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.763332 LLDP, length 82 [|LLDP] 18:35:39.763332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.763332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.763332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.763332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.763332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.763332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d32 7dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.763332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.763333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.763333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.763333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.763333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.763333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.773331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.773331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.773331 LLDP, length 82 [|LLDP] 18:35:39.773331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.773331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.773331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d3a 1f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.773331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.773331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.773331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.773331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.773332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.773332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.773332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.773332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.773332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.783331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.783331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.783331 LLDP, length 82 [|LLDP] 18:35:39.783331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.783332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.783332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d41 c03e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.783332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.783332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.783332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.783332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.783332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.783332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.783332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.783332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.783332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.793332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.793332 LLDP, length 82 [|LLDP] 18:35:39.793332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.793332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.793332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.793332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.793332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.793332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.793333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d49 615e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.793333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.793333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.793333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.793333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.793333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.793333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.803348 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.803348 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.803348 LLDP, length 82 [|LLDP] 18:35:39.803348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.803348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.803348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d51 027e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.803348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.803348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.803348 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.803349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.803349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.803349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.803349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.803349 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.803349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.813349 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.813349 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.813349 LLDP, length 82 [|LLDP] 18:35:39.813349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.813349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.813349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d58 a39e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.813349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.813349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.813349 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.813349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.813350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.813350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.813350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.813350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.813350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.823337 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.823337 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.823338 LLDP, length 82 [|LLDP] 18:35:39.823338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.823338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.823338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d60 44be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.823338 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.823338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.823338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.823338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.823338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.823338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.823338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.823338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.823338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.833336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.833336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.833336 LLDP, length 82 [|LLDP] 18:35:39.833337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.833337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.833337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d67 e5de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.833337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.833337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.833337 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.833337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.833337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.833337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.833337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.833337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.833337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.843330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.843330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.843330 LLDP, length 82 [|LLDP] 18:35:39.843330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.843330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.843330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.843330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.843330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.843330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d6f 86fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.843330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.843331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.843331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.843331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.843331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.843331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.853336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.853336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.853336 LLDP, length 82 [|LLDP] 18:35:39.853336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.853336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.853336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d77 281e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.853336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.853336 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.853336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.853336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.853337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.853337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.853337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.853337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.853337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.863371 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.863371 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.863371 LLDP, length 82 [|LLDP] 18:35:39.863371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.863372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.863372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d7e c93e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.863372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.863372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.863372 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.863372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.863372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.863372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.863372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.863372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.863372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.873359 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.873359 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.873359 LLDP, length 82 [|LLDP] 18:35:39.873359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.873359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.873359 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.873360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.873360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.873360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d86 6a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.873360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.873360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.873360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.873360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.873360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.873360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.883356 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.883356 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.883356 LLDP, length 82 [|LLDP] 18:35:39.883356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.883356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.883356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d8e 0b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.883356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.883356 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.883356 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.883356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.883357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.883357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.883357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.883357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.883357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.893365 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.893365 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.893365 LLDP, length 82 [|LLDP] 18:35:39.893365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.893365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.893365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d95 ac9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.893366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.893366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.893366 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.893366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.893366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.893366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.893366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.893366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.893366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.903362 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.903362 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.903362 LLDP, length 82 [|LLDP] 18:35:39.903362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.903362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.903362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0d9d 4dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.903362 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.903362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.903362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.903362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.903362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.903362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.903362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.903362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.903362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.913361 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.913361 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.913361 LLDP, length 82 [|LLDP] 18:35:39.913361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.913361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.913361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0da4 eede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.913361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.913361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.913361 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.913361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.913361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.913361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.913361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.913361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.913362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.923354 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.923354 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.923354 LLDP, length 82 [|LLDP] 18:35:39.923354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.923354 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.923354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.923354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.923354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.923354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dac 8ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.923354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.923354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.923354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.923354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.923355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.923355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.933333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.933333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.933333 LLDP, length 82 [|LLDP] 18:35:39.933333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.933333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.933333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0db4 311e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.933333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.933333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.933334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.933334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.933334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.933334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.933334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.933334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.933334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.943331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.943331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.943331 LLDP, length 82 [|LLDP] 18:35:39.943331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.943331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.943331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dbb d23e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.943331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.943332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.943332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.943332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.943332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.943332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.943332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.943332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.943332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.953331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.953331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.953332 LLDP, length 82 [|LLDP] 18:35:39.953332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.953332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.953332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.953332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.953332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.953332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dc3 735e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.953332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.953332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.953332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.953332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.953332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.953332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.963332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.963332 LLDP, length 82 [|LLDP] 18:35:39.963333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.963333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.963333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dcb 147e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.963333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.963333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.963333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.963333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.963333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.963333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.963333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.963333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.963333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.963333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.973329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.973329 LLDP, length 82 [|LLDP] 18:35:39.973329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.973329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.973329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dd2 b59e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.973330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.973330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.973330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.973330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.973330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.973330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.973330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.973330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.973330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.973330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.983330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.983330 LLDP, length 82 [|LLDP] 18:35:39.983331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.983331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.983331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0dda 56be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.983331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.983331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.983331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.983331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.983331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.983331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.983331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.983331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.983331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.983331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:39.993328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.993329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:39.993329 LLDP, length 82 [|LLDP] 18:35:39.993329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:39.993329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:39.993329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0de1 f7de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:39.993329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:39.993329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:39.993329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:39.993329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:39.993329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.993329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:39.993329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:39.993329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:39.993329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.003336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.003336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.003336 LLDP, length 82 [|LLDP] 18:35:40.003336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.003336 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.003336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.003336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.003336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.003336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0de9 98fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.003337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.003337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.003337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.003337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.003337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.003337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.013332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.013332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.013332 LLDP, length 82 [|LLDP] 18:35:40.013332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.013333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.013333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0df1 3a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.013333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.013333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.013333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.013333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.013333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.013333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.013333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.013333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.013333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.023330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.023330 LLDP, length 82 [|LLDP] 18:35:40.023330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.023330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.023331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0df8 db3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.023331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.023331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.023331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.023331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.023331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.023331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.023331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.023331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.023331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.023331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.033331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.033331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.033331 LLDP, length 82 [|LLDP] 18:35:40.033332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.033332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.033332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.033332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.033332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.033332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e00 7c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.033332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.033332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.033332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.033332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.033332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.033332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.043331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.043331 LLDP, length 82 [|LLDP] 18:35:40.043331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.043331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.043331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e08 1d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.043331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.043331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.043331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.043331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.043331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.043331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.043331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.043331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.043331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.043332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.053331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.053331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.053331 LLDP, length 82 [|LLDP] 18:35:40.053331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.053331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.053331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e0f be9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.053331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.053331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.053331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.053331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.053331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.053331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.053332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.053332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.053332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.063328 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.063328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.063328 LLDP, length 82 [|LLDP] 18:35:40.063328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.063328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.063329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e17 5fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.063329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.063329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.063329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.063329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.063329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.063329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.063329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.063329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.063329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.073329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.073329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.073329 LLDP, length 82 [|LLDP] 18:35:40.073329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.073329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.073329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e1f 00de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.073329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.073329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.073329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.073330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.073330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.073330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.073330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.073330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.073330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.083331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.083331 LLDP, length 82 [|LLDP] 18:35:40.083331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.083331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.083331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.083331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.083331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.083331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.083331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e26 a1fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.083332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.083332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.083332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.083332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.083332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.083332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.093329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.093329 LLDP, length 82 [|LLDP] 18:35:40.093329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.093329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.093329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e2e 431e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.093329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.093330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.093330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.093330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.093330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.093330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.093330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.093330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.093330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.093330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.103337 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.103337 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.103337 LLDP, length 82 [|LLDP] 18:35:40.103337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.103337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.103337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e35 e43e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.103337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.103337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.103337 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.103337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.103337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.103337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.103337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.103338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.103338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.113329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.113329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.113329 LLDP, length 82 [|LLDP] 18:35:40.113329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.113329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.113329 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.113329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.113329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.113329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e3d 855e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.113330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.113330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.113330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.113330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.113330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.113330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.123330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.123330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.123330 LLDP, length 82 [|LLDP] 18:35:40.123330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.123330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.123330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e45 267e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.123330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.123330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.123331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.123331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.123331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.123331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.123331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.123331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.123331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.133331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.133331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.133331 LLDP, length 82 [|LLDP] 18:35:40.133331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.133331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.133331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e4c c79e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.133332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.133332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.133332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.133332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.133332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.133332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.133332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.133332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.133332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.143327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.143327 LLDP, length 82 [|LLDP] 18:35:40.143327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.143328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.143328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e54 68be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.143328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.143328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.143328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.143328 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.143328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.143328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.143328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.143328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.143328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.143328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.153330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.153330 LLDP, length 82 [|LLDP] 18:35:40.153330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.153330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.153330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e5c 09de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.153330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.153330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.153330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.153330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.153330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.153330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.153330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.153330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.153331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.153331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.163329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.163329 LLDP, length 82 [|LLDP] 18:35:40.163329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.163330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.163330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.163330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.163330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.163330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.163330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e63 aafe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.163330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.163330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.163330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.163330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.163330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.163330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.173330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.173330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.173330 LLDP, length 82 [|LLDP] 18:35:40.173330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.173330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.173331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e6b 4c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.173331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.173331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.173331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.173331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.173331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.173331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.173331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.173331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.173331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.183330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.183330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.183330 LLDP, length 82 [|LLDP] 18:35:40.183330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.183330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.183330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e72 ed3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.183330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.183330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.183330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.183330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.183330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.183330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.183330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.183331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.183331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.193330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.193330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.193330 LLDP, length 82 [|LLDP] 18:35:40.193330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.193330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.193330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.193330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.193330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.193330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e7a 8e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.193331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.193331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.193331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.193331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.193331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.193331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.203330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.203330 LLDP, length 82 [|LLDP] 18:35:40.203330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.203331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.203331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e82 2f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.203331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.203331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.203331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.203331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.203331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.203331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.203331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.203331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.203331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.203331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.213337 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.213338 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.213338 LLDP, length 82 [|LLDP] 18:35:40.213338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.213338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.213338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e89 d09e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.213338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.213338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.213338 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.213338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.213338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.213338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.213338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.213338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.213338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.223336 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.223336 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.223336 LLDP, length 82 [|LLDP] 18:35:40.223337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.223337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.223337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e91 71be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.223337 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.223337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.223337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.223337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.223337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.223337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.223337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.223337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.223337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.233332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.233332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.233332 LLDP, length 82 [|LLDP] 18:35:40.233332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.233332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.233332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0e99 12de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.233332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.233332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.233332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.233333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.233333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.233333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.233333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.233333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.233333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.243330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.243330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.243330 LLDP, length 82 [|LLDP] 18:35:40.243330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.243330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.243330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.243330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.243330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.243330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ea0 b3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.243330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.243330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.243331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.243331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.243331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.243331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.253349 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.253349 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.253349 LLDP, length 82 [|LLDP] 18:35:40.253349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.253349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.253349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ea8 551e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.253349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.253350 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.253350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.253350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.253350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.253350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.253350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.253350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.253350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.263339 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.263339 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.263339 LLDP, length 82 [|LLDP] 18:35:40.263339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.263339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.263339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eaf f63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.263339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.263340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.263340 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.263340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.263340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.263340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.263340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.263340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.263340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.273332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.273332 LLDP, length 82 [|LLDP] 18:35:40.273332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.273332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.273332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.273332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.273333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.273333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.273333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eb7 975e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.273333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.273333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.273333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.273333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.273333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.273333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.283333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.283333 LLDP, length 82 [|LLDP] 18:35:40.283333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.283333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.283334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ebf 387e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.283334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.283334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.283334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.283334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.283334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.283334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.283334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.283334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.283334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.283334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.293330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.293330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.293330 LLDP, length 82 [|LLDP] 18:35:40.293330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.293330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.293330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ec6 d99e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.293330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.293330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.293331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.293331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.293331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.293331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.293331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.293331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.293331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.303331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.303331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.303331 LLDP, length 82 [|LLDP] 18:35:40.303332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.303332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.303332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ece 7abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.303332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.303332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.303332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.303332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.303332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.303332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.303332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.303332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.303332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.313333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.313333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.313333 LLDP, length 82 [|LLDP] 18:35:40.313333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.313334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.313334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ed6 1bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.313334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.313334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.313334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.313334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.313334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.313334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.313334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.313334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.313334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.323330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.323330 LLDP, length 82 [|LLDP] 18:35:40.323330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.323330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.323330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.323330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.323330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.323330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.323331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0edd bcfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.323331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.323331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.323331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.323331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.323331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.323331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.333333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.333333 LLDP, length 82 [|LLDP] 18:35:40.333333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.333333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.333333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ee5 5e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.333334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.333334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.333334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.333334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.333334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.333334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.333334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.333334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.333334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.333334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.343332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.343332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.343333 LLDP, length 82 [|LLDP] 18:35:40.343333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.343333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.343333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0eec ff3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.343333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.343333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.343333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.343333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.343333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.343333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.343333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.343333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.343333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.353331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.353331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.353331 LLDP, length 82 [|LLDP] 18:35:40.353331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.353331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.353331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.353331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.353331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.353331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ef4 a05e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.353331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.353332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.353332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.353332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.353332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.353332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.363334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.363334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.363334 LLDP, length 82 [|LLDP] 18:35:40.363334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.363334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.363334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0efc 417e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.363334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.363334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.363334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.363334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.363334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.363335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.363335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.363335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.363335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.373331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.373331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.373331 LLDP, length 82 [|LLDP] 18:35:40.373331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.373331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.373331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f03 e29e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.373331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.373331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.373331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.373331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.373332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.373332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.373332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.373332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.373332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.383331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.383331 LLDP, length 82 [|LLDP] 18:35:40.383331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.383331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.383331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f0b 83be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.383331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.383331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.383331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.383331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.383331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.383331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.383331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.383331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.383331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.383332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.393332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.393332 LLDP, length 82 [|LLDP] 18:35:40.393332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.393332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.393332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f13 24de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.393332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.393332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.393332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.393332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.393332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.393332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.393333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.393333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.393333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.393333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.403329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.403329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.403330 LLDP, length 82 [|LLDP] 18:35:40.403330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.403330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.403330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.403330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.403330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.403330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f1a c5fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.403330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.403330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.403330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.403330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.403330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.403330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.413330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.413330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.413330 LLDP, length 82 [|LLDP] 18:35:40.413330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.413330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.413330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f22 671e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.413330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.413330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.413330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.413330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.413330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.413330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.413331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.413331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.413331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.423331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.423331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.423331 LLDP, length 82 [|LLDP] 18:35:40.423331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.423331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.423331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f2a 083e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.423331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.423331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.423331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.423331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.423332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.423332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.423332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.423332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.423332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.433332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.433332 LLDP, length 82 [|LLDP] 18:35:40.433332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.433332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.433332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.433332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.433332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.433332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.433332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f31 a95e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.433332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.433332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.433332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.433332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.433333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.433333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.443332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.443332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.443332 LLDP, length 82 [|LLDP] 18:35:40.443332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.443332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.443332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f39 4a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.443332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.443332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.443332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.443332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.443332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.443333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.443333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.443333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.443333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.453333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.453333 LLDP, length 82 [|LLDP] 18:35:40.453333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.453333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.453333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f40 eb9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.453333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.453334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.453334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.453334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.453334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.453334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.453334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.453334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.453334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.453334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.463331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.463331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.463331 LLDP, length 82 [|LLDP] 18:35:40.463331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.463331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.463331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f48 8cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.463331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.463331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.463331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.463331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.463331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.463331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.463332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.463332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.463332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.473330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.473330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.473330 LLDP, length 82 [|LLDP] 18:35:40.473330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.473330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.473330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f50 2dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.473330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.473330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.473331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.473331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.473331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.473331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.473331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.473331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.473331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.483331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.483331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.483331 LLDP, length 82 [|LLDP] 18:35:40.483331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.483331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.483332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.483332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.483332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.483332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f57 cefe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.483332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.483332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.483332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.483332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.483332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.483332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.493332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.493332 LLDP, length 82 [|LLDP] 18:35:40.493332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.493332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.493333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f5f 701e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.493333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.493333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.493333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.493333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.493333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.493333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.493333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.493333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.493333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.493333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.503331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.503331 LLDP, length 82 [|LLDP] 18:35:40.503331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.503331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.503331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f67 113e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.503331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.503331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.503331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.503331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.503331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.503331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.503331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.503331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.503331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.503332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.513333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.513333 LLDP, length 82 [|LLDP] 18:35:40.513334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.513334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.513334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.513334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.513334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.513334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.513334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f6e b25e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.513334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.513334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.513334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.513334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.513334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.513334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.523329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.523329 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.523329 LLDP, length 82 [|LLDP] 18:35:40.523330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.523330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.523330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f76 537e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.523330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.523330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.523330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.523330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.523330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.523330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.523330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.523330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.523330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.533330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.533330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.533330 LLDP, length 82 [|LLDP] 18:35:40.533330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.533330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.533330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f7d f49e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.533330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.533330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.533330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.533331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.533331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.533331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.533331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.533331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.533331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.543331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.543331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.543331 LLDP, length 82 [|LLDP] 18:35:40.543331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.543331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.543331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f85 95be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.543331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.543331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.543331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.543332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.543332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.543332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.543332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.543332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.543332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.553338 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.553338 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.553338 LLDP, length 82 [|LLDP] 18:35:40.553338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.553338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.553338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f8d 36de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.553338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.553338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.553338 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.553339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.553339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.553339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.553339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.553339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.553339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.563333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.563333 LLDP, length 82 [|LLDP] 18:35:40.563333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.563333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.563333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.563333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.563333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.563334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.563334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f94 d7fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.563334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.563334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.563334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.563334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.563334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.563334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.573332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.573332 LLDP, length 82 [|LLDP] 18:35:40.573332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.573332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.573332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0f9c 791e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.573332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.573332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.573332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.573332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.573332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.573332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.573332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.573332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.573332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.573333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.583331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.583331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.583331 LLDP, length 82 [|LLDP] 18:35:40.583331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.583331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.583331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fa4 1a3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.583331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.583331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.583331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.583331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.583331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.583331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.583331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.583332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.583332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.593332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.593332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.593332 LLDP, length 82 [|LLDP] 18:35:40.593332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.593332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.593332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.593332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.593332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.593332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fab bb5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.593332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.593332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.593332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.593332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.593332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.593333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.603332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.603332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.603332 LLDP, length 82 [|LLDP] 18:35:40.603332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.603332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.603332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fb3 5c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.603332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.603332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.603332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.603333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.603333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.603333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.603333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.603333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.603333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.613330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.613330 LLDP, length 82 [|LLDP] 18:35:40.613330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.613330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.613330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fba fd9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.613330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.613330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.613330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.613330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.613331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.613331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.613331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.613331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.613331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.613331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.623330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.623330 LLDP, length 82 [|LLDP] 18:35:40.623330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.623330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.623330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fc2 9ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.623331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.623331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.623331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.623331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.623331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.623331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.623331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.623331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.623331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.623331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.633333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.633334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.633334 LLDP, length 82 [|LLDP] 18:35:40.633334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.633334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.633334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fca 3fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.633334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.633334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.633334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.633334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.633334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.633334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.633334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.633334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.633334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.643332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.643332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.643332 LLDP, length 82 [|LLDP] 18:35:40.643332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.643333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.643333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.643333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.643333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.643333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fd1 e0fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.643333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.643333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.643333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.643333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.643333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.643333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.653331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.653331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.653331 LLDP, length 82 [|LLDP] 18:35:40.653331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.653331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.653331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fd9 821e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.653331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.653331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.653332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.653332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.653332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.653332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.653332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.653332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.653332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.663334 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.663335 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.663335 LLDP, length 82 [|LLDP] 18:35:40.663335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.663335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.663335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fe1 233e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.663335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.663335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.663335 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.663335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.663335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.663335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.663335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.663335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.663336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.673332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.673332 LLDP, length 82 [|LLDP] 18:35:40.673332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.673332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.673332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.673332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.673332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.673332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.673332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fe8 c45e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.673333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.673333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.673333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.673333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.673333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.673333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.683333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.683333 LLDP, length 82 [|LLDP] 18:35:40.683333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.683334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.683334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ff0 657e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.683334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.683334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.683334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.683334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.683334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.683334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.683334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.683334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.683334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.683334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.693330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.693330 LLDP, length 82 [|LLDP] 18:35:40.693330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.693330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.693330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0ff8 069e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.693331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.693331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.693331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.693331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.693331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.693331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.693331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.693331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.693331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.693331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.703331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.703331 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.703331 LLDP, length 82 [|LLDP] 18:35:40.703331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.703331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.703331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 0fff a7be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.703331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.703331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.703332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.703332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.703332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.703332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.703332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.703332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.703332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.713332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.713332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.713332 LLDP, length 82 [|LLDP] 18:35:40.713332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.713332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.713332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1007 48de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.713332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.713332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.713332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.713332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.713332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.713332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.713332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.713332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.713333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.723333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.723334 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.723334 LLDP, length 82 [|LLDP] 18:35:40.723334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.723334 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.723334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.723334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.723334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.723334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 100e e9fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.723334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.723334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.723334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.723334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.723334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.723334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.733332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.733332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.733332 LLDP, length 82 [|LLDP] 18:35:40.733332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.733332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.733332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1016 8b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.733332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.733332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.733332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.733332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.733332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.733332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.733333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.733333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.733333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.743331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.743331 LLDP, length 82 [|LLDP] 18:35:40.743331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.743331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.743331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 101e 2c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.743331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.743331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.743331 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.743331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.743331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.743332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.743332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.743332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.743332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.743332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.753331 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.753332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.753332 LLDP, length 82 [|LLDP] 18:35:40.753332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.753332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.753332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.753332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.753332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.753332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1025 cd5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.753332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.753332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.753332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.753332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.753332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.753332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.763330 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.763330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.763330 LLDP, length 82 [|LLDP] 18:35:40.763330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.763330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.763330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 102d 6e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.763330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.763330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.763330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.763330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.763331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.763331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.763331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.763331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.763331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.773327 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.773327 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.773327 LLDP, length 82 [|LLDP] 18:35:40.773327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.773328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.773328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1035 0f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.773328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.773328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.773328 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.773328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.773328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.773328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.773328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.773328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.773328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.783332 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.783332 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.783332 LLDP, length 82 [|LLDP] 18:35:40.783332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.783332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.783332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 103c b0be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.783332 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.783332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.783332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.783332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.783332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.783332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.783333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.783333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.783333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.793333 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.793333 LLDP, length 82 [|LLDP] 18:35:40.793333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.793333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.793333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 1044 51de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.793333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.793333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.793333 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.793333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.793333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.793333 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.793333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.793333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.793333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.793334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:35:40.803329 IP 1.1.1.2.40143 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.803329 LLDP, length 82 [|LLDP] 18:35:40.803330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:35:40.803330 IP 192.168.1.1.39761 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:35:40.803330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:35:40.803330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.803330 IP 1.1.1.2.7848 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:35:40.803330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:35:40.803330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 6000 0002 1011 1213 104b f2fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:35:40.803330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:35:40.803330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:35:40.803330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:35:40.803330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:35:40.803330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:35:40.803330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 6586 packets captured 6586 packets received by filter 0 packets dropped by kernel
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_port_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=44, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=9] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=10] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:35:49 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=44, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=44, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=12] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=44, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=44, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=44, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=44, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=44, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=44, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=16] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=44, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=44, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=18] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:35:51 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=44, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:35:51 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=44, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=44, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=44, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=22] Channel closed DEBUG agg1:Logger.py:156 []
Passed functional/bridging/test_bridging_bum_traffic_port.py::test_bridging_bum_traffic_port_without_rif 263.08
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_port_without_rif">Starting testcase:test_bridging_bum_traffic_port_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2269' coro=<test_bridging_bum_traffic_port_without_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py:132> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=44, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=45] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=45] Local address: 172.17.0.3, port 54568 INFO asyncssh:logging.py:92 [conn=45] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=45] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=45] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:35:51 PM UTC INFO asyncssh:logging.py:92 [conn=45, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=45, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=2] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=45, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=45, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip -j link show swp1 INFO asyncssh:logging.py:92 [conn=45, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=4] Command: ip -j link show swp1 INFO asyncssh:logging.py:92 [conn=45, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=4] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 15 tcpdump -i swp1 -n on agg1... INFO asyncssh:logging.py:92 [conn=45, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp1 -n INFO asyncssh:logging.py:92 [conn=45, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=6] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp1 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6c9ea0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI BridgedLLDP SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI LACPDU SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4ToMe SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI ARP_Request_BC SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI ARP_Reply SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_Broadcast SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPV4_SSH SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPV4_Telnet SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_ICMP_Request SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_DCHP_BC SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_Reserved_MC SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_OSPFIGP SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_VRRP SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_IGMP SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPV4_BGP SIP-DIP N/A Tx 442 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=45, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=6] Channel closed DEBUG agg1:Logger.py:156 18:39:57.410279 LLDP, length 219: localhost 18:39:59.751351 LLDP, length 82 [|LLDP] 18:39:59.751351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.751351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 033f a93e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.751351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.751351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.751351 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.751352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.751352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.751352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.751352 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.751352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.751352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.751352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.751352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.751352 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.761324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.761324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.761324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.761324 LLDP, length 82 [|LLDP] 18:39:59.761325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.761325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0347 4a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.761325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.761325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.761325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.761325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.761325 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.761325 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.761325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.761325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.761325 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.771317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.771317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.771318 LLDP, length 82 [|LLDP] 18:39:59.771318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.771318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 034e eb7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.771318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.771318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.771318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.771318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.771318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.771318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.771318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.771318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.771318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.771318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.781314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.781314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.781314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.781314 LLDP, length 82 [|LLDP] 18:39:59.781314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.781314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0356 8c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.781314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.781315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.781315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.781315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.781315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.781315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.781315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.781315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.781315 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.791313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.791313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.791313 LLDP, length 82 [|LLDP] 18:39:59.791313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.791313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 035e 2dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.791313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.791314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.791314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.791314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.791314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.791314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.791314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.791314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.791314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.791314 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.801322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.801322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.801322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.801322 LLDP, length 82 [|LLDP] 18:39:59.801322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.801322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0365 cede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.801322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.801322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.801323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.801323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.801323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.801323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.801323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.801323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.801323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.811313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.811314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.811314 LLDP, length 82 [|LLDP] 18:39:59.811314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.811314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 036d 6ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.811314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.811314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.811314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.811314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.811314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.811314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.811314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.811314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.821307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.821307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.821308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.821308 LLDP, length 82 [|LLDP] 18:39:59.821308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.821308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0375 111e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.821308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.821308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.821308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.831316 LLDP, length 82 [|LLDP] 18:39:59.831316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.831316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 037c b23e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.831316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.831316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.831316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.831316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.831316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.831316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.831316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.831316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.831316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.831317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.831317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.831317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.841319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.841319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.841319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.841319 LLDP, length 82 [|LLDP] 18:39:59.841319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.841319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0384 535e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.841319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.841320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.841320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.841320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.841320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.841320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.841320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.841320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.841320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.851314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.851314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.851314 LLDP, length 82 [|LLDP] 18:39:59.851314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.851314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 038b f47e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.851314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.851314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.851314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.851314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.851314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.851314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.851314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.851314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.851315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.851315 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.861371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.861371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.861372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.861372 LLDP, length 82 [|LLDP] 18:39:59.861372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.861372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0393 959e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.861372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.861372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.861372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.861372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.861372 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.861372 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.861372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.861372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.861372 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.871340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.871340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.871340 LLDP, length 82 [|LLDP] 18:39:59.871341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.871341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 039b 36be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.871341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.871341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.871341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.871341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.871341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.871341 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.871341 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.871341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.871341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.871341 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.881336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.881336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.881336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.881336 LLDP, length 82 [|LLDP] 18:39:59.881336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.881336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03a2 d7de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.881336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.881336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.881336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.881336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.881336 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.881336 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.881336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.881336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.881337 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.891333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.891333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.891333 LLDP, length 82 [|LLDP] 18:39:59.891333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.891333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03aa 78fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.891333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.891333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.891333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.891333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.891333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.891333 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.891333 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.891333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.901320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.901320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.901320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.901320 LLDP, length 82 [|LLDP] 18:39:59.901320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.901320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03b2 1a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.901320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.901320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.901320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.911322 LLDP, length 82 [|LLDP] 18:39:59.911322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.911322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03b9 bb3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.911322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.911322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.911322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.911322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.911323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.911323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.921329 LLDP, length 82 [|LLDP] 18:39:59.921329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.921329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03c1 5c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.921329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.921329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.921329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.921329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.921329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.921329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.931346 LLDP, length 82 [|LLDP] 18:39:59.931346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.931346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03c8 fd7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.931346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.931346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.931346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.931347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.931347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.931347 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.931347 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.931347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.931347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.931347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.931347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.931347 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.941332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.941332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.941332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.941332 LLDP, length 82 [|LLDP] 18:39:59.941333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.941333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03d0 9e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.941333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.941333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.941333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.941333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.941333 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.941333 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.941333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.941333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.941333 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.951323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.951323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.951323 LLDP, length 82 [|LLDP] 18:39:59.951323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.951323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03d8 3fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.951323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.951323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.951323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.951323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.951324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.951324 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.951324 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.951324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.951324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.951324 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.961323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.961323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.961323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.961323 LLDP, length 82 [|LLDP] 18:39:59.961323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.961323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03df e0de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.961323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.961323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.961323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.961323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.961323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.961324 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.961324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.961324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.961324 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.971319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.971319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.971319 LLDP, length 82 [|LLDP] 18:39:59.971319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.971319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03e7 81fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.971320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.971320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.971320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.971320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.971320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.971320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.971320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.971320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.971320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.971320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.981325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.981325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.981325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.981325 LLDP, length 82 [|LLDP] 18:39:59.981325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.981325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03ef 231e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.981325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.981325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.981325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.981325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.981325 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.981325 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.981325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.981326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.981326 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.991316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.991316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.991316 LLDP, length 82 [|LLDP] 18:39:59.991316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.991316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03f6 c43e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.991316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.991316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.991316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.991317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.991317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.991317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.991317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.991317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.001308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.001308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.001308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.001309 LLDP, length 82 [|LLDP] 18:40:00.001309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.001309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03fe 655e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.001309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.001309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.001309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.011307 LLDP, length 82 [|LLDP] 18:40:00.011307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.011307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0406 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.011307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.011307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.011307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.011307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.011307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.011307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.021306 LLDP, length 82 [|LLDP] 18:40:00.021306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.021306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 040d a79e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.021306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.021307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.021307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.021307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.021307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.021307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.031336 LLDP, length 82 [|LLDP] 18:40:00.031336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.031337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0415 48be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.031337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.031337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.031337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.031337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.031337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.031337 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.031337 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.031337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.031337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.031337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.031337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.031337 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.041315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.041315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.041315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.041315 LLDP, length 82 [|LLDP] 18:40:00.041315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.041315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 041c e9de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.041315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.041315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.041316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.041316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.041316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.041316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.041316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.041316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.041316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.051318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.051318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.051318 LLDP, length 82 [|LLDP] 18:40:00.051318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.051318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0424 8afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.051318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.051318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.051318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.051318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.051318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.051318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.051318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.051318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.051319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.051319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.061316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.061316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.061316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.061316 LLDP, length 82 [|LLDP] 18:40:00.061316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.061316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 042c 2c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.061316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.061316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.061316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.061316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.061316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.061316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.061316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.061316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.061316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.071315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.071315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.071315 LLDP, length 82 [|LLDP] 18:40:00.071316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.071316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0433 cd3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.071316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.071316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.071316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.071316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.071316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.071316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.071316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.071316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.071316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.071316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.081315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.081315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.081315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.081315 LLDP, length 82 [|LLDP] 18:40:00.081315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.081315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 043b 6e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.081315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.081315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.081315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.081315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.081315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.081315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.081315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.081315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.081316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.091315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.091315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.091315 LLDP, length 82 [|LLDP] 18:40:00.091315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.091315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0443 0f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.091315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.091315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.091315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.091316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.091316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.091316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.091316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.091316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.101307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.101307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.101307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.101307 LLDP, length 82 [|LLDP] 18:40:00.101307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.101307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 044a b09e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.101307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.101307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.101308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.111314 LLDP, length 82 [|LLDP] 18:40:00.111314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.111314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0452 51be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.111314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.111314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.111314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.111314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.111314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.111314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.121309 LLDP, length 82 [|LLDP] 18:40:00.121309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.121309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0459 f2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.121309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.121309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.121309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.121309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.121309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.121309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.131328 LLDP, length 82 [|LLDP] 18:40:00.131328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.131328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0461 93fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.131328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.131328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.131329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.131329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.131329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.131329 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.131329 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.131329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.131329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.131329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.131329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.131329 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.141319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.141319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.141319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.141319 LLDP, length 82 [|LLDP] 18:40:00.141320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.141320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0469 351e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.141320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.141320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.141320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.141320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.141320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.141320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.141320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.141320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.141320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.151321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.151321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.151321 LLDP, length 82 [|LLDP] 18:40:00.151321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.151321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0470 d63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.151321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.151321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.151321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.151321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.151321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.151321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.151321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.151321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.151321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.151322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.161316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.161317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.161317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.161317 LLDP, length 82 [|LLDP] 18:40:00.161317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.161317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0478 775e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.161317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.161317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.161317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.161317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.161317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.161317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.161317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.161317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.161317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.171330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.171330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.171330 LLDP, length 82 [|LLDP] 18:40:00.171330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.171330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0480 187e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.171330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.171330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.171330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.171330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.171330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.171331 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.171331 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.171331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.171331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.171331 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.181323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.181323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.181323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.181324 LLDP, length 82 [|LLDP] 18:40:00.181324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.181324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0487 b99e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.181324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.181324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.181324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.181324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.181324 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.181324 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.181324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.181324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.181324 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.191314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.191314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.191314 LLDP, length 82 [|LLDP] 18:40:00.191314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.191314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 048f 5abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.191314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.191314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.191314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.191314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.191314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.191314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.191314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.191315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.201309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.201309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.201309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.201309 LLDP, length 82 [|LLDP] 18:40:00.201309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.201309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0496 fbde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.201309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.201309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.201309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.211307 LLDP, length 82 [|LLDP] 18:40:00.211307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.211307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 049e 9cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.211307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.211307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.211307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.211307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.211307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.211307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.221313 LLDP, length 82 [|LLDP] 18:40:00.221313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.221313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04a6 3e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.221313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.221313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.221313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.221313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.221313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.221313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.231321 LLDP, length 82 [|LLDP] 18:40:00.231321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.231321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04ad df3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.231321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.231321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.231321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.231321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.231321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.231321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.231321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.231321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.231321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.231321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.231321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.231322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.241315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.241315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.241315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.241315 LLDP, length 82 [|LLDP] 18:40:00.241315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.241315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04b5 805e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.241316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.241316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.241316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.241316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.241316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.241316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.241316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.241316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.241316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.251316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.251316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.251316 LLDP, length 82 [|LLDP] 18:40:00.251316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.251316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04bd 217e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.251316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.251316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.251317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.251317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.251317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.251317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.251317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.251317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.251317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.251317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.261316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.261316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.261316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.261316 LLDP, length 82 [|LLDP] 18:40:00.261316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.261316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04c4 c29e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.261316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.261316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.261316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.261316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.261316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.261316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.261316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.261317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.261317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.271317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.271317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.271317 LLDP, length 82 [|LLDP] 18:40:00.271317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.271317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04cc 63be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.271317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.271317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.271317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.271317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.271317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.271318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.271318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.271318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.271318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.271318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.281315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.281315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.281315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.281315 LLDP, length 82 [|LLDP] 18:40:00.281315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.281316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04d4 04de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.281316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.281316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.281316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.281316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.281316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.281316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.281316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.281316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.281316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.291312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.291313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.291313 LLDP, length 82 [|LLDP] 18:40:00.291313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.291313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04db a5fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.291313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.291313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.291313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.291313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.291313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.291313 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.291313 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.291313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.301306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.301306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.301306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.301306 LLDP, length 82 [|LLDP] 18:40:00.301306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.301306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04e3 471e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.301306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.301306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.301306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.311306 LLDP, length 82 [|LLDP] 18:40:00.311306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.311306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04ea e83e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.311307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.311307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.311307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.311307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.311307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.311307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.321308 LLDP, length 82 [|LLDP] 18:40:00.321308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.321308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04f2 895e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.321308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.321308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.321308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.321308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.321308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.321309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.331319 LLDP, length 82 [|LLDP] 18:40:00.331319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.331319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04fa 2a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.331319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.331319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.331319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.331319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.331319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.331319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.331320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.331320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.331320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.331320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.331320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.331320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.341317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.341317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.341317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.341317 LLDP, length 82 [|LLDP] 18:40:00.341317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.341317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0501 cb9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.341317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.341317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.341318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.341318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.341318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.341318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.341318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.341318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.341318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.351315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.351315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.351315 LLDP, length 82 [|LLDP] 18:40:00.351315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.351315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0509 6cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.351315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.351315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.351315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.351315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.351315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.351315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.351315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.351316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.351316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.351316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.361315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.361315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.361315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.361315 LLDP, length 82 [|LLDP] 18:40:00.361315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.361315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0511 0dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.361315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.361315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.361315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.361315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.361315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.361315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.361316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.361316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.361316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.371313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.371313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.371313 LLDP, length 82 [|LLDP] 18:40:00.371313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.371313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0518 aefe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.371313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.371314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.371314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.371314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.371314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.371314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.371314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.371314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.371314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.371314 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.381320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.381320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.381320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.381320 LLDP, length 82 [|LLDP] 18:40:00.381320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.381320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0520 501e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.381321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.381321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.381321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.381321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.381321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.381321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.381321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.381321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.381321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.391315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.391315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.391315 LLDP, length 82 [|LLDP] 18:40:00.391315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.391315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0527 f13e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.391315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.391315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.391315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.391315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.391315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.391315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.391316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.391316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.401306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.401306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.401307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.401307 LLDP, length 82 [|LLDP] 18:40:00.401307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.401307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 052f 925e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.401307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.401307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.401307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.411308 LLDP, length 82 [|LLDP] 18:40:00.411308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.411308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0537 337e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.411308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.411309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.411309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.411309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.411309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.411309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.421307 LLDP, length 82 [|LLDP] 18:40:00.421307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.421307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 053e d49e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.421307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.421307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.421307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.421307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.421308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.421308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.431320 LLDP, length 82 [|LLDP] 18:40:00.431320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.431320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0546 75be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.431320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.431320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.431320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.431320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.431320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.431320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.431320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.431320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.431320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.431321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.431321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.431321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.441315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.441315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.441315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.441315 LLDP, length 82 [|LLDP] 18:40:00.441315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.441315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 054e 16de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.441315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.441315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.441315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.441315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.441315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.441315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.441315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.441315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.441316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.451319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.451319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.451319 LLDP, length 82 [|LLDP] 18:40:00.451319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.451319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0555 b7fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.451319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.451319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.451319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.451319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.451320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.451320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.451320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.451320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.451320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.451320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.461312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.461312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.461312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.461312 LLDP, length 82 [|LLDP] 18:40:00.461312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.461313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 055d 591e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.461313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.461313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.461313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.461313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.461313 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.461313 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.461313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.461313 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.461313 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.471312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.471312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.471312 LLDP, length 82 [|LLDP] 18:40:00.471312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.471312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0564 fa3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.471312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.471313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.471313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.471313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.471313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.471313 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.471313 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.471313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.471313 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.471313 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.481312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.481312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.481312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.481312 LLDP, length 82 [|LLDP] 18:40:00.481312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.481312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 056c 9b5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.481312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.481312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.481312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.481312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.481312 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.481312 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.481312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.481313 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.481313 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.491313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.491313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.491313 LLDP, length 82 [|LLDP] 18:40:00.491313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.491313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0574 3c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.491314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.491314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.491314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.491314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.491314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.491314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.491314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.491314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.501306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.501306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.501306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.501306 LLDP, length 82 [|LLDP] 18:40:00.501307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.501307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 057b dd9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.501307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.501307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.501307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.511306 LLDP, length 82 [|LLDP] 18:40:00.511307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.511307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0583 7ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.511307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.511307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.511307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.511307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.511307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.511307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.521308 LLDP, length 82 [|LLDP] 18:40:00.521308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.521308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 058b 1fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.521308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.521308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.521308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.521308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.521308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.521308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.531318 LLDP, length 82 [|LLDP] 18:40:00.531318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.531318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0592 c0fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.531318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.531318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.531318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.531318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.531318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.531318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.531319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.531319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.531319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.531319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.531319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.531319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.541313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.541313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.541313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.541313 LLDP, length 82 [|LLDP] 18:40:00.541313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.541313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 059a 621e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.541313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.541313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.541313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.541313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.541313 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.541314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.541314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.541314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.541314 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.551315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.551315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.551316 LLDP, length 82 [|LLDP] 18:40:00.551316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.551316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05a2 033e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.551316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.551316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.551316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.551316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.551316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.551316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.551316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.551316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.551316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.551316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.561315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.561315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.561315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.561315 LLDP, length 82 [|LLDP] 18:40:00.561315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.561315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05a9 a45e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.561315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.561315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.561315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.561315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.561315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.561315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.561316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.561316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.561316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.571313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.571313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.571313 LLDP, length 82 [|LLDP] 18:40:00.571313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.571313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05b1 457e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.571313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.571314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.571314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.571314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.571314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.571314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.571314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.571314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.571314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.571314 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.581318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.581318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.581318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.581318 LLDP, length 82 [|LLDP] 18:40:00.581318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.581318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05b8 e69e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.581318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.581318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.581318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.581318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.581319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.581319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.581319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.581319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.581319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.591314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.591314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.591314 LLDP, length 82 [|LLDP] 18:40:00.591314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.591314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05c0 87be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.591314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.591314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.591315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.591315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.591315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.591315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.591315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.591315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.601307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.601307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.601307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.601307 LLDP, length 82 [|LLDP] 18:40:00.601307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.601307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05c8 28de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.601307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.601307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.601307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.611307 LLDP, length 82 [|LLDP] 18:40:00.611307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.611307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05cf c9fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.611307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.611307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.611307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.611307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.611307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.611307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.621307 LLDP, length 82 [|LLDP] 18:40:00.621307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.621307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05d7 6b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.621307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.621307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.621307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.621307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.621307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.621307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.631319 LLDP, length 82 [|LLDP] 18:40:00.631319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.631319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05df 0c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.631319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.631319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.631319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.631319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.631319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.631319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.631319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.631319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.631320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.631320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.631320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.631320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.641316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.641316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.641316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.641317 LLDP, length 82 [|LLDP] 18:40:00.641317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.641317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05e6 ad5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.641317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.641317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.641317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.641317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.641317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.641317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.641317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.641317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.641317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.651315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.651315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.651315 LLDP, length 82 [|LLDP] 18:40:00.651315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.651315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05ee 4e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.651315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.651315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.651315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.651316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.651316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.651316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.651316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.651316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.651316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.651316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.661316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.661316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.661316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.661316 LLDP, length 82 [|LLDP] 18:40:00.661316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.661316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05f5 ef9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.661316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.661316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.661316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.661316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.661316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.661316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.661317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.661317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.661317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.671316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.671316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.671316 LLDP, length 82 [|LLDP] 18:40:00.671316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.671316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05fd 90be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.671316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.671316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.671316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.671316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.671316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.671316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.671316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.671317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.671317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.671317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.681323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.681323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.681323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.681323 LLDP, length 82 [|LLDP] 18:40:00.681323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.681323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0605 31de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.681323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.681323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.681323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.681323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.681323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.681323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.681324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.681324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.681324 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.691320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.691320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.691320 LLDP, length 82 [|LLDP] 18:40:00.691320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.691320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 060c d2fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.691320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.691320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.691320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.691320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.691320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.691320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.691320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.691320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.701307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.701307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.701307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.701307 LLDP, length 82 [|LLDP] 18:40:00.701307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.701307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0614 741e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.701307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.701307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.701307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.711317 LLDP, length 82 [|LLDP] 18:40:00.711317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.711317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 061c 153e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.711317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.711317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.711317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.711317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.711317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.711317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.721313 LLDP, length 82 [|LLDP] 18:40:00.721313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.721313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0623 b65e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.721313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.721313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.721313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.721313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.721313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.721313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.731320 LLDP, length 82 [|LLDP] 18:40:00.731320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.731321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 062b 577e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.731321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.731321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.731321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.731321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.731321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.731321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.731321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.731321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.731321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.731321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.731321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.731321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.741315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.741315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.741315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.741315 LLDP, length 82 [|LLDP] 18:40:00.741315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.741315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0632 f89e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.741316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.741316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.741316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.741316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.741316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.741316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.741316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.741316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.741316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.751316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.751316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.751316 LLDP, length 82 [|LLDP] 18:40:00.751316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.751316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 063a 99be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.751316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.751316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.751316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.751316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.751316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.751316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.751316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.751316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.751316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.751317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.761317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.761317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.761317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.761317 LLDP, length 82 [|LLDP] 18:40:00.761317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.761317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0642 3ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.761317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.761317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.761317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.761317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.761317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.761317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.761317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.761318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.761318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.771319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.771319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.771320 LLDP, length 82 [|LLDP] 18:40:00.771320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.771320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0649 dbfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.771320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.771320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.771320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.771320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.771320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.771320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.771320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.771320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.771320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.771320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.781327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.781327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.781327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.781327 LLDP, length 82 [|LLDP] 18:40:00.781327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.781327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0651 7d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.781328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.781328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.781328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.781328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.781328 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.781328 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.781328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.781328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.781328 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.791316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.791316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.791316 LLDP, length 82 [|LLDP] 18:40:00.791316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.791316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0659 1e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.791316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.791316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.791316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.791316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.791316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.791316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.791316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.791316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.801314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.801314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.801314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.801314 LLDP, length 82 [|LLDP] 18:40:00.801314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.801314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0660 bf5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.801314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.801314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.801314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.811308 LLDP, length 82 [|LLDP] 18:40:00.811308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.811308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0668 607e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.811308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.811308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.811308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.811308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.811308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.811308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.821307 LLDP, length 82 [|LLDP] 18:40:00.821307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.821307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0670 019e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.821307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.821308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.821308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.821308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.821308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.821308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.831319 LLDP, length 82 [|LLDP] 18:40:00.831319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.831319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0677 a2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.831319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.831319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.831319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.831319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.831319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.831319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.831320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.831320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.831320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.831320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.831320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.831320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.841315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.841315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.841315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.841315 LLDP, length 82 [|LLDP] 18:40:00.841315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.841315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 067f 43de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.841315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.841315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.841315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.841315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.841315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.841315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.841316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.841316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.841316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.851316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.851316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.851317 LLDP, length 82 [|LLDP] 18:40:00.851317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.851317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0686 e4fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.851317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.851317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.851317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.851317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.851317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.851317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.851317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.851317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.851317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.851317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.861319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.861319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.861319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.861320 LLDP, length 82 [|LLDP] 18:40:00.861320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.861320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 068e 861e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.861320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.861320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.861320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.861320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.861320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.861320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.861320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.861320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.861320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.871322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.871322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.871322 LLDP, length 82 [|LLDP] 18:40:00.871323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.871323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0696 273e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.871323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.871323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.871323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.871323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.871323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.871323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.871323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.871323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.871323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.871323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.881317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.881317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.881318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.881318 LLDP, length 82 [|LLDP] 18:40:00.881318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.881318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 069d c85e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.881318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.881318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.881318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.881318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.881318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.881318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.881318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.881318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.881318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.891318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.891318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.891318 LLDP, length 82 [|LLDP] 18:40:00.891318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.891318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06a5 697e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.891318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.891318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.891318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.891318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.891318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.891318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.891318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.891318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.901308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.901308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.901308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.901308 LLDP, length 82 [|LLDP] 18:40:00.901308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.901308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06ad 0a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.901308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.901308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.901308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.911308 LLDP, length 82 [|LLDP] 18:40:00.911308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.911308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06b4 abbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.911308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.911308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.911308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.911309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.911309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.911309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.921308 LLDP, length 82 [|LLDP] 18:40:00.921308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.921308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06bc 4cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.921308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.921308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.921308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.921308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.921308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.921308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.931328 LLDP, length 82 [|LLDP] 18:40:00.931328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.931328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06c3 edfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.931328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.931328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.931329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.931329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.931329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.931329 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.931329 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.931329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.931329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.931329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.931329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.931329 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.941348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.941348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.941348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.941348 LLDP, length 82 [|LLDP] 18:40:00.941348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.941348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06cb 8f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.941348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.941348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.941348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.941348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.941348 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.941348 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.941349 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.941349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.941349 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.951323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.951323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.951323 LLDP, length 82 [|LLDP] 18:40:00.951323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.951323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06d3 303e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.951323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.951323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.951323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.951323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.951323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.951323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.951323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.951323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.951324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.951324 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.961317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.961317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.961317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.961317 LLDP, length 82 [|LLDP] 18:40:00.961317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.961317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06da d15e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.961317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.961317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.961317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.961318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.961318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.961318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.961318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.961318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.961318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.971319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.971319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.971319 LLDP, length 82 [|LLDP] 18:40:00.971319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.971319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06e2 727e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.971319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.971319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.971319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.971319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.971319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.971319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.971320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.971320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.971320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.971320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.981314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.981315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.981315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.981315 LLDP, length 82 [|LLDP] 18:40:00.981315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.981315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06ea 139e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.981315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.981315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.981315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.981315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.981315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.981315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.981315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.981315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.981315 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.991315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.991315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.991315 LLDP, length 82 [|LLDP] 18:40:00.991315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.991315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06f1 b4be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.991315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.991315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.991315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.991316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.991316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.991316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.991316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.991316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.001307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.001307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.001307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.001307 LLDP, length 82 [|LLDP] 18:40:01.001307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.001307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06f9 55de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.001308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.001308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.001308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.011307 LLDP, length 82 [|LLDP] 18:40:01.011307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.011308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0700 f6fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.011308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.011308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.011308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.011308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.011308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.011308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.021307 LLDP, length 82 [|LLDP] 18:40:01.021307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.021307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0708 981e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.021308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.021308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.021308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.021308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.021308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.021308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.031341 LLDP, length 82 [|LLDP] 18:40:01.031341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.031341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0710 393e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.031341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.031341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.031341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.031341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.031341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.031341 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.031341 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.031342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.031342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.031342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.031342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.031342 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.041313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.041314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.041314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.041314 LLDP, length 82 [|LLDP] 18:40:01.041314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.041314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0717 da5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.041314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.041314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.041314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.041314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.041314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.041314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.041314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.041314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.041314 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.051315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.051315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.051315 LLDP, length 82 [|LLDP] 18:40:01.051315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.051315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 071f 7b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.051315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.051315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.051315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.051315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.051315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.051316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.051316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.051316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.051316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.051316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.061316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.061316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.061316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.061316 LLDP, length 82 [|LLDP] 18:40:01.061316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.061316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0727 1c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.061316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.061316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.061316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.061316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.061316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.061317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.061317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.061317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.061317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.071314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.071314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.071314 LLDP, length 82 [|LLDP] 18:40:01.071314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.071314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 072e bdbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.071314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.071314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.071315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.071315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.071315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.071315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.071315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.071315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.071315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.071315 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.081317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.081318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.081318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.081318 LLDP, length 82 [|LLDP] 18:40:01.081318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.081318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0736 5ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.081318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.081318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.081318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.081318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.081318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.081318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.081318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.081318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.081318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.091316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.091317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.091317 LLDP, length 82 [|LLDP] 18:40:01.091317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.091317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 073d fffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.091317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.091317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.091317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.091317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.091317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.091317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.091317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.091317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.101307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.101307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.101307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.101307 LLDP, length 82 [|LLDP] 18:40:01.101307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.101307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0745 a11e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.101307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.101307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.101307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.111306 LLDP, length 82 [|LLDP] 18:40:01.111306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.111306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 074d 423e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.111306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.111306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.111306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.111306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.111306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.111306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.121307 LLDP, length 82 [|LLDP] 18:40:01.121307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.121307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0754 e35e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.121307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.121307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.121307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.121308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.121308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.121308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.131319 LLDP, length 82 [|LLDP] 18:40:01.131319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.131319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 075c 847e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.131319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.131319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.131319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.131319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.131319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.131320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.131320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.131320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.131320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.131320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.131320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.131320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.141318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.141318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.141318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.141318 LLDP, length 82 [|LLDP] 18:40:01.141318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.141318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0764 259e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.141318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.141318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.141318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.141318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.141318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.141319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.141319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.141319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.141319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.151315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.151315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.151316 LLDP, length 82 [|LLDP] 18:40:01.151316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.151316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 076b c6be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.151316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.151316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.151316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.151316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.151316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.151316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.151316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.151316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.151316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.151316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.161338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.161338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.161338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.161338 LLDP, length 82 [|LLDP] 18:40:01.161338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.161338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0773 67de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.161338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.161338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.161338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.161338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.161339 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.161339 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.161339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.161339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.161339 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.171324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.171324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.171324 LLDP, length 82 [|LLDP] 18:40:01.171324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.171324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 077b 08fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.171324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.171324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.171324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.171324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.171324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.171324 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.171325 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.171325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.171325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.171325 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.181318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.181318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.181318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.181318 LLDP, length 82 [|LLDP] 18:40:01.181318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.181318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0782 aa1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.181318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.181318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.181319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.181319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.181319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.181319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.181319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.181319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.181319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.191426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.191426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.191426 LLDP, length 82 [|LLDP] 18:40:01.191426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.191426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 078a 4b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.191426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.191426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.191426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.191426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.191426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.191427 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.191427 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.191427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.201307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.201307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.201307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.201307 LLDP, length 82 [|LLDP] 18:40:01.201307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.201307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0791 ec5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.201307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.201308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.201308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.211308 LLDP, length 82 [|LLDP] 18:40:01.211308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.211308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0799 8d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.211308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.211308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.211308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.211308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.211308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.211308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.221309 LLDP, length 82 [|LLDP] 18:40:01.221309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.221309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07a1 2e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.221309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.221309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.221309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.221309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.221309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.221309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.231320 LLDP, length 82 [|LLDP] 18:40:01.231320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.231320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07a8 cfbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.231320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.231321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.231321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.231321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.231321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.231321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.231321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.231321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.231321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.231321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.231321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.231321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.241314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.241314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.241315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.241315 LLDP, length 82 [|LLDP] 18:40:01.241315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.241315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07b0 70de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.241315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.241315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.241315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.241315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.241315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.241315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.241315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.241315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.241315 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.251319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.251320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.251320 LLDP, length 82 [|LLDP] 18:40:01.251320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.251320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07b8 11fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.251320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.251320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.251320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.251320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.251320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.251320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.251320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.251320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.251320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.251320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.261313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.261313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.261314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.261314 LLDP, length 82 [|LLDP] 18:40:01.261314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.261314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07bf b31e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.261314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.261314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.261314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.261314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.261314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.261314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.261314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.261314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.261314 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.271316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.271316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.271316 LLDP, length 82 [|LLDP] 18:40:01.271316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.271316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07c7 543e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.271317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.271317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.271317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.271317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.271317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.271317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.271317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.271317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.271317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.271317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.281314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.281314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.281314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.281315 LLDP, length 82 [|LLDP] 18:40:01.281315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.281315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07ce f55e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.281315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.281315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.281315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.281315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.281315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.281315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.281315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.281315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.281315 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.291313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.291313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.291313 LLDP, length 82 [|LLDP] 18:40:01.291313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.291314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07d6 967e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.291314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.291314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.291314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.291314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.291314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.291314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.291314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.291314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.301305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.301306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.301306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.301306 LLDP, length 82 [|LLDP] 18:40:01.301306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.301306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07de 379e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.301306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.301306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.301306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.311305 LLDP, length 82 [|LLDP] 18:40:01.311305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.311305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07e5 d8be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.311305 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.311305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.311305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.311305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.311306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.311306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.321308 LLDP, length 82 [|LLDP] 18:40:01.321308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.321308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07ed 79de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.321308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.321308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.321308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.321308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.321308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.321308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.331321 LLDP, length 82 [|LLDP] 18:40:01.331321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.331321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07f5 1afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.331321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.331321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.331322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.331322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.331322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.331322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.331322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.331322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.331322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.331322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.331322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.331322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.341316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.341316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.341316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.341317 LLDP, length 82 [|LLDP] 18:40:01.341317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.341317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07fc bc1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.341317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.341317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.341317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.341317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.341317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.341317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.341317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.341317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.341317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.351315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.351315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.351315 LLDP, length 82 [|LLDP] 18:40:01.351315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.351315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0804 5d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.351315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.351315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.351315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.351315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.351315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.351315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.351315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.351315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.351316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.351316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.361313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.361313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.361313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.361313 LLDP, length 82 [|LLDP] 18:40:01.361313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.361313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 080b fe5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.361314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.361314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.361314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.361314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.361314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.361314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.361314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.361314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.361314 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.371314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.371314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.371314 LLDP, length 82 [|LLDP] 18:40:01.371314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.371314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0813 9f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.371314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.371314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.371314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.371315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.371315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.371315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.371315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.371315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.371315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.371315 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.381313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.381313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.381313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.381314 LLDP, length 82 [|LLDP] 18:40:01.381314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.381314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 081b 409e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.381314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.381314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.381314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.381314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.381314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.381314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.381314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.381314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.381314 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.391324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.391324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.391324 LLDP, length 82 [|LLDP] 18:40:01.391324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.391324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0822 e1be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.391324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.391324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.391325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.391325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.391325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.391325 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.391325 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.391325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.401336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.401336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.401336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.401336 LLDP, length 82 [|LLDP] 18:40:01.401336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.401336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 082a 82de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.401336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.401336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.401337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.411332 LLDP, length 82 [|LLDP] 18:40:01.411332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.411332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0832 23fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.411332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.411332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.411333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.411333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.411333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.411333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.421306 LLDP, length 82 [|LLDP] 18:40:01.421306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.421306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0839 c51e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.421306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.421306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.421306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.421306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.421307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.421307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.431334 LLDP, length 82 [|LLDP] 18:40:01.431334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.431334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0841 663e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.431334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.431334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.431334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.431334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.431335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.431335 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.431335 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.431335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.431335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.431335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.431335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.431335 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.441321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.441321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.441321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.441322 LLDP, length 82 [|LLDP] 18:40:01.441322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.441322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0849 075e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.441322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.441322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.441322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.441322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.441322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.441322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.441322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.441322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.441322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.451319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.451319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.451319 LLDP, length 82 [|LLDP] 18:40:01.451319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.451319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0850 a87e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.451319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.451319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.451319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.451319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.451320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.451320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.451320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.451320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.451320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.451320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.461319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.461319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.461319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.461319 LLDP, length 82 [|LLDP] 18:40:01.461319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.461320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0858 499e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.461320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.461320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.461320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.461320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.461320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.461320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.461320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.461320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.461320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.471316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.471316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.471316 LLDP, length 82 [|LLDP] 18:40:01.471316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.471316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 085f eabe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.471316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.471316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.471316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.471316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.471316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.471316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.471316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.471317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.471317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.471317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.481316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.481316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.481316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.481316 LLDP, length 82 [|LLDP] 18:40:01.481316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.481316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0867 8bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.481316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.481316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.481317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.481317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.481317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.481317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.481317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.481317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.481317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.491314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.491314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.491314 LLDP, length 82 [|LLDP] 18:40:01.491314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.491314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 086f 2cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.491315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.491315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.491315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.491315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.491315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.491315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.491315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.491315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.501308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.501309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.501309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.501309 LLDP, length 82 [|LLDP] 18:40:01.501309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.501309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0876 ce1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.501309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.501309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.501309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.511311 LLDP, length 82 [|LLDP] 18:40:01.511311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.511311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 087e 6f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.511311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.511311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.511311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.511311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.511311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.511311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.521309 LLDP, length 82 [|LLDP] 18:40:01.521309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.521310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0886 105e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.521310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.521310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.521310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.521310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.521310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.521310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.531319 LLDP, length 82 [|LLDP] 18:40:01.531320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.531320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 088d b17e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.531320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.531320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.531320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.531320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.531320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.531320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.531320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.531320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.531320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.531320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.531320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.531320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.541318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.541319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.541319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.541319 LLDP, length 82 [|LLDP] 18:40:01.541319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.541319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0895 529e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.541319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.541319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.541319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.541319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.541319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.541319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.541319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.541319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.541319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.551326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.551326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.551326 LLDP, length 82 [|LLDP] 18:40:01.551326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.551326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 089c f3be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.551326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.551326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.551326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.551327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.551327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.551327 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.551327 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.551327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.551327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.551327 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.561317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.561317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.561318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.561318 LLDP, length 82 [|LLDP] 18:40:01.561318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.561318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08a4 94de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.561318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.561318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.561318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.561318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.561318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.561318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.561318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.561318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.561318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.571317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.571317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.571317 LLDP, length 82 [|LLDP] 18:40:01.571317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.571317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08ac 35fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.571317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.571317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.571317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.571317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.571317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.571317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.571317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.571318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.571318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.571318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.581314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.581314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.581315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.581315 LLDP, length 82 [|LLDP] 18:40:01.581315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.581315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08b3 d71e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.581315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.581315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.581315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.581315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.581315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.581315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.581315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.581315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.581315 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.591315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.591315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.591315 LLDP, length 82 [|LLDP] 18:40:01.591315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.591315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08bb 783e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.591315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.591315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.591315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.591315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.591315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.591315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.591315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.591315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.601309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.601309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.601309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.601309 LLDP, length 82 [|LLDP] 18:40:01.601309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.601309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08c3 195e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.601309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.601309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.601309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.611308 LLDP, length 82 [|LLDP] 18:40:01.611308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.611308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08ca ba7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.611309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.611309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.611309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.611309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.611309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.611309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.621306 LLDP, length 82 [|LLDP] 18:40:01.621306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.621306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08d2 5b9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.621306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.621307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.621307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.621307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.621307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.621307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.631321 LLDP, length 82 [|LLDP] 18:40:01.631322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.631322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08d9 fcbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.631322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.631322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.631322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.631322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.631322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.631322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.631322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.631322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.631322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.631322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.631322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.631322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.641316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.641316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.641316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.641316 LLDP, length 82 [|LLDP] 18:40:01.641316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.641316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08e1 9dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.641317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.641317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.641317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.641317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.641317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.641317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.641317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.641317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.641317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.651319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.651319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.651319 LLDP, length 82 [|LLDP] 18:40:01.651319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.651319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08e9 3efe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.651319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.651319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.651319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.651319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.651319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.651319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.651319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.651320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.651320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.651320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.661317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.661317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.661317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.661317 LLDP, length 82 [|LLDP] 18:40:01.661317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.661317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08f0 e01e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.661317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.661317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.661317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.661317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.661317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.661317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.661317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.661317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.661318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.671318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.671318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.671318 LLDP, length 82 [|LLDP] 18:40:01.671318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.671318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08f8 813e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.671318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.671318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.671318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.671319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.671319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.671319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.671319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.671319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.671319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.671319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.681315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.681315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.681315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.681315 LLDP, length 82 [|LLDP] 18:40:01.681315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.681316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0900 225e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.681316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.681316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.681316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.681316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.681316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.681316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.681316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.681316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.681316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.691314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.691314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.691314 LLDP, length 82 [|LLDP] 18:40:01.691314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.691314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0907 c37e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.691314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.691314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.691314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.691314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.691314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.691314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.691314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.691315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.701307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.701307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.701307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.701307 LLDP, length 82 [|LLDP] 18:40:01.701307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.701307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 090f 649e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.701307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.701307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.701307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.711322 LLDP, length 82 [|LLDP] 18:40:01.711322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.711322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0917 05be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.711322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.711322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.711322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.711322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.711322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.711322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.721309 LLDP, length 82 [|LLDP] 18:40:01.721309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.721309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 091e a6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.721309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.721309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.721309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.721309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.721309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.721310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.731322 LLDP, length 82 [|LLDP] 18:40:01.731322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.731322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0926 47fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.731322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.731323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.731323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.731323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.731323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.731323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.731323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.731323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.731323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.731323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.731323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.731323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.741318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.741318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.741318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.741319 LLDP, length 82 [|LLDP] 18:40:01.741319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.741319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 092d e91e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.741319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.741319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.741319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.741319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.741319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.741319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.741319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.741319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.741319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.751319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.751319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.751319 LLDP, length 82 [|LLDP] 18:40:01.751319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.751319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0935 8a3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.751319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.751320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.751320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.751320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.751320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.751320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.751320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.751320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.751320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.751320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.761319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.761319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.761319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.761319 LLDP, length 82 [|LLDP] 18:40:01.761319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.761319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 093d 2b5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.761319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.761319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.761319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.761319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.761320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.761320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.761320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.761320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.761320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.771318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.771318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.771318 LLDP, length 82 [|LLDP] 18:40:01.771318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.771318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0944 cc7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.771319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.771319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.771319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.771319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.771319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.771319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.771319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.771319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.771319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.771319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.781319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.781319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.781319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.781319 LLDP, length 82 [|LLDP] 18:40:01.781319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.781319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 094c 6d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.781320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.781320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.781320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.781320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.781320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.781320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.781320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.781320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.781320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.791315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.791315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.791315 LLDP, length 82 [|LLDP] 18:40:01.791315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.791315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0954 0ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.791315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.791315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.791315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.791315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.791315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.791315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.791316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.791316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.801307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.801307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.801307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.801307 LLDP, length 82 [|LLDP] 18:40:01.801307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.801307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 095b afde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.801308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.801308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.801308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.811307 LLDP, length 82 [|LLDP] 18:40:01.811307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.811307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0963 50fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.811307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.811307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.811308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.811308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.811308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.811308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.821308 LLDP, length 82 [|LLDP] 18:40:01.821308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.821308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 096a f21e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.821308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.821309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.821309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.821309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.821309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.821309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.831319 LLDP, length 82 [|LLDP] 18:40:01.831319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.831319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0972 933e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.831319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.831319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.831319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.831319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.831319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.831319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.831319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.831319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.831319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.831319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.831319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.831320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.841318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.841318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.841318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.841319 LLDP, length 82 [|LLDP] 18:40:01.841319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.841319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 097a 345e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.841319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.841319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.841319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.841319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.841319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.841319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.841319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.841319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.841319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.851326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.851326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.851326 LLDP, length 82 [|LLDP] 18:40:01.851326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.851326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0981 d57e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.851326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.851326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.851326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.851326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.851326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.851326 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.851326 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.851326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.851327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.851327 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.861318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.861318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.861319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.861319 LLDP, length 82 [|LLDP] 18:40:01.861319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.861319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0989 769e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.861319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.861319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.861319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.861319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.861319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.861319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.861319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.861319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.861319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.871319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.871319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.871319 LLDP, length 82 [|LLDP] 18:40:01.871319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.871319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0991 17be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.871319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.871319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.871319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.871320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.871320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.871320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.871320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.871320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.871320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.871320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.881316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.881316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.881316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.881317 LLDP, length 82 [|LLDP] 18:40:01.881317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.881317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0998 b8de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.881317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.881317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.881317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.881317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.881317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.881317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.881317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.881317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.881317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.891314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.891314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.891314 LLDP, length 82 [|LLDP] 18:40:01.891315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.891315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09a0 59fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.891315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.891315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.891315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.891315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.891315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.891315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.891315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.891315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.901310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.901310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.901310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.901310 LLDP, length 82 [|LLDP] 18:40:01.901310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.901310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09a7 fb1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.901310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.901310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.901310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.911311 LLDP, length 82 [|LLDP] 18:40:01.911311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.911311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09af 9c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.911311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.911311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.911311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.911311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.911312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.911312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.921308 LLDP, length 82 [|LLDP] 18:40:01.921308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.921308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09b7 3d5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.921308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.921308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.921308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.921308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.921309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.921309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.931321 LLDP, length 82 [|LLDP] 18:40:01.931322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.931322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09be de7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.931322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.931322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.931322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.931322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.931322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.931322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.931322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.931322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.931322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.931323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.931323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.931323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.941318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.941319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.941319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.941319 LLDP, length 82 [|LLDP] 18:40:01.941319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.941319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09c6 7f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.941319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.941319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.941319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.941319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.941319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.941319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.941319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.941319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.941319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.951317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.951318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.951318 LLDP, length 82 [|LLDP] 18:40:01.951318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.951318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09ce 20be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.951318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.951318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.951318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.951318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.951318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.951318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.951318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.951318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.951318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.951318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.961320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.961320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.961320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.961321 LLDP, length 82 [|LLDP] 18:40:01.961321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.961321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09d5 c1de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.961321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.961321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.961321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.961321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.961321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.961321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.961321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.961321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.961321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.971319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.971319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.971319 LLDP, length 82 [|LLDP] 18:40:01.971319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.971320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09dd 62fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.971320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.971320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.971320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.971320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.971320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.971320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.971320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.971320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.971320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.971320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.981317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.981317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.981318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.981318 LLDP, length 82 [|LLDP] 18:40:01.981318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.981318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09e5 041e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.981318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.981318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.981318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.981318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.981318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.981318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.981318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.981318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.981318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.991317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.991317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.991317 LLDP, length 82 [|LLDP] 18:40:01.991317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.991317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09ec a53e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.991317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.991317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.991317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.991317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.991318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.991318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.991318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.991318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.001309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.001309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.001309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.001309 LLDP, length 82 [|LLDP] 18:40:02.001309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.001309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09f4 465e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.001309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.001309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.001309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.011307 LLDP, length 82 [|LLDP] 18:40:02.011307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.011307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09fb e77e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.011307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.011307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.011307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.011307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.011307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.011307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.021308 LLDP, length 82 [|LLDP] 18:40:02.021309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.021309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a03 889e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.021309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.021309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.021309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.021309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.021309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.021309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.031319 LLDP, length 82 [|LLDP] 18:40:02.031319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.031319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a0b 29be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.031319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.031320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.031320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.031320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.031320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.031320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.031320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.031320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.031320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.031320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.031320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.031320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.041320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.041320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.041320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.041320 LLDP, length 82 [|LLDP] 18:40:02.041320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.041320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a12 cade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.041320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.041320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.041320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.041320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.041321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.041321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.041321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.041321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.041321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.051316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.051316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.051317 LLDP, length 82 [|LLDP] 18:40:02.051317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.051317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a1a 6bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.051317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.051317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.051317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.051317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.051317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.051317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.051317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.051317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.051317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.051317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.061315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.061315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.061315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.061315 LLDP, length 82 [|LLDP] 18:40:02.061315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.061315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a22 0d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.061315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.061315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.061316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.061316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.061316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.061316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.061316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.061316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.061316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.071314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.071314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.071314 LLDP, length 82 [|LLDP] 18:40:02.071314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.071314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a29 ae3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.071315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.071315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.071315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.071315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.071315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.071315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.071315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.071315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.071315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.071315 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.081320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.081320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.081320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.081320 LLDP, length 82 [|LLDP] 18:40:02.081320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.081320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a31 4f5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.081320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.081320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.081320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.081320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.081320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.081320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.081320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.081321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.081321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.091315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.091315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.091315 LLDP, length 82 [|LLDP] 18:40:02.091315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.091315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a38 f07e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.091315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.091316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.091316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.091316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.091316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.091316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.091316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.091316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.101308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.101309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.101309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.101309 LLDP, length 82 [|LLDP] 18:40:02.101309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.101309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a40 919e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.101309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.101309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.101309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.111308 LLDP, length 82 [|LLDP] 18:40:02.111308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.111308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a48 32be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.111309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.111309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.111309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.111309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.111309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.111309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.121309 LLDP, length 82 [|LLDP] 18:40:02.121309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.121309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a4f d3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.121309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.121309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.121309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.121309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.121309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.121309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.131326 LLDP, length 82 [|LLDP] 18:40:02.131326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.131326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a57 74fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.131326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.131326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.131326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.131326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.131326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.131326 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.131326 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.131326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.131326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.131326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.131327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.131327 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.141336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.141336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.141336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.141336 LLDP, length 82 [|LLDP] 18:40:02.141336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.141336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a5f 161e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.141336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.141337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.141337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.141337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.141337 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.141337 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.141337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.141337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.141337 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.151317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.151318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.151318 LLDP, length 82 [|LLDP] 18:40:02.151318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.151318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a66 b73e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.151318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.151318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.151318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.151318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.151318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.151318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.151318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.151318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.151318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.151318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.161318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.161318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.161318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.161318 LLDP, length 82 [|LLDP] 18:40:02.161318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.161318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a6e 585e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.161318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.161319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.161319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.161319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.161319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.161319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.161319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.161319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.161319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.171319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.171319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.171319 LLDP, length 82 [|LLDP] 18:40:02.171319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.171319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a75 f97e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.171319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.171319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.171320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.171320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.171320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.171320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.171320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.171320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.171320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.171320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.181316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.181316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.181316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.181316 LLDP, length 82 [|LLDP] 18:40:02.181316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.181316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a7d 9a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.181316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.181316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.181316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.181316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.181316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.181316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.181317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.181317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.181317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.191313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.191313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.191313 LLDP, length 82 [|LLDP] 18:40:02.191313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.191313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a85 3bbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.191313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.191313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.191314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.191314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.191314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.191314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.191314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.191314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.201316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.201316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.201316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.201316 LLDP, length 82 [|LLDP] 18:40:02.201316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.201316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a8c dcde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.201316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.201316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.201316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.211307 LLDP, length 82 [|LLDP] 18:40:02.211307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.211307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a94 7dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.211307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.211307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.211307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.211307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.211307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.211307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.221308 LLDP, length 82 [|LLDP] 18:40:02.221308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.221309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a9c 1f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.221309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.221309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.221309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.221309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.221309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.221309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.231321 LLDP, length 82 [|LLDP] 18:40:02.231321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.231321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aa3 c03e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.231321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.231321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.231322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.231322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.231322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.231322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.231322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.231322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.231322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.231322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.231322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.231322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.241318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.241318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.241318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.241318 LLDP, length 82 [|LLDP] 18:40:02.241318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.241318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aab 615e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.241319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.241319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.241319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.241319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.241319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.241319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.241319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.241319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.241319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.251318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.251318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.251318 LLDP, length 82 [|LLDP] 18:40:02.251318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.251318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ab3 027e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.251318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.251318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.251318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.251318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.251318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.251318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.251318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.251318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.251319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.251319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.261314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.261314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.261314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.261314 LLDP, length 82 [|LLDP] 18:40:02.261314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.261314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aba a39e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.261315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.261315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.261315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.261315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.261315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.261315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.261315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.261315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.261315 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.271315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.271315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.271315 LLDP, length 82 [|LLDP] 18:40:02.271315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.271315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ac2 44be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.271316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.271316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.271316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.271316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.271316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.271316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.271316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.271316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.271316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.271316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.281320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.281320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.281320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.281320 LLDP, length 82 [|LLDP] 18:40:02.281320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.281320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ac9 e5de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.281320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.281320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.281320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.281320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.281320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.281320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.281321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.281321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.281321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.291316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.291316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.291316 LLDP, length 82 [|LLDP] 18:40:02.291316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.291316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ad1 86fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.291316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.291316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.291316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.291316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.291316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.291316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.291317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.291317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.301307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.301307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.301307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.301307 LLDP, length 82 [|LLDP] 18:40:02.301307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.301307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ad9 281e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.301308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.301308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.301308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.311306 LLDP, length 82 [|LLDP] 18:40:02.311306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.311306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ae0 c93e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.311306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.311306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.311307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.311307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.311307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.311307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.321305 LLDP, length 82 [|LLDP] 18:40:02.321305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.321305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ae8 6a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.321306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.321306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.321306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.321306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.321306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.321306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.331321 LLDP, length 82 [|LLDP] 18:40:02.331321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.331321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0af0 0b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.331321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.331321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.331321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.331321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.331321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.331321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.331321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.331321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.331321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.331321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.331322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.331322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.341318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.341318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.341318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.341318 LLDP, length 82 [|LLDP] 18:40:02.341318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.341318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0af7 ac9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.341318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.341318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.341318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.341318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.341318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.341318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.341318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.341318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.341319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.351317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.351317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.351317 LLDP, length 82 [|LLDP] 18:40:02.351317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.351317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aff 4dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.351317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.351317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.351317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.351317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.351317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.351318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.351318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.351318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.351318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.351318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.361322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.361322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.361322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.361322 LLDP, length 82 [|LLDP] 18:40:02.361322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.361322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b06 eede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.361322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.361322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.361322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.361322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.361322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.361322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.361322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.361323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.361323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.371319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.371319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.371319 LLDP, length 82 [|LLDP] 18:40:02.371319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.371319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b0e 8ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.371319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.371319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.371319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.371320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.371320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.371320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.371320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.371320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.371320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.371320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.381317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.381317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.381317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.381317 LLDP, length 82 [|LLDP] 18:40:02.381318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.381318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b16 311e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.381318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.381318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.381318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.381318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.381318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.381318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.381318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.381318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.381318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.391317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.391317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.391317 LLDP, length 82 [|LLDP] 18:40:02.391317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.391317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b1d d23e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.391317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.391317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.391317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.391317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.391317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.391317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.391317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.391318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.401310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.401310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.401311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.401311 LLDP, length 82 [|LLDP] 18:40:02.401311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.401311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b25 735e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.401311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.401311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.401311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.411307 LLDP, length 82 [|LLDP] 18:40:02.411308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.411308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b2d 147e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.411308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.411308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.411308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.411308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.411308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.411308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.421310 LLDP, length 82 [|LLDP] 18:40:02.421310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.421310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b34 b59e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.421310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.421310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.421310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.421310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.421310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.421310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.431320 LLDP, length 82 [|LLDP] 18:40:02.431320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.431320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b3c 56be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.431320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.431321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.431321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.431321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.431321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.431321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.431321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.431321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.431321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.431321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.431321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.431321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.441320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.441320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.441320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.441320 LLDP, length 82 [|LLDP] 18:40:02.441320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.441320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b43 f7de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.441320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.441320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.441321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.441321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.441321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.441321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.441321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.441321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.441321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.451322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.451322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.451322 LLDP, length 82 [|LLDP] 18:40:02.451322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.451322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b4b 98fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.451322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.451322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.451323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.451323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.451323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.451323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.451323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.451323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.451323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.451323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.461334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.461334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.461334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.461334 LLDP, length 82 [|LLDP] 18:40:02.461334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.461334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b53 3a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.461334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.461334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.461334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.461334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.461334 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.461335 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.461335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.461335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.461335 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.471327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.471327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.471327 LLDP, length 82 [|LLDP] 18:40:02.471327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.471327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b5a db3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.471327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.471327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.471327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.471327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.471327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.471327 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.471327 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.471328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.471328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.471328 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.481320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.481321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.481321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.481321 LLDP, length 82 [|LLDP] 18:40:02.481321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.481321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b62 7c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.481321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.481321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.481321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.481321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.481321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.481321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.481321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.481321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.481321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.491319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.491319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.491319 LLDP, length 82 [|LLDP] 18:40:02.491319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.491319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b6a 1d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.491319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.491319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.491319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.491319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.491319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.491319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.491319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.491320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.501312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.501312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.501312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.501312 LLDP, length 82 [|LLDP] 18:40:02.501312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.501312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b71 be9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.501312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.501312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.501312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.511310 LLDP, length 82 [|LLDP] 18:40:02.511310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.511310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b79 5fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.511311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.511311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.511311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.511311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.511311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.511311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.521310 LLDP, length 82 [|LLDP] 18:40:02.521310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.521310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b81 00de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.521310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.521310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.521310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.521310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.521310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.521310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.531323 LLDP, length 82 [|LLDP] 18:40:02.531323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.531323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b88 a1fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.531323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.531323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.531323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.531323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.531323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.531324 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.531324 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.531324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.531324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.531324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.531324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.531324 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.541319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.541319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.541319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.541319 LLDP, length 82 [|LLDP] 18:40:02.541319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.541319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b90 431e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.541319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.541319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.541319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.541319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.541320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.541320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.541320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.541320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.541320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.551322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.551322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.551322 LLDP, length 82 [|LLDP] 18:40:02.551322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.551322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b97 e43e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.551323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.551323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.551323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.551323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.551323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.551323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.551323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.551323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.551323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.551323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.561318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.561318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.561318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.561318 LLDP, length 82 [|LLDP] 18:40:02.561318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.561318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b9f 855e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.561318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.561318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.561318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.561318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.561318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.561318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.561319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.561319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.561319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.571326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.571326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.571326 LLDP, length 82 [|LLDP] 18:40:02.571326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.571326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ba7 267e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.571326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.571326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.571326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.571326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.571326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.571327 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.571327 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.571327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.571327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.571327 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.581315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.581315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.581315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.581315 LLDP, length 82 [|LLDP] 18:40:02.581315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.581315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bae c79e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.581315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.581316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.581316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.581316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.581316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.581316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.581316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.581316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.581316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.591315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.591315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.591315 LLDP, length 82 [|LLDP] 18:40:02.591315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.591315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bb6 68be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.591315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.591315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.591315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.591315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.591315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.591316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.591316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.591316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.601310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.601310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.601310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.601310 LLDP, length 82 [|LLDP] 18:40:02.601310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.601310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bbe 09de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.601310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.601310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.601310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.611309 LLDP, length 82 [|LLDP] 18:40:02.611309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.611309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bc5 aafe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.611310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.611310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.611310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.611310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.611310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.611310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.621307 LLDP, length 82 [|LLDP] 18:40:02.621308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.621308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bcd 4c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.621308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.621308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.621308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.621308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.621308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.621308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.631321 LLDP, length 82 [|LLDP] 18:40:02.631322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.631322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bd4 ed3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.631322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.631322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.631322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.631322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.631322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.631322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.631322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.631322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.631322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.631322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.631322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.631322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.641322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.641322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.641322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.641323 LLDP, length 82 [|LLDP] 18:40:02.641323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.641323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bdc 8e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.641323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.641323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.641323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.641323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.641323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.641323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.641323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.641323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.641323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.651322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.651322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.651322 LLDP, length 82 [|LLDP] 18:40:02.651322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.651322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0be4 2f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.651322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.651323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.651323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.651323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.651323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.651323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.651323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.651323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.651323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.651323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.661320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.661321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.661321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.661321 LLDP, length 82 [|LLDP] 18:40:02.661321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.661321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0beb d09e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.661321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.661321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.661321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.661321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.661321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.661321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.661321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.661321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.661322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.671320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.671321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.671321 LLDP, length 82 [|LLDP] 18:40:02.671321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.671321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bf3 71be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.671321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.671321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.671321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.671321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.671321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.671321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.671321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.671321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.671321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.671321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.681320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.681320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.681320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.681320 LLDP, length 82 [|LLDP] 18:40:02.681320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.681320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bfb 12de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.681320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.681320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.681320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.681321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.681321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.681321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.681321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.681321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.681321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.691315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.691315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.691315 LLDP, length 82 [|LLDP] 18:40:02.691315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.691315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c02 b3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.691315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.691315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.691315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.691316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.691316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.691316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.691316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.691316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.701309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.701309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.701309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.701309 LLDP, length 82 [|LLDP] 18:40:02.701309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.701309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c0a 551e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.701309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.701309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.701309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.711314 LLDP, length 82 [|LLDP] 18:40:02.711314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.711315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c11 f63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.711315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.711315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.711315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.711315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.711315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.711315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.721313 LLDP, length 82 [|LLDP] 18:40:02.721313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.721313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c19 975e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.721313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.721313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.721313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.721313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.721313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.721313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.731325 LLDP, length 82 [|LLDP] 18:40:02.731325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.731325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c21 387e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.731325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.731325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.731325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.731325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.731326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.731326 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.731326 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.731326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.731326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.731326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.731326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.731326 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.741319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.741319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.741319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.741319 LLDP, length 82 [|LLDP] 18:40:02.741319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.741319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c28 d99e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.741319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.741319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.741319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.741319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.741320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.741320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.741320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.741320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.741320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.751317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.751317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.751317 LLDP, length 82 [|LLDP] 18:40:02.751317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.751317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c30 7abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.751317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.751317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.751317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.751317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.751317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.751317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.751317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.751318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.751318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.751318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.761319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.761319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.761319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.761319 LLDP, length 82 [|LLDP] 18:40:02.761319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.761319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c38 1bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.761320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.761320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.761320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.761320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.761320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.761320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.761320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.761320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.761320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.771315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.771315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.771315 LLDP, length 82 [|LLDP] 18:40:02.771316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.771316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c3f bcfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.771316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.771316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.771316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.771316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.771316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.771316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.771316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.771316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.771316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.771316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.781321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.781321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.781321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.781321 LLDP, length 82 [|LLDP] 18:40:02.781321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.781321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c47 5e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.781321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.781321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.781321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.781322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.781322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.781322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.781322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.781322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.781322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.791316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.791316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.791316 LLDP, length 82 [|LLDP] 18:40:02.791316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.791316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c4e ff3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.791316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.791317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.791317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.791317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.791317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.791317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.791317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.791317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.801310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.801310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.801310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.801310 LLDP, length 82 [|LLDP] 18:40:02.801310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.801310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c56 a05e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.801310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.801310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.801310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.811310 LLDP, length 82 [|LLDP] 18:40:02.811310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.811310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c5e 417e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.811310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.811310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.811310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.811310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.811310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.811310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.821310 LLDP, length 82 [|LLDP] 18:40:02.821310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.821310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c65 e29e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.821310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.821310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.821310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.821310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.821310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.821310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.831320 LLDP, length 82 [|LLDP] 18:40:02.831320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.831320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c6d 83be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.831320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.831321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.831321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.831321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.831321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.831321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.831321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.831321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.831321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.831321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.831321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.831321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.841317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.841317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.841317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.841317 LLDP, length 82 [|LLDP] 18:40:02.841317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.841318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c75 24de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.841318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.841318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.841318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.841318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.841318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.841318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.841318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.841318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.841318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.851318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.851318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.851318 LLDP, length 82 [|LLDP] 18:40:02.851318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.851318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c7c c5fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.851318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.851318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.851319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.851319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.851319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.851319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.851319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.851319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.851319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.851319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.861321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.861321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.861321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.861321 LLDP, length 82 [|LLDP] 18:40:02.861321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.861321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c84 671e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.861321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.861321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.861321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.861321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.861322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.861322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.861322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.861322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.861322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.871321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.871321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.871321 LLDP, length 82 [|LLDP] 18:40:02.871321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.871321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c8c 083e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.871321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.871321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.871321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.871321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.871321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.871321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.871321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.871322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.871322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.871322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.881316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.881316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.881316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.881316 LLDP, length 82 [|LLDP] 18:40:02.881316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.881316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c93 a95e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.881316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.881317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.881317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.881317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.881317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.881317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.881317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.881317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.881317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.891321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.891321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.891321 LLDP, length 82 [|LLDP] 18:40:02.891321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.891321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c9b 4a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.891321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.891321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.891321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.891321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.891321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.891321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.891322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.891322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.901309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.901309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.901309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.901309 LLDP, length 82 [|LLDP] 18:40:02.901309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.901309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ca2 eb9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.901309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.901309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.901309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.911309 LLDP, length 82 [|LLDP] 18:40:02.911309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.911309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0caa 8cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.911309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.911309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.911309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.911310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.911310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.911310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.921308 LLDP, length 82 [|LLDP] 18:40:02.921308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.921309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cb2 2dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.921309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.921309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.921309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.921309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.921309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.921309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.931321 LLDP, length 82 [|LLDP] 18:40:02.931321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.931321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cb9 cefe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.931321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.931322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.931322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.931322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.931322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.931322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.931322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.931322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.931322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.931322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.931322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.931322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.941316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.941316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.941316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.941316 LLDP, length 82 [|LLDP] 18:40:02.941316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.941316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cc1 701e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.941316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.941316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.941316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.941317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.941317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.941317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.941317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.941317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.941317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.951319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.951319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.951319 LLDP, length 82 [|LLDP] 18:40:02.951319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.951319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cc9 113e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.951319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.951319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.951319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.951319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.951319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.951320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.951320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.951320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.951320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.951320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.961317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.961317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.961317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.961317 LLDP, length 82 [|LLDP] 18:40:02.961317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.961317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cd0 b25e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.961317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.961317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.961317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.961317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.961318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.961318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.961318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.961318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.961318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.971325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.971325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.971325 LLDP, length 82 [|LLDP] 18:40:02.971325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.971325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cd8 537e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.971325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.971325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.971325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.971325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.971326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.971326 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.971326 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.971326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.971326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.971326 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.981319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.981319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.981319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.981319 LLDP, length 82 [|LLDP] 18:40:02.981319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.981319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cdf f49e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.981319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.981320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.981320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.981320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.981320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.981320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.981320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.981320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.981320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.991316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.991316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.991317 LLDP, length 82 [|LLDP] 18:40:02.991317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.991317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ce7 95be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.991317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.991317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.991317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.991317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.991317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.991317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.991317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.991317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.001309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.001310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.001310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.001310 LLDP, length 82 [|LLDP] 18:40:03.001310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.001310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cef 36de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.001310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.001310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.001310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.011313 LLDP, length 82 [|LLDP] 18:40:03.011313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.011313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cf6 d7fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.011314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.011314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.011314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.011314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.011314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.011314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.021311 LLDP, length 82 [|LLDP] 18:40:03.021311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.021311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cfe 791e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.021311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.021311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.021311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.021311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.021311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.021311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.031320 LLDP, length 82 [|LLDP] 18:40:03.031320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.031320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d06 1a3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.031320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.031320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.031320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.031320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.031320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.031320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.031321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.031321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.031321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.031321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.031321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.031321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.041320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.041320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.041320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.041321 LLDP, length 82 [|LLDP] 18:40:03.041321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.041321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d0d bb5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.041321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.041321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.041321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.041321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.041321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.041321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.041321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.041321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.041321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.051318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.051318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.051318 LLDP, length 82 [|LLDP] 18:40:03.051318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.051318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d15 5c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.051318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.051318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.051318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.051318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.051318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.051319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.051319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.051319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.051319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.051319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.061318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.061318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.061318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.061318 LLDP, length 82 [|LLDP] 18:40:03.061318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.061318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d1c fd9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.061318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.061318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.061319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.061319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.061319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.061319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.061319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.061319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.061319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.071319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.071319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.071319 LLDP, length 82 [|LLDP] 18:40:03.071319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.071319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d24 9ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.071319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.071319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.071319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.071319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.071319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.071319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.071319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.071320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.071320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.071320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.081320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.081320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.081321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.081321 LLDP, length 82 [|LLDP] 18:40:03.081321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.081321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d2c 3fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.081321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.081321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.081321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.081321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.081321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.081321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.081321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.081321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.081321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.091318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.091318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.091318 LLDP, length 82 [|LLDP] 18:40:03.091318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.091318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d33 e0fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.091318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.091318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.091318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.091318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.091318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.091318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.091318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.091319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.101309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.101309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.101309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.101309 LLDP, length 82 [|LLDP] 18:40:03.101309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.101309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d3b 821e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.101309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.101309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.101309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.111311 LLDP, length 82 [|LLDP] 18:40:03.111311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.111311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d43 233e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.111311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.111311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.111311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.111311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.111311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.111311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.121324 LLDP, length 82 [|LLDP] 18:40:03.121324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.121324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d4a c45e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.121324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.121325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.121325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.121325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.121325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.121325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.131323 LLDP, length 82 [|LLDP] 18:40:03.131323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.131324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d52 657e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.131324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.131324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.131324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.131324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.131324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.131324 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.131324 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.131324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.131324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.131324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.131324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.131324 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.141320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.141320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.141320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.141320 LLDP, length 82 [|LLDP] 18:40:03.141320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.141321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d5a 069e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.141321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.141321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.141321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.141321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.141321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.141321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.141321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.141321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.141321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.151320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.151320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.151320 LLDP, length 82 [|LLDP] 18:40:03.151320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.151320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d61 a7be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.151320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.151320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.151320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.151320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.151320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.151320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.151321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.151321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.151321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.151321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.161321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.161321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.161321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.161321 LLDP, length 82 [|LLDP] 18:40:03.161321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.161322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d69 48de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.161322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.161322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.161322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.161322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.161322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.161322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.161322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.161322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.161322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.171319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.171319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.171319 LLDP, length 82 [|LLDP] 18:40:03.171319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.171319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d70 e9fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.171319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.171319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.171319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.171319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.171319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.171319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.171319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.171319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.171320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.171320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.181317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.181317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.181317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.181317 LLDP, length 82 [|LLDP] 18:40:03.181317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.181317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d78 8b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.181317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.181318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.181318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.181318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.181318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.181318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.181318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.181318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.181318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.191313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.191313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.191313 LLDP, length 82 [|LLDP] 18:40:03.191313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.191313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d80 2c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.191313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.191313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.191313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.191314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.191314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.191314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.191314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.191314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.201467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.201467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.201467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.201467 LLDP, length 82 [|LLDP] 18:40:03.201467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.201467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d87 cd5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.201467 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.201467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.201468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.211309 LLDP, length 82 [|LLDP] 18:40:03.211309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.211309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d8f 6e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.211309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.211309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.211309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.211309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.211309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.211309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.221312 LLDP, length 82 [|LLDP] 18:40:03.221312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.221313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d97 0f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.221313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.221313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.221313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.221313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.221313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.221313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.231330 LLDP, length 82 [|LLDP] 18:40:03.231330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.231330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d9e b0be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.231330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.231330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.231330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.231330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.231330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.231330 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.231331 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.231331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.231331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.231331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.231331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.231331 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.241324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.241324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.241324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.241324 LLDP, length 82 [|LLDP] 18:40:03.241324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.241324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0da6 51de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.241324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.241324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.241324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.241325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.241325 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.241325 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.241325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.241325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.241325 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.251318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.251318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.251319 LLDP, length 82 [|LLDP] 18:40:03.251319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.251319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dad f2fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.251319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.251319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.251319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.251319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.251319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.251319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.251319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.251319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.251319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.251319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.261319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.261319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.261319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.261319 LLDP, length 82 [|LLDP] 18:40:03.261319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.261319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0db5 941e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.261319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.261319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.261320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.261320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.261320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.261320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.261320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.261320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.261320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.271320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.271320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.271320 LLDP, length 82 [|LLDP] 18:40:03.271320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.271320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dbd 353e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.271320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.271320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.271320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.271320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.271320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.271320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.271321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.271321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.271321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.271321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.281320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.281320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.281321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.281321 LLDP, length 82 [|LLDP] 18:40:03.281321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.281321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dc4 d65e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.281321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.281321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.281321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.281321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.281321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.281321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.281321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.281321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.281321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.291315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.291315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.291315 LLDP, length 82 [|LLDP] 18:40:03.291315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.291316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dcc 777e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.291316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.291316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.291316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.291316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.291316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.291316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.291316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.291316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.301310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.301310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.301310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.301310 LLDP, length 82 [|LLDP] 18:40:03.301310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.301310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dd4 189e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.301310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.301310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.301310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.311310 LLDP, length 82 [|LLDP] 18:40:03.311310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.311310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ddb b9be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.311310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.311310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.311310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.311310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.311310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.311310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.321312 LLDP, length 82 [|LLDP] 18:40:03.321312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.321312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0de3 5ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.321312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.321312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.321312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.321312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.321312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.321312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.331322 LLDP, length 82 [|LLDP] 18:40:03.331322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.331323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dea fbfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.331323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.331323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.331323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.331323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.331323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.331323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.331323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.331323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.331323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.331323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.331323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.331323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.341322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.341322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.341322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.341322 LLDP, length 82 [|LLDP] 18:40:03.341322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.341322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0df2 9d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.341323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.341323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.341323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.341323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.341323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.341323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.341323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.341323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.341323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.351320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.351320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.351320 LLDP, length 82 [|LLDP] 18:40:03.351320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.351320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dfa 3e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.351320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.351320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.351320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.351321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.351321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.351321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.351321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.351321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.351321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.351321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.361319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.361320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.361320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.361320 LLDP, length 82 [|LLDP] 18:40:03.361320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.361320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e01 df5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.361320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.361320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.361320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.361320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.361320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.361320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.361320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.361320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.361320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.371316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.371316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.371316 LLDP, length 82 [|LLDP] 18:40:03.371316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.371317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e09 807e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.371317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.371317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.371317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.371317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.371317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.371317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.371317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.371317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.371317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.371317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.381320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.381320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.381320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.381320 LLDP, length 82 [|LLDP] 18:40:03.381320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.381320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e11 219e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.381320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.381320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.381320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.381320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.381320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.381320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.381321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.381321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.381321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.391317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.391317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.391317 LLDP, length 82 [|LLDP] 18:40:03.391317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.391317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e18 c2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.391317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.391317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.391317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.391317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.391317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.391317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.391317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.391318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.401310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.401310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.401310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.401310 LLDP, length 82 [|LLDP] 18:40:03.401310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.401310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e20 63de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.401310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.401310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.401310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.411310 LLDP, length 82 [|LLDP] 18:40:03.411310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.411310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e28 04fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.411310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.411310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.411310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.411310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.411310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.411310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.421309 LLDP, length 82 [|LLDP] 18:40:03.421309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.421309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e2f a61e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.421309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.421310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.421310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.421310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.421310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.421310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.431329 LLDP, length 82 [|LLDP] 18:40:03.431329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.431329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e37 473e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.431329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.431329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.431329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.431329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.431329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.431329 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.431329 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.431329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.431329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.431329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.431329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.431330 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.441319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.441319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.441319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.441319 LLDP, length 82 [|LLDP] 18:40:03.441319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.441319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e3e e85e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.441319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.441319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.441319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.441319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.441319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.441319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.441319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.441319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.441320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.451320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.451321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.451321 LLDP, length 82 [|LLDP] 18:40:03.451321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.451321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e46 897e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.451321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.451321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.451321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.451321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.451321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.451321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.451321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.451321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.451321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.451322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.461322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.461322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.461322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.461323 LLDP, length 82 [|LLDP] 18:40:03.461323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.461323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e4e 2a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.461323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.461323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.461323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.461323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.461323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.461323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.461323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.461323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.461323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.471320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.471320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.471320 LLDP, length 82 [|LLDP] 18:40:03.471321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.471321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e55 cbbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.471321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.471321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.471321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.471321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.471321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.471321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.471321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.471321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.471321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.471321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.481319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.481319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.481319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.481319 LLDP, length 82 [|LLDP] 18:40:03.481319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.481319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e5d 6cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.481319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.481320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.481320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.481320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.481320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.481320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.481320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.481320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.481320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.491316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.491316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.491316 LLDP, length 82 [|LLDP] 18:40:03.491316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.491316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e65 0dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.491316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.491316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.491316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.491317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.491317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.491317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.491317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.491317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.501310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.501310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.501310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.501310 LLDP, length 82 [|LLDP] 18:40:03.501310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.501310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e6c af1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.501310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.501310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.501310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.511312 LLDP, length 82 [|LLDP] 18:40:03.511312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.511312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e74 503e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.511312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.511312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.511312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.511312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.511312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.511312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.521309 LLDP, length 82 [|LLDP] 18:40:03.521309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.521309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e7b f15e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.521309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.521309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.521309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.521309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.521310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.521310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.531324 LLDP, length 82 [|LLDP] 18:40:03.531324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.531324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e83 927e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.531324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.531324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.531325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.531325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.531325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.531325 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.531325 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.531325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.531325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.531325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.531325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.531325 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.541321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.541322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.541322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.541322 LLDP, length 82 [|LLDP] 18:40:03.541322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.541322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e8b 339e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.541322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.541322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.541322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.541322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.541322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.541322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.541322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.541322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.541322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.551316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.551316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.551316 LLDP, length 82 [|LLDP] 18:40:03.551316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.551316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e92 d4be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.551316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.551316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.551316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.551316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.551317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.551317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.551317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.551317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.551317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.551317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.561318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.561318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.561318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.561318 LLDP, length 82 [|LLDP] 18:40:03.561318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.561318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e9a 75de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.561318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.561318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.561318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.561318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.561319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.561319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.561319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.561319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.561319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.571319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.571319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.571319 LLDP, length 82 [|LLDP] 18:40:03.571319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.571319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ea2 16fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.571319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.571319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.571319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.571320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.571320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.571320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.571320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.571320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.571320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.571320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.581319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.581319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.581319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.581319 LLDP, length 82 [|LLDP] 18:40:03.581319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.581319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ea9 b81e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.581319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.581319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.581319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.581320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.581320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.581320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.581320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.581320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.581320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.591316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.591317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.591317 LLDP, length 82 [|LLDP] 18:40:03.591317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.591317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eb1 593e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.591317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.591317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.591317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.591317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.591317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.591317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.591317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.591317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.601310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.601310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.601310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.601310 LLDP, length 82 [|LLDP] 18:40:03.601310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.601310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eb8 fa5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.601310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.601310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.601310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.611310 LLDP, length 82 [|LLDP] 18:40:03.611310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.611310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ec0 9b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.611310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.611310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.611310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.611310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.611310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.611310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.621309 LLDP, length 82 [|LLDP] 18:40:03.621309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.621309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ec8 3c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.621309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.621309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.621309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.621309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.621309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.621309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.631321 LLDP, length 82 [|LLDP] 18:40:03.631321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.631321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ecf ddbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.631321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.631322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.631322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.631322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.631322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.631322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.631322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.631322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.631322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.631322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.631322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.631322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.641332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.641332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.641332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.641332 LLDP, length 82 [|LLDP] 18:40:03.641332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.641332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ed7 7ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.641332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.641332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.641333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.641333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.641333 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.641333 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.641333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.641333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.641333 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.651349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.651349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.651349 LLDP, length 82 [|LLDP] 18:40:03.651349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.651349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0edf 1ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.651349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.651350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.651350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.651350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.651350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.651350 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.651350 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.651350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.651350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.651350 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.661343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.661343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.661343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.661343 LLDP, length 82 [|LLDP] 18:40:03.661343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.661343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ee6 c11e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.661343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.661343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.661343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.661343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.661343 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.661344 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.661344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.661344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.661344 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.671327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.671327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.671327 LLDP, length 82 [|LLDP] 18:40:03.671327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.671327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eee 623e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.671327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.671327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.671327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.671327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.671327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.671328 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.671328 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.671328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.671328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.671328 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.681326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.681326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.681326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.681326 LLDP, length 82 [|LLDP] 18:40:03.681326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.681326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ef6 035e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.681326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.681326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.681327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.681327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.681327 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.681327 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.681327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.681327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.681327 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.691315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.691315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.691316 LLDP, length 82 [|LLDP] 18:40:03.691316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.691316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0efd a47e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.691316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.691316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.691316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.691316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.691316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.691316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.691316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.691316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.701307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.701307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.701307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.701307 LLDP, length 82 [|LLDP] 18:40:03.701308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.701308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f05 459e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.701308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.701308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.701308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.711308 LLDP, length 82 [|LLDP] 18:40:03.711308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.711308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f0c e6be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.711308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.711309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.711309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.711309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.711309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.711309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.721315 LLDP, length 82 [|LLDP] 18:40:03.721315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.721315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f14 87de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.721315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.721315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.721315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.721315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.721315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.721315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.731323 LLDP, length 82 [|LLDP] 18:40:03.731323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.731323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f1c 28fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.731323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.731323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.731324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.731324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.731324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.731324 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.731324 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.731324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.731324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.731324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.731324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.731324 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.741319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.741319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.741319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.741319 LLDP, length 82 [|LLDP] 18:40:03.741319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.741319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f23 ca1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.741319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.741319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.741319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.741320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.741320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.741320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.741320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.741320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.741320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.751325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.751325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.751326 LLDP, length 82 [|LLDP] 18:40:03.751326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.751326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f2b 6b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.751326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.751326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.751326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.751326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.751326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.751326 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.751326 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.751326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.751326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.751326 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.761314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.761314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.761314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.761314 LLDP, length 82 [|LLDP] 18:40:03.761314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.761314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f33 0c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.761314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.761314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.761314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.761314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.761315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.761315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.761315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.761315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.761315 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.771316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.771316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.771316 LLDP, length 82 [|LLDP] 18:40:03.771316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.771316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f3a ad7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.771316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.771316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.771316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.771316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.771316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.771316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.771316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.771316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.771316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.771317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.781318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.781318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.781318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.781318 LLDP, length 82 [|LLDP] 18:40:03.781318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.781318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f42 4e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.781318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.781318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.781318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.781318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.781318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.781318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.781318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.781319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.781319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.791314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.791314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.791314 LLDP, length 82 [|LLDP] 18:40:03.791314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.791314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f49 efbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.791314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.791314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.791314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.791314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.791314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.791314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.791315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.791315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.801307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.801307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.801307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.801307 LLDP, length 82 [|LLDP] 18:40:03.801307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.801307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f51 90de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.801307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.801307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.801307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.811310 LLDP, length 82 [|LLDP] 18:40:03.811310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.811310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f59 31fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.811310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.811310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.811310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.811311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.811311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.811311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.821307 LLDP, length 82 [|LLDP] 18:40:03.821307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.821307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f60 d31e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.821307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.821307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.821307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.821307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.821307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.821308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.831319 LLDP, length 82 [|LLDP] 18:40:03.831319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.831319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f68 743e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.831319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.831319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.831319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.831319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.831319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.831319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.831319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.831319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.831319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.831320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.831320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.831320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.841317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.841318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.841318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.841318 LLDP, length 82 [|LLDP] 18:40:03.841318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.841318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f70 155e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.841318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.841318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.841318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.841318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.841318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.841318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.841318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.841318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.841318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.851312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.851312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.851312 LLDP, length 82 [|LLDP] 18:40:03.851312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.851312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f77 b67e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.851312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.851313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.851313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.851313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.851313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.851313 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.851313 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.851313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.851313 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.851313 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.861318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.861318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.861319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.861319 LLDP, length 82 [|LLDP] 18:40:03.861319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.861319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f7f 579e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.861319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.861319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.861319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.861319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.861319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.861319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.861319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.861319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.861319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.871321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.871321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.871321 LLDP, length 82 [|LLDP] 18:40:03.871321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.871321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f86 f8be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.871321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.871321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.871321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.871321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.871321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.871322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.871322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.871322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.871322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.871322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.881317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.881317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.881317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.881317 LLDP, length 82 [|LLDP] 18:40:03.881317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.881317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f8e 99de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.881317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.881317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.881317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.881317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.881317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.881317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.881318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.881318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.881318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.891316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.891316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.891316 LLDP, length 82 [|LLDP] 18:40:03.891316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.891316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f96 3afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.891316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.891316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.891317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.891317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.891317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.891317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.891317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.891317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.901310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.901310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.901310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.901310 LLDP, length 82 [|LLDP] 18:40:03.901310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.901310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f9d dc1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.901310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.901310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.901310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.911310 LLDP, length 82 [|LLDP] 18:40:03.911311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.911311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fa5 7d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.911311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.911311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.911311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.911311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.911311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.911311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.921309 LLDP, length 82 [|LLDP] 18:40:03.921310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.921310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fad 1e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.921310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.921310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.921310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.921310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.921310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.921310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.931327 LLDP, length 82 [|LLDP] 18:40:03.931327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.931327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fb4 bf7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.931327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.931327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.931327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.931327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.931327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.931327 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.931327 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.931327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.931327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.931327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.931328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.931328 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.941318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.941318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.941318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.941318 LLDP, length 82 [|LLDP] 18:40:03.941318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.941318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fbc 609e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.941318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.941318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.941318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.941318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.941318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.941318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.941318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.941319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.941319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.951323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.951323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.951323 LLDP, length 82 [|LLDP] 18:40:03.951323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.951323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fc4 01be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.951323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.951323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.951323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.951323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.951323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.951323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.951323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.951323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.951324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.951324 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.961317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.961317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.961317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.961317 LLDP, length 82 [|LLDP] 18:40:03.961317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.961317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fcb a2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.961317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.961317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.961317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.961318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.961318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.961318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.961318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.961318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.961318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.971317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.971318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.971318 LLDP, length 82 [|LLDP] 18:40:03.971318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.971318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fd3 43fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.971318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.971318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.971318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.971318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.971318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.971318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.971318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.971318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.971318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.971318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.981321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.981321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.981321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.981321 LLDP, length 82 [|LLDP] 18:40:03.981321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.981321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fda e51e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.981321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.981321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.981321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.981321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.981321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.981322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.981322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.981322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.981322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.991318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.991318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.991318 LLDP, length 82 [|LLDP] 18:40:03.991318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.991318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fe2 863e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.991318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.991318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.991318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.991318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.991318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.991318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.991318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.991318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:04.001309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.001309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.001309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.001309 LLDP, length 82 [|LLDP] 18:40:04.001309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.001310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fea 275e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.001310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.001310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.001310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.011309 LLDP, length 82 [|LLDP] 18:40:04.011310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.011310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ff1 c87e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.011310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.011310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.011310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.011310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.011310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.011310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.021309 LLDP, length 82 [|LLDP] 18:40:04.021309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.021309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ff9 699e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.021309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.021309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.021309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.021309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.021309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.021309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.031320 LLDP, length 82 [|LLDP] 18:40:04.031320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.031320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1001 0abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.031320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.031320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.031321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:04.031321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.031321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.031321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.031321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.031321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.031321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.031321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:04.031321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:04.031321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:04.041321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.041321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.041321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.041321 LLDP, length 82 [|LLDP] 18:40:04.041321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.041321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1008 abde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.041321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.041321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.041321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:04.041321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.041322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.041322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.041322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:04.041322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:04.041322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:04.051317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.051317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.051317 LLDP, length 82 [|LLDP] 18:40:04.051317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.051317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1010 4cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.051317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.051317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.051318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:04.051318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.051318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.051318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.051318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.051318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:04.051318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:04.051318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:04.061317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.061317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.061317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.061317 LLDP, length 82 [|LLDP] 18:40:04.061317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.061317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1017 ee1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.061317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.061317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.061317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:04.061317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.061317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.061317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.061317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:04.061317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:04.061317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:04.071318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.071318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.071318 LLDP, length 82 [|LLDP] 18:40:04.071318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.071318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 101f 8f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.071318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.071318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.071318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:04.071318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.071318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.071318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.071318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.071319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:04.071319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:04.071319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:04.081320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.081320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.081320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.081320 LLDP, length 82 [|LLDP] 18:40:04.081320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.081320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1027 305e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.081320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.081320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.081320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:04.081320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.081320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.081320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.081320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:04.081321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:04.081321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:04.091314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.091314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.091314 LLDP, length 82 [|LLDP] 18:40:04.091315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.091315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 102e d17e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.091315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.091315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.091315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:04.091315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.091315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.091315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.091315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.091315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:04.101326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.101326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.101326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.101326 LLDP, length 82 [|LLDP] 18:40:04.101326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.101326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1036 729e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.101326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.101326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.101326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.111310 LLDP, length 82 [|LLDP] 18:40:04.111310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.111311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 103e 13be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.111311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.111311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.111311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.111311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.111311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.111311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.121308 LLDP, length 82 [|LLDP] 18:40:04.121308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.121308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1045 b4de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.121308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.121309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.121309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.121309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.121309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.121309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.131322 LLDP, length 82 [|LLDP] 18:40:04.131322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.131322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 104d 55fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.131322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.131322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.131322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:04.131323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.131323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.131323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.131323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.131323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.131323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.131323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:04.131323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:04.131323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:04.141320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.141320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.141320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.141320 LLDP, length 82 [|LLDP] 18:40:04.141320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.141321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1054 f71e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.141321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.141321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.141321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:04.141321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.141321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.141321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.141321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:04.141321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:04.141321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:04.151322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.151322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.151322 LLDP, length 82 [|LLDP] 18:40:04.151322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.151322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 105c 983e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.151322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.151322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.151322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:04.151322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.151322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.151322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.151323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.151323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:04.151323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:04.151323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:04.161319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.161319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.161319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.161319 LLDP, length 82 [|LLDP] 18:40:04.161319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.161319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1064 395e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.161319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.161320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.161320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:04.161320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.161320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.161320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.161320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:04.161320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:04.161320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 5763 packets captured 5763 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT aggregation 1] Ran timeout --preserve-status 15 tcpdump -i swp1 -n on agg1 with rc 0 and out 18:39:57.410279 LLDP, length 219: localhost 18:39:59.751351 LLDP, length 82 [|LLDP] 18:39:59.751351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.751351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 033f a93e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.751351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.751351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.751351 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.751352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.751352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.751352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.751352 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.751352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.751352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.751352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.751352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.751352 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.761324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.761324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.761324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.761324 LLDP, length 82 [|LLDP] 18:39:59.761325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.761325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0347 4a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.761325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.761325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.761325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.761325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.761325 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.761325 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.761325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.761325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.761325 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.771317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.771317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.771318 LLDP, length 82 [|LLDP] 18:39:59.771318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.771318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 034e eb7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.771318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.771318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.771318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.771318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.771318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.771318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.771318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.771318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.771318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.771318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.781314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.781314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.781314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.781314 LLDP, length 82 [|LLDP] 18:39:59.781314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.781314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0356 8c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.781314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.781315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.781315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.781315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.781315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.781315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.781315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.781315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.781315 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.791313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.791313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.791313 LLDP, length 82 [|LLDP] 18:39:59.791313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.791313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 035e 2dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.791313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.791314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.791314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.791314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.791314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.791314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.791314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.791314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.791314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.791314 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.801322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.801322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.801322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.801322 LLDP, length 82 [|LLDP] 18:39:59.801322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.801322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0365 cede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.801322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.801322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.801323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.801323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.801323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.801323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.801323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.801323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.801323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.811313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.811314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.811314 LLDP, length 82 [|LLDP] 18:39:59.811314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.811314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 036d 6ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.811314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.811314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.811314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.811314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.811314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.811314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.811314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.811314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.821307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.821307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.821308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.821308 LLDP, length 82 [|LLDP] 18:39:59.821308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.821308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0375 111e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.821308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.821308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.821308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.831316 LLDP, length 82 [|LLDP] 18:39:59.831316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.831316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 037c b23e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.831316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.831316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.831316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.831316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.831316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.831316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.831316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.831316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.831316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.831317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.831317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.831317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.841319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.841319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.841319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.841319 LLDP, length 82 [|LLDP] 18:39:59.841319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.841319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0384 535e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.841319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.841320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.841320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.841320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.841320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.841320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.841320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.841320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.841320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.851314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.851314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.851314 LLDP, length 82 [|LLDP] 18:39:59.851314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.851314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 038b f47e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.851314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.851314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.851314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.851314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.851314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.851314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.851314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.851314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.851315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.851315 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.861371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.861371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.861372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.861372 LLDP, length 82 [|LLDP] 18:39:59.861372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.861372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0393 959e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.861372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.861372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.861372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.861372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.861372 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.861372 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.861372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.861372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.861372 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.871340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.871340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.871340 LLDP, length 82 [|LLDP] 18:39:59.871341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.871341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 039b 36be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.871341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.871341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.871341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.871341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.871341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.871341 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.871341 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.871341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.871341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.871341 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.881336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.881336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.881336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.881336 LLDP, length 82 [|LLDP] 18:39:59.881336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.881336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03a2 d7de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.881336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.881336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.881336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.881336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.881336 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.881336 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.881336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.881336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.881337 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.891333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.891333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.891333 LLDP, length 82 [|LLDP] 18:39:59.891333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.891333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03aa 78fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.891333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.891333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.891333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.891333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.891333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.891333 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.891333 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.891333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.901320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.901320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.901320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.901320 LLDP, length 82 [|LLDP] 18:39:59.901320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.901320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03b2 1a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.901320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.901320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.901320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.911322 LLDP, length 82 [|LLDP] 18:39:59.911322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.911322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03b9 bb3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.911322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.911322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.911322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.911322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.911323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.911323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.921329 LLDP, length 82 [|LLDP] 18:39:59.921329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.921329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03c1 5c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.921329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.921329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.921329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.921329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.921329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.921329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.931346 LLDP, length 82 [|LLDP] 18:39:59.931346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.931346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03c8 fd7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.931346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.931346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.931346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.931347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.931347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.931347 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.931347 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.931347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.931347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.931347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.931347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.931347 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.941332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.941332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.941332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.941332 LLDP, length 82 [|LLDP] 18:39:59.941333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.941333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03d0 9e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.941333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.941333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.941333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.941333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.941333 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.941333 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.941333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.941333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.941333 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.951323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.951323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.951323 LLDP, length 82 [|LLDP] 18:39:59.951323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.951323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03d8 3fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.951323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.951323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.951323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.951323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.951324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.951324 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.951324 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.951324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.951324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.951324 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.961323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.961323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.961323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.961323 LLDP, length 82 [|LLDP] 18:39:59.961323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.961323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03df e0de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.961323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.961323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.961323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.961323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.961323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.961324 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.961324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.961324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.961324 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.971319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.971319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.971319 LLDP, length 82 [|LLDP] 18:39:59.971319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.971319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03e7 81fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.971320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.971320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.971320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.971320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.971320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.971320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.971320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.971320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.971320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.971320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.981325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.981325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.981325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.981325 LLDP, length 82 [|LLDP] 18:39:59.981325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.981325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03ef 231e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.981325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.981325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.981325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.981325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.981325 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.981325 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.981325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:39:59.981326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:39:59.981326 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:39:59.991316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:39:59.991316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.991316 LLDP, length 82 [|LLDP] 18:39:59.991316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:39:59.991316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03f6 c43e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:39:59.991316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:39:59.991316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:39:59.991316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:39:59.991317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:39:59.991317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:39:59.991317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.991317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:39:59.991317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.001308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.001308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.001308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.001309 LLDP, length 82 [|LLDP] 18:40:00.001309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.001309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03fe 655e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.001309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.001309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.001309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.011307 LLDP, length 82 [|LLDP] 18:40:00.011307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.011307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0406 067e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.011307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.011307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.011307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.011307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.011307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.011307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.021306 LLDP, length 82 [|LLDP] 18:40:00.021306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.021306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 040d a79e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.021306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.021307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.021307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.021307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.021307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.021307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.031336 LLDP, length 82 [|LLDP] 18:40:00.031336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.031337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0415 48be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.031337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.031337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.031337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.031337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.031337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.031337 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.031337 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.031337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.031337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.031337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.031337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.031337 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.041315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.041315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.041315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.041315 LLDP, length 82 [|LLDP] 18:40:00.041315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.041315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 041c e9de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.041315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.041315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.041316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.041316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.041316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.041316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.041316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.041316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.041316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.051318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.051318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.051318 LLDP, length 82 [|LLDP] 18:40:00.051318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.051318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0424 8afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.051318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.051318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.051318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.051318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.051318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.051318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.051318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.051318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.051319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.051319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.061316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.061316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.061316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.061316 LLDP, length 82 [|LLDP] 18:40:00.061316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.061316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 042c 2c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.061316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.061316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.061316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.061316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.061316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.061316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.061316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.061316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.061316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.071315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.071315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.071315 LLDP, length 82 [|LLDP] 18:40:00.071316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.071316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0433 cd3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.071316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.071316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.071316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.071316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.071316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.071316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.071316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.071316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.071316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.071316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.081315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.081315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.081315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.081315 LLDP, length 82 [|LLDP] 18:40:00.081315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.081315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 043b 6e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.081315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.081315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.081315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.081315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.081315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.081315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.081315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.081315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.081316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.091315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.091315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.091315 LLDP, length 82 [|LLDP] 18:40:00.091315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.091315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0443 0f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.091315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.091315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.091315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.091316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.091316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.091316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.091316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.091316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.101307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.101307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.101307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.101307 LLDP, length 82 [|LLDP] 18:40:00.101307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.101307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 044a b09e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.101307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.101307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.101308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.111314 LLDP, length 82 [|LLDP] 18:40:00.111314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.111314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0452 51be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.111314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.111314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.111314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.111314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.111314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.111314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.121309 LLDP, length 82 [|LLDP] 18:40:00.121309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.121309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0459 f2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.121309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.121309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.121309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.121309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.121309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.121309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.131328 LLDP, length 82 [|LLDP] 18:40:00.131328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.131328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0461 93fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.131328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.131328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.131329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.131329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.131329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.131329 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.131329 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.131329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.131329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.131329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.131329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.131329 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.141319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.141319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.141319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.141319 LLDP, length 82 [|LLDP] 18:40:00.141320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.141320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0469 351e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.141320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.141320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.141320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.141320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.141320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.141320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.141320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.141320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.141320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.151321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.151321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.151321 LLDP, length 82 [|LLDP] 18:40:00.151321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.151321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0470 d63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.151321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.151321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.151321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.151321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.151321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.151321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.151321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.151321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.151321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.151322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.161316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.161317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.161317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.161317 LLDP, length 82 [|LLDP] 18:40:00.161317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.161317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0478 775e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.161317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.161317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.161317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.161317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.161317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.161317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.161317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.161317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.161317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.171330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.171330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.171330 LLDP, length 82 [|LLDP] 18:40:00.171330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.171330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0480 187e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.171330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.171330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.171330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.171330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.171330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.171331 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.171331 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.171331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.171331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.171331 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.181323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.181323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.181323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.181324 LLDP, length 82 [|LLDP] 18:40:00.181324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.181324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0487 b99e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.181324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.181324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.181324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.181324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.181324 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.181324 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.181324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.181324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.181324 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.191314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.191314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.191314 LLDP, length 82 [|LLDP] 18:40:00.191314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.191314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 048f 5abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.191314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.191314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.191314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.191314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.191314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.191314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.191314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.191315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.201309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.201309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.201309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.201309 LLDP, length 82 [|LLDP] 18:40:00.201309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.201309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0496 fbde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.201309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.201309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.201309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.211307 LLDP, length 82 [|LLDP] 18:40:00.211307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.211307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 049e 9cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.211307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.211307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.211307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.211307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.211307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.211307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.221313 LLDP, length 82 [|LLDP] 18:40:00.221313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.221313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04a6 3e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.221313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.221313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.221313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.221313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.221313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.221313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.231321 LLDP, length 82 [|LLDP] 18:40:00.231321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.231321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04ad df3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.231321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.231321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.231321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.231321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.231321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.231321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.231321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.231321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.231321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.231321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.231321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.231322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.241315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.241315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.241315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.241315 LLDP, length 82 [|LLDP] 18:40:00.241315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.241315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04b5 805e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.241316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.241316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.241316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.241316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.241316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.241316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.241316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.241316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.241316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.251316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.251316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.251316 LLDP, length 82 [|LLDP] 18:40:00.251316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.251316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04bd 217e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.251316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.251316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.251317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.251317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.251317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.251317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.251317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.251317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.251317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.251317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.261316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.261316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.261316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.261316 LLDP, length 82 [|LLDP] 18:40:00.261316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.261316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04c4 c29e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.261316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.261316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.261316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.261316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.261316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.261316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.261316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.261317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.261317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.271317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.271317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.271317 LLDP, length 82 [|LLDP] 18:40:00.271317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.271317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04cc 63be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.271317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.271317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.271317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.271317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.271317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.271318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.271318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.271318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.271318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.271318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.281315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.281315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.281315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.281315 LLDP, length 82 [|LLDP] 18:40:00.281315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.281316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04d4 04de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.281316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.281316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.281316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.281316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.281316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.281316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.281316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.281316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.281316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.291312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.291313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.291313 LLDP, length 82 [|LLDP] 18:40:00.291313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.291313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04db a5fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.291313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.291313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.291313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.291313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.291313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.291313 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.291313 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.291313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.301306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.301306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.301306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.301306 LLDP, length 82 [|LLDP] 18:40:00.301306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.301306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04e3 471e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.301306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.301306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.301306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.311306 LLDP, length 82 [|LLDP] 18:40:00.311306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.311306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04ea e83e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.311307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.311307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.311307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.311307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.311307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.311307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.321308 LLDP, length 82 [|LLDP] 18:40:00.321308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.321308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04f2 895e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.321308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.321308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.321308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.321308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.321308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.321309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.331319 LLDP, length 82 [|LLDP] 18:40:00.331319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.331319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04fa 2a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.331319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.331319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.331319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.331319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.331319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.331319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.331320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.331320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.331320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.331320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.331320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.331320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.341317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.341317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.341317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.341317 LLDP, length 82 [|LLDP] 18:40:00.341317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.341317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0501 cb9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.341317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.341317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.341318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.341318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.341318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.341318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.341318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.341318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.341318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.351315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.351315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.351315 LLDP, length 82 [|LLDP] 18:40:00.351315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.351315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0509 6cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.351315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.351315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.351315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.351315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.351315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.351315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.351315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.351316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.351316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.351316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.361315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.361315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.361315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.361315 LLDP, length 82 [|LLDP] 18:40:00.361315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.361315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0511 0dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.361315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.361315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.361315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.361315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.361315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.361315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.361316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.361316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.361316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.371313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.371313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.371313 LLDP, length 82 [|LLDP] 18:40:00.371313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.371313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0518 aefe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.371313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.371314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.371314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.371314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.371314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.371314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.371314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.371314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.371314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.371314 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.381320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.381320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.381320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.381320 LLDP, length 82 [|LLDP] 18:40:00.381320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.381320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0520 501e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.381321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.381321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.381321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.381321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.381321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.381321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.381321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.381321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.381321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.391315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.391315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.391315 LLDP, length 82 [|LLDP] 18:40:00.391315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.391315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0527 f13e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.391315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.391315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.391315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.391315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.391315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.391315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.391316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.391316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.401306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.401306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.401307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.401307 LLDP, length 82 [|LLDP] 18:40:00.401307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.401307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 052f 925e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.401307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.401307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.401307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.411308 LLDP, length 82 [|LLDP] 18:40:00.411308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.411308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0537 337e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.411308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.411309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.411309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.411309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.411309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.411309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.421307 LLDP, length 82 [|LLDP] 18:40:00.421307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.421307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 053e d49e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.421307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.421307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.421307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.421307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.421308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.421308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.431320 LLDP, length 82 [|LLDP] 18:40:00.431320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.431320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0546 75be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.431320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.431320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.431320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.431320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.431320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.431320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.431320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.431320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.431320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.431321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.431321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.431321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.441315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.441315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.441315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.441315 LLDP, length 82 [|LLDP] 18:40:00.441315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.441315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 054e 16de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.441315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.441315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.441315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.441315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.441315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.441315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.441315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.441315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.441316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.451319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.451319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.451319 LLDP, length 82 [|LLDP] 18:40:00.451319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.451319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0555 b7fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.451319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.451319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.451319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.451319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.451320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.451320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.451320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.451320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.451320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.451320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.461312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.461312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.461312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.461312 LLDP, length 82 [|LLDP] 18:40:00.461312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.461313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 055d 591e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.461313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.461313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.461313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.461313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.461313 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.461313 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.461313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.461313 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.461313 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.471312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.471312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.471312 LLDP, length 82 [|LLDP] 18:40:00.471312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.471312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0564 fa3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.471312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.471313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.471313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.471313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.471313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.471313 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.471313 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.471313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.471313 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.471313 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.481312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.481312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.481312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.481312 LLDP, length 82 [|LLDP] 18:40:00.481312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.481312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 056c 9b5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.481312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.481312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.481312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.481312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.481312 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.481312 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.481312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.481313 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.481313 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.491313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.491313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.491313 LLDP, length 82 [|LLDP] 18:40:00.491313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.491313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0574 3c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.491314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.491314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.491314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.491314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.491314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.491314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.491314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.491314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.501306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.501306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.501306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.501306 LLDP, length 82 [|LLDP] 18:40:00.501307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.501307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 057b dd9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.501307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.501307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.501307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.511306 LLDP, length 82 [|LLDP] 18:40:00.511307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.511307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0583 7ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.511307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.511307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.511307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.511307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.511307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.511307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.521308 LLDP, length 82 [|LLDP] 18:40:00.521308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.521308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 058b 1fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.521308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.521308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.521308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.521308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.521308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.521308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.531318 LLDP, length 82 [|LLDP] 18:40:00.531318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.531318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0592 c0fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.531318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.531318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.531318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.531318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.531318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.531318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.531319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.531319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.531319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.531319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.531319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.531319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.541313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.541313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.541313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.541313 LLDP, length 82 [|LLDP] 18:40:00.541313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.541313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 059a 621e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.541313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.541313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.541313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.541313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.541313 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.541314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.541314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.541314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.541314 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.551315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.551315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.551316 LLDP, length 82 [|LLDP] 18:40:00.551316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.551316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05a2 033e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.551316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.551316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.551316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.551316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.551316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.551316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.551316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.551316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.551316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.551316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.561315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.561315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.561315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.561315 LLDP, length 82 [|LLDP] 18:40:00.561315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.561315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05a9 a45e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.561315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.561315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.561315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.561315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.561315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.561315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.561316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.561316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.561316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.571313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.571313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.571313 LLDP, length 82 [|LLDP] 18:40:00.571313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.571313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05b1 457e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.571313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.571314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.571314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.571314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.571314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.571314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.571314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.571314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.571314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.571314 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.581318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.581318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.581318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.581318 LLDP, length 82 [|LLDP] 18:40:00.581318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.581318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05b8 e69e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.581318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.581318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.581318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.581318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.581319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.581319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.581319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.581319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.581319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.591314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.591314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.591314 LLDP, length 82 [|LLDP] 18:40:00.591314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.591314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05c0 87be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.591314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.591314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.591315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.591315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.591315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.591315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.591315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.591315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.601307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.601307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.601307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.601307 LLDP, length 82 [|LLDP] 18:40:00.601307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.601307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05c8 28de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.601307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.601307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.601307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.611307 LLDP, length 82 [|LLDP] 18:40:00.611307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.611307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05cf c9fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.611307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.611307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.611307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.611307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.611307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.611307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.621307 LLDP, length 82 [|LLDP] 18:40:00.621307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.621307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05d7 6b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.621307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.621307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.621307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.621307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.621307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.621307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.631319 LLDP, length 82 [|LLDP] 18:40:00.631319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.631319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05df 0c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.631319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.631319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.631319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.631319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.631319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.631319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.631319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.631319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.631320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.631320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.631320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.631320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.641316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.641316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.641316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.641317 LLDP, length 82 [|LLDP] 18:40:00.641317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.641317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05e6 ad5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.641317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.641317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.641317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.641317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.641317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.641317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.641317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.641317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.641317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.651315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.651315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.651315 LLDP, length 82 [|LLDP] 18:40:00.651315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.651315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05ee 4e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.651315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.651315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.651315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.651316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.651316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.651316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.651316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.651316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.651316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.651316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.661316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.661316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.661316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.661316 LLDP, length 82 [|LLDP] 18:40:00.661316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.661316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05f5 ef9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.661316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.661316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.661316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.661316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.661316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.661316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.661317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.661317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.661317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.671316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.671316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.671316 LLDP, length 82 [|LLDP] 18:40:00.671316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.671316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05fd 90be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.671316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.671316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.671316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.671316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.671316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.671316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.671316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.671317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.671317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.671317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.681323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.681323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.681323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.681323 LLDP, length 82 [|LLDP] 18:40:00.681323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.681323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0605 31de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.681323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.681323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.681323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.681323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.681323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.681323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.681324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.681324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.681324 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.691320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.691320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.691320 LLDP, length 82 [|LLDP] 18:40:00.691320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.691320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 060c d2fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.691320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.691320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.691320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.691320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.691320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.691320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.691320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.691320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.701307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.701307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.701307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.701307 LLDP, length 82 [|LLDP] 18:40:00.701307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.701307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0614 741e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.701307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.701307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.701307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.711317 LLDP, length 82 [|LLDP] 18:40:00.711317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.711317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 061c 153e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.711317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.711317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.711317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.711317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.711317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.711317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.721313 LLDP, length 82 [|LLDP] 18:40:00.721313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.721313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0623 b65e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.721313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.721313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.721313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.721313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.721313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.721313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.731320 LLDP, length 82 [|LLDP] 18:40:00.731320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.731321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 062b 577e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.731321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.731321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.731321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.731321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.731321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.731321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.731321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.731321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.731321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.731321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.731321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.731321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.741315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.741315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.741315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.741315 LLDP, length 82 [|LLDP] 18:40:00.741315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.741315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0632 f89e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.741316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.741316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.741316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.741316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.741316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.741316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.741316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.741316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.741316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.751316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.751316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.751316 LLDP, length 82 [|LLDP] 18:40:00.751316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.751316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 063a 99be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.751316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.751316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.751316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.751316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.751316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.751316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.751316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.751316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.751316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.751317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.761317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.761317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.761317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.761317 LLDP, length 82 [|LLDP] 18:40:00.761317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.761317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0642 3ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.761317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.761317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.761317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.761317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.761317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.761317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.761317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.761318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.761318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.771319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.771319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.771320 LLDP, length 82 [|LLDP] 18:40:00.771320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.771320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0649 dbfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.771320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.771320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.771320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.771320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.771320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.771320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.771320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.771320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.771320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.771320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.781327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.781327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.781327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.781327 LLDP, length 82 [|LLDP] 18:40:00.781327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.781327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0651 7d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.781328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.781328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.781328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.781328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.781328 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.781328 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.781328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.781328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.781328 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.791316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.791316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.791316 LLDP, length 82 [|LLDP] 18:40:00.791316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.791316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0659 1e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.791316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.791316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.791316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.791316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.791316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.791316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.791316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.791316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.801314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.801314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.801314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.801314 LLDP, length 82 [|LLDP] 18:40:00.801314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.801314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0660 bf5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.801314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.801314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.801314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.811308 LLDP, length 82 [|LLDP] 18:40:00.811308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.811308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0668 607e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.811308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.811308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.811308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.811308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.811308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.811308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.821307 LLDP, length 82 [|LLDP] 18:40:00.821307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.821307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0670 019e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.821307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.821308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.821308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.821308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.821308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.821308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.831319 LLDP, length 82 [|LLDP] 18:40:00.831319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.831319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0677 a2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.831319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.831319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.831319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.831319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.831319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.831319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.831320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.831320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.831320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.831320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.831320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.831320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.841315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.841315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.841315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.841315 LLDP, length 82 [|LLDP] 18:40:00.841315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.841315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 067f 43de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.841315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.841315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.841315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.841315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.841315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.841315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.841316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.841316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.841316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.851316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.851316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.851317 LLDP, length 82 [|LLDP] 18:40:00.851317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.851317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0686 e4fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.851317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.851317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.851317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.851317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.851317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.851317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.851317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.851317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.851317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.851317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.861319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.861319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.861319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.861320 LLDP, length 82 [|LLDP] 18:40:00.861320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.861320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 068e 861e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.861320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.861320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.861320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.861320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.861320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.861320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.861320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.861320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.861320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.871322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.871322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.871322 LLDP, length 82 [|LLDP] 18:40:00.871323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.871323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0696 273e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.871323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.871323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.871323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.871323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.871323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.871323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.871323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.871323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.871323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.871323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.881317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.881317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.881318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.881318 LLDP, length 82 [|LLDP] 18:40:00.881318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.881318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 069d c85e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.881318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.881318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.881318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.881318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.881318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.881318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.881318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.881318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.881318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.891318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.891318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.891318 LLDP, length 82 [|LLDP] 18:40:00.891318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.891318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06a5 697e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.891318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.891318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.891318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.891318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.891318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.891318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.891318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.891318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.901308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.901308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.901308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.901308 LLDP, length 82 [|LLDP] 18:40:00.901308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.901308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06ad 0a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.901308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.901308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.901308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.911308 LLDP, length 82 [|LLDP] 18:40:00.911308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.911308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06b4 abbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.911308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.911308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.911308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.911309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.911309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.911309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.921308 LLDP, length 82 [|LLDP] 18:40:00.921308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.921308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06bc 4cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.921308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.921308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.921308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.921308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.921308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.921308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.931328 LLDP, length 82 [|LLDP] 18:40:00.931328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.931328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06c3 edfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.931328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.931328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.931329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.931329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.931329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.931329 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.931329 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.931329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.931329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.931329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.931329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.931329 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.941348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.941348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.941348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.941348 LLDP, length 82 [|LLDP] 18:40:00.941348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.941348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06cb 8f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.941348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.941348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.941348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.941348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.941348 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.941348 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.941349 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.941349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.941349 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.951323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.951323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.951323 LLDP, length 82 [|LLDP] 18:40:00.951323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.951323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06d3 303e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.951323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.951323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.951323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.951323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.951323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.951323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.951323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.951323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.951324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.951324 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.961317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.961317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.961317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.961317 LLDP, length 82 [|LLDP] 18:40:00.961317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.961317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06da d15e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.961317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.961317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.961317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.961318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.961318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.961318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.961318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.961318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.961318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.971319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.971319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.971319 LLDP, length 82 [|LLDP] 18:40:00.971319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.971319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06e2 727e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.971319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.971319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.971319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.971319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.971319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.971319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.971320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.971320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.971320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.971320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.981314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.981315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.981315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.981315 LLDP, length 82 [|LLDP] 18:40:00.981315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.981315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06ea 139e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.981315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.981315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.981315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.981315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.981315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.981315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.981315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:00.981315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:00.981315 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:00.991315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:00.991315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.991315 LLDP, length 82 [|LLDP] 18:40:00.991315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:00.991315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06f1 b4be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:00.991315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:00.991315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:00.991315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:00.991316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:00.991316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:00.991316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.991316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:00.991316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.001307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.001307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.001307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.001307 LLDP, length 82 [|LLDP] 18:40:01.001307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.001307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06f9 55de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.001308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.001308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.001308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.011307 LLDP, length 82 [|LLDP] 18:40:01.011307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.011308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0700 f6fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.011308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.011308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.011308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.011308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.011308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.011308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.021307 LLDP, length 82 [|LLDP] 18:40:01.021307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.021307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0708 981e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.021308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.021308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.021308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.021308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.021308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.021308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.031341 LLDP, length 82 [|LLDP] 18:40:01.031341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.031341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0710 393e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.031341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.031341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.031341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.031341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.031341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.031341 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.031341 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.031342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.031342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.031342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.031342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.031342 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.041313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.041314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.041314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.041314 LLDP, length 82 [|LLDP] 18:40:01.041314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.041314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0717 da5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.041314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.041314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.041314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.041314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.041314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.041314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.041314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.041314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.041314 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.051315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.051315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.051315 LLDP, length 82 [|LLDP] 18:40:01.051315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.051315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 071f 7b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.051315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.051315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.051315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.051315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.051315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.051316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.051316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.051316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.051316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.051316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.061316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.061316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.061316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.061316 LLDP, length 82 [|LLDP] 18:40:01.061316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.061316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0727 1c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.061316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.061316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.061316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.061316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.061316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.061317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.061317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.061317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.061317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.071314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.071314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.071314 LLDP, length 82 [|LLDP] 18:40:01.071314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.071314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 072e bdbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.071314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.071314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.071315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.071315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.071315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.071315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.071315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.071315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.071315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.071315 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.081317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.081318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.081318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.081318 LLDP, length 82 [|LLDP] 18:40:01.081318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.081318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0736 5ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.081318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.081318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.081318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.081318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.081318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.081318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.081318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.081318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.081318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.091316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.091317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.091317 LLDP, length 82 [|LLDP] 18:40:01.091317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.091317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 073d fffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.091317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.091317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.091317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.091317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.091317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.091317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.091317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.091317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.101307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.101307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.101307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.101307 LLDP, length 82 [|LLDP] 18:40:01.101307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.101307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0745 a11e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.101307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.101307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.101307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.111306 LLDP, length 82 [|LLDP] 18:40:01.111306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.111306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 074d 423e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.111306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.111306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.111306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.111306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.111306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.111306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.121307 LLDP, length 82 [|LLDP] 18:40:01.121307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.121307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0754 e35e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.121307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.121307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.121307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.121308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.121308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.121308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.131319 LLDP, length 82 [|LLDP] 18:40:01.131319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.131319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 075c 847e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.131319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.131319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.131319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.131319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.131319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.131320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.131320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.131320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.131320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.131320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.131320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.131320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.141318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.141318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.141318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.141318 LLDP, length 82 [|LLDP] 18:40:01.141318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.141318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0764 259e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.141318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.141318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.141318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.141318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.141318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.141319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.141319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.141319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.141319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.151315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.151315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.151316 LLDP, length 82 [|LLDP] 18:40:01.151316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.151316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 076b c6be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.151316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.151316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.151316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.151316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.151316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.151316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.151316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.151316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.151316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.151316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.161338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.161338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.161338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.161338 LLDP, length 82 [|LLDP] 18:40:01.161338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.161338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0773 67de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.161338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.161338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.161338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.161338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.161339 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.161339 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.161339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.161339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.161339 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.171324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.171324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.171324 LLDP, length 82 [|LLDP] 18:40:01.171324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.171324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 077b 08fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.171324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.171324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.171324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.171324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.171324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.171324 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.171325 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.171325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.171325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.171325 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.181318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.181318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.181318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.181318 LLDP, length 82 [|LLDP] 18:40:01.181318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.181318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0782 aa1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.181318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.181318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.181319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.181319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.181319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.181319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.181319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.181319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.181319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.191426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.191426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.191426 LLDP, length 82 [|LLDP] 18:40:01.191426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.191426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 078a 4b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.191426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.191426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.191426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.191426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.191426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.191427 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.191427 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.191427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.201307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.201307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.201307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.201307 LLDP, length 82 [|LLDP] 18:40:01.201307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.201307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0791 ec5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.201307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.201308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.201308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.211308 LLDP, length 82 [|LLDP] 18:40:01.211308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.211308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0799 8d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.211308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.211308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.211308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.211308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.211308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.211308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.221309 LLDP, length 82 [|LLDP] 18:40:01.221309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.221309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07a1 2e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.221309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.221309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.221309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.221309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.221309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.221309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.231320 LLDP, length 82 [|LLDP] 18:40:01.231320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.231320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07a8 cfbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.231320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.231321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.231321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.231321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.231321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.231321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.231321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.231321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.231321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.231321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.231321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.231321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.241314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.241314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.241315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.241315 LLDP, length 82 [|LLDP] 18:40:01.241315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.241315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07b0 70de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.241315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.241315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.241315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.241315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.241315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.241315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.241315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.241315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.241315 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.251319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.251320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.251320 LLDP, length 82 [|LLDP] 18:40:01.251320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.251320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07b8 11fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.251320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.251320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.251320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.251320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.251320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.251320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.251320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.251320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.251320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.251320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.261313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.261313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.261314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.261314 LLDP, length 82 [|LLDP] 18:40:01.261314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.261314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07bf b31e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.261314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.261314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.261314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.261314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.261314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.261314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.261314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.261314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.261314 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.271316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.271316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.271316 LLDP, length 82 [|LLDP] 18:40:01.271316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.271316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07c7 543e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.271317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.271317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.271317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.271317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.271317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.271317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.271317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.271317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.271317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.271317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.281314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.281314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.281314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.281315 LLDP, length 82 [|LLDP] 18:40:01.281315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.281315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07ce f55e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.281315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.281315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.281315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.281315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.281315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.281315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.281315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.281315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.281315 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.291313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.291313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.291313 LLDP, length 82 [|LLDP] 18:40:01.291313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.291314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07d6 967e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.291314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.291314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.291314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.291314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.291314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.291314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.291314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.291314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.301305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.301306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.301306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.301306 LLDP, length 82 [|LLDP] 18:40:01.301306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.301306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07de 379e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.301306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.301306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.301306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.311305 LLDP, length 82 [|LLDP] 18:40:01.311305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.311305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07e5 d8be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.311305 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.311305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.311305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.311305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.311306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.311306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.321308 LLDP, length 82 [|LLDP] 18:40:01.321308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.321308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07ed 79de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.321308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.321308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.321308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.321308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.321308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.321308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.331321 LLDP, length 82 [|LLDP] 18:40:01.331321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.331321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07f5 1afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.331321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.331321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.331322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.331322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.331322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.331322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.331322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.331322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.331322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.331322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.331322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.331322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.341316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.341316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.341316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.341317 LLDP, length 82 [|LLDP] 18:40:01.341317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.341317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07fc bc1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.341317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.341317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.341317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.341317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.341317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.341317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.341317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.341317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.341317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.351315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.351315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.351315 LLDP, length 82 [|LLDP] 18:40:01.351315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.351315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0804 5d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.351315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.351315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.351315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.351315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.351315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.351315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.351315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.351315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.351316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.351316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.361313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.361313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.361313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.361313 LLDP, length 82 [|LLDP] 18:40:01.361313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.361313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 080b fe5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.361314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.361314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.361314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.361314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.361314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.361314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.361314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.361314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.361314 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.371314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.371314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.371314 LLDP, length 82 [|LLDP] 18:40:01.371314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.371314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0813 9f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.371314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.371314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.371314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.371315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.371315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.371315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.371315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.371315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.371315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.371315 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.381313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.381313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.381313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.381314 LLDP, length 82 [|LLDP] 18:40:01.381314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.381314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 081b 409e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.381314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.381314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.381314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.381314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.381314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.381314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.381314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.381314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.381314 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.391324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.391324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.391324 LLDP, length 82 [|LLDP] 18:40:01.391324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.391324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0822 e1be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.391324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.391324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.391325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.391325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.391325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.391325 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.391325 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.391325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.401336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.401336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.401336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.401336 LLDP, length 82 [|LLDP] 18:40:01.401336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.401336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 082a 82de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.401336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.401336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.401337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.411332 LLDP, length 82 [|LLDP] 18:40:01.411332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.411332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0832 23fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.411332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.411332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.411333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.411333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.411333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.411333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.421306 LLDP, length 82 [|LLDP] 18:40:01.421306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.421306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0839 c51e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.421306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.421306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.421306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.421306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.421307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.421307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.431334 LLDP, length 82 [|LLDP] 18:40:01.431334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.431334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0841 663e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.431334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.431334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.431334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.431334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.431335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.431335 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.431335 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.431335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.431335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.431335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.431335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.431335 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.441321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.441321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.441321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.441322 LLDP, length 82 [|LLDP] 18:40:01.441322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.441322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0849 075e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.441322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.441322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.441322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.441322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.441322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.441322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.441322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.441322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.441322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.451319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.451319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.451319 LLDP, length 82 [|LLDP] 18:40:01.451319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.451319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0850 a87e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.451319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.451319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.451319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.451319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.451320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.451320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.451320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.451320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.451320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.451320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.461319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.461319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.461319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.461319 LLDP, length 82 [|LLDP] 18:40:01.461319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.461320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0858 499e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.461320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.461320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.461320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.461320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.461320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.461320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.461320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.461320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.461320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.471316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.471316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.471316 LLDP, length 82 [|LLDP] 18:40:01.471316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.471316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 085f eabe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.471316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.471316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.471316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.471316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.471316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.471316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.471316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.471317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.471317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.471317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.481316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.481316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.481316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.481316 LLDP, length 82 [|LLDP] 18:40:01.481316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.481316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0867 8bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.481316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.481316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.481317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.481317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.481317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.481317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.481317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.481317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.481317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.491314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.491314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.491314 LLDP, length 82 [|LLDP] 18:40:01.491314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.491314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 086f 2cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.491315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.491315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.491315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.491315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.491315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.491315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.491315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.491315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.501308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.501309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.501309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.501309 LLDP, length 82 [|LLDP] 18:40:01.501309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.501309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0876 ce1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.501309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.501309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.501309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.511311 LLDP, length 82 [|LLDP] 18:40:01.511311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.511311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 087e 6f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.511311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.511311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.511311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.511311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.511311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.511311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.521309 LLDP, length 82 [|LLDP] 18:40:01.521309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.521310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0886 105e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.521310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.521310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.521310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.521310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.521310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.521310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.531319 LLDP, length 82 [|LLDP] 18:40:01.531320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.531320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 088d b17e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.531320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.531320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.531320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.531320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.531320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.531320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.531320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.531320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.531320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.531320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.531320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.531320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.541318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.541319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.541319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.541319 LLDP, length 82 [|LLDP] 18:40:01.541319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.541319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0895 529e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.541319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.541319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.541319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.541319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.541319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.541319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.541319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.541319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.541319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.551326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.551326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.551326 LLDP, length 82 [|LLDP] 18:40:01.551326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.551326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 089c f3be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.551326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.551326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.551326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.551327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.551327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.551327 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.551327 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.551327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.551327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.551327 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.561317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.561317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.561318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.561318 LLDP, length 82 [|LLDP] 18:40:01.561318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.561318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08a4 94de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.561318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.561318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.561318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.561318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.561318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.561318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.561318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.561318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.561318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.571317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.571317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.571317 LLDP, length 82 [|LLDP] 18:40:01.571317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.571317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08ac 35fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.571317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.571317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.571317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.571317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.571317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.571317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.571317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.571318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.571318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.571318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.581314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.581314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.581315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.581315 LLDP, length 82 [|LLDP] 18:40:01.581315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.581315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08b3 d71e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.581315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.581315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.581315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.581315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.581315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.581315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.581315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.581315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.581315 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.591315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.591315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.591315 LLDP, length 82 [|LLDP] 18:40:01.591315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.591315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08bb 783e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.591315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.591315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.591315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.591315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.591315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.591315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.591315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.591315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.601309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.601309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.601309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.601309 LLDP, length 82 [|LLDP] 18:40:01.601309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.601309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08c3 195e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.601309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.601309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.601309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.611308 LLDP, length 82 [|LLDP] 18:40:01.611308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.611308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08ca ba7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.611309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.611309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.611309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.611309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.611309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.611309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.621306 LLDP, length 82 [|LLDP] 18:40:01.621306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.621306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08d2 5b9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.621306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.621307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.621307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.621307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.621307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.621307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.631321 LLDP, length 82 [|LLDP] 18:40:01.631322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.631322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08d9 fcbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.631322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.631322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.631322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.631322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.631322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.631322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.631322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.631322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.631322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.631322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.631322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.631322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.641316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.641316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.641316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.641316 LLDP, length 82 [|LLDP] 18:40:01.641316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.641316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08e1 9dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.641317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.641317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.641317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.641317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.641317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.641317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.641317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.641317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.641317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.651319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.651319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.651319 LLDP, length 82 [|LLDP] 18:40:01.651319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.651319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08e9 3efe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.651319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.651319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.651319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.651319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.651319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.651319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.651319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.651320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.651320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.651320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.661317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.661317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.661317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.661317 LLDP, length 82 [|LLDP] 18:40:01.661317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.661317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08f0 e01e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.661317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.661317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.661317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.661317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.661317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.661317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.661317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.661317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.661318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.671318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.671318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.671318 LLDP, length 82 [|LLDP] 18:40:01.671318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.671318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08f8 813e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.671318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.671318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.671318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.671319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.671319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.671319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.671319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.671319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.671319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.671319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.681315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.681315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.681315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.681315 LLDP, length 82 [|LLDP] 18:40:01.681315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.681316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0900 225e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.681316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.681316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.681316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.681316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.681316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.681316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.681316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.681316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.681316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.691314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.691314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.691314 LLDP, length 82 [|LLDP] 18:40:01.691314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.691314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0907 c37e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.691314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.691314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.691314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.691314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.691314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.691314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.691314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.691315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.701307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.701307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.701307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.701307 LLDP, length 82 [|LLDP] 18:40:01.701307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.701307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 090f 649e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.701307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.701307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.701307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.711322 LLDP, length 82 [|LLDP] 18:40:01.711322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.711322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0917 05be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.711322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.711322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.711322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.711322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.711322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.711322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.721309 LLDP, length 82 [|LLDP] 18:40:01.721309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.721309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 091e a6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.721309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.721309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.721309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.721309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.721309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.721310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.731322 LLDP, length 82 [|LLDP] 18:40:01.731322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.731322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0926 47fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.731322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.731323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.731323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.731323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.731323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.731323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.731323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.731323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.731323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.731323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.731323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.731323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.741318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.741318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.741318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.741319 LLDP, length 82 [|LLDP] 18:40:01.741319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.741319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 092d e91e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.741319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.741319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.741319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.741319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.741319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.741319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.741319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.741319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.741319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.751319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.751319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.751319 LLDP, length 82 [|LLDP] 18:40:01.751319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.751319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0935 8a3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.751319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.751320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.751320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.751320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.751320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.751320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.751320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.751320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.751320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.751320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.761319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.761319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.761319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.761319 LLDP, length 82 [|LLDP] 18:40:01.761319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.761319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 093d 2b5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.761319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.761319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.761319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.761319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.761320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.761320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.761320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.761320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.761320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.771318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.771318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.771318 LLDP, length 82 [|LLDP] 18:40:01.771318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.771318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0944 cc7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.771319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.771319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.771319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.771319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.771319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.771319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.771319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.771319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.771319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.771319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.781319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.781319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.781319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.781319 LLDP, length 82 [|LLDP] 18:40:01.781319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.781319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 094c 6d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.781320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.781320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.781320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.781320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.781320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.781320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.781320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.781320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.781320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.791315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.791315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.791315 LLDP, length 82 [|LLDP] 18:40:01.791315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.791315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0954 0ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.791315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.791315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.791315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.791315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.791315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.791315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.791316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.791316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.801307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.801307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.801307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.801307 LLDP, length 82 [|LLDP] 18:40:01.801307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.801307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 095b afde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.801308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.801308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.801308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.811307 LLDP, length 82 [|LLDP] 18:40:01.811307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.811307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0963 50fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.811307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.811307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.811308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.811308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.811308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.811308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.821308 LLDP, length 82 [|LLDP] 18:40:01.821308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.821308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 096a f21e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.821308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.821309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.821309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.821309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.821309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.821309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.831319 LLDP, length 82 [|LLDP] 18:40:01.831319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.831319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0972 933e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.831319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.831319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.831319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.831319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.831319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.831319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.831319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.831319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.831319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.831319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.831319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.831320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.841318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.841318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.841318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.841319 LLDP, length 82 [|LLDP] 18:40:01.841319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.841319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 097a 345e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.841319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.841319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.841319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.841319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.841319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.841319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.841319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.841319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.841319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.851326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.851326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.851326 LLDP, length 82 [|LLDP] 18:40:01.851326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.851326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0981 d57e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.851326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.851326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.851326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.851326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.851326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.851326 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.851326 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.851326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.851327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.851327 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.861318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.861318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.861319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.861319 LLDP, length 82 [|LLDP] 18:40:01.861319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.861319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0989 769e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.861319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.861319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.861319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.861319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.861319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.861319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.861319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.861319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.861319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.871319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.871319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.871319 LLDP, length 82 [|LLDP] 18:40:01.871319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.871319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0991 17be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.871319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.871319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.871319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.871320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.871320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.871320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.871320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.871320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.871320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.871320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.881316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.881316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.881316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.881317 LLDP, length 82 [|LLDP] 18:40:01.881317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.881317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0998 b8de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.881317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.881317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.881317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.881317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.881317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.881317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.881317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.881317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.881317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.891314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.891314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.891314 LLDP, length 82 [|LLDP] 18:40:01.891315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.891315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09a0 59fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.891315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.891315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.891315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.891315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.891315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.891315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.891315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.891315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.901310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.901310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.901310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.901310 LLDP, length 82 [|LLDP] 18:40:01.901310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.901310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09a7 fb1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.901310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.901310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.901310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.911311 LLDP, length 82 [|LLDP] 18:40:01.911311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.911311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09af 9c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.911311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.911311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.911311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.911311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.911312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.911312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.921308 LLDP, length 82 [|LLDP] 18:40:01.921308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.921308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09b7 3d5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.921308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.921308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.921308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.921308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.921309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.921309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.931321 LLDP, length 82 [|LLDP] 18:40:01.931322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.931322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09be de7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.931322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.931322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.931322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.931322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.931322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.931322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.931322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.931322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.931322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.931323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.931323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.931323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.941318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.941319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.941319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.941319 LLDP, length 82 [|LLDP] 18:40:01.941319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.941319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09c6 7f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.941319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.941319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.941319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.941319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.941319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.941319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.941319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.941319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.941319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.951317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.951318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.951318 LLDP, length 82 [|LLDP] 18:40:01.951318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.951318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09ce 20be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.951318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.951318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.951318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.951318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.951318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.951318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.951318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.951318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.951318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.951318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.961320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.961320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.961320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.961321 LLDP, length 82 [|LLDP] 18:40:01.961321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.961321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09d5 c1de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.961321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.961321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.961321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.961321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.961321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.961321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.961321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.961321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.961321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.971319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.971319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.971319 LLDP, length 82 [|LLDP] 18:40:01.971319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.971320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09dd 62fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.971320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.971320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.971320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.971320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.971320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.971320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.971320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.971320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.971320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.971320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.981317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.981317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.981318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.981318 LLDP, length 82 [|LLDP] 18:40:01.981318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.981318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09e5 041e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.981318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.981318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.981318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.981318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.981318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.981318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.981318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:01.981318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:01.981318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:01.991317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:01.991317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.991317 LLDP, length 82 [|LLDP] 18:40:01.991317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:01.991317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09ec a53e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:01.991317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:01.991317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:01.991317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:01.991317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:01.991318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:01.991318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.991318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:01.991318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.001309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.001309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.001309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.001309 LLDP, length 82 [|LLDP] 18:40:02.001309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.001309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09f4 465e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.001309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.001309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.001309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.011307 LLDP, length 82 [|LLDP] 18:40:02.011307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.011307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09fb e77e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.011307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.011307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.011307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.011307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.011307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.011307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.021308 LLDP, length 82 [|LLDP] 18:40:02.021309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.021309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a03 889e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.021309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.021309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.021309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.021309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.021309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.021309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.031319 LLDP, length 82 [|LLDP] 18:40:02.031319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.031319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a0b 29be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.031319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.031320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.031320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.031320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.031320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.031320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.031320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.031320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.031320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.031320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.031320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.031320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.041320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.041320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.041320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.041320 LLDP, length 82 [|LLDP] 18:40:02.041320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.041320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a12 cade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.041320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.041320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.041320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.041320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.041321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.041321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.041321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.041321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.041321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.051316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.051316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.051317 LLDP, length 82 [|LLDP] 18:40:02.051317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.051317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a1a 6bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.051317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.051317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.051317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.051317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.051317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.051317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.051317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.051317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.051317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.051317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.061315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.061315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.061315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.061315 LLDP, length 82 [|LLDP] 18:40:02.061315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.061315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a22 0d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.061315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.061315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.061316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.061316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.061316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.061316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.061316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.061316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.061316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.071314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.071314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.071314 LLDP, length 82 [|LLDP] 18:40:02.071314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.071314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a29 ae3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.071315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.071315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.071315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.071315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.071315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.071315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.071315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.071315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.071315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.071315 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.081320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.081320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.081320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.081320 LLDP, length 82 [|LLDP] 18:40:02.081320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.081320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a31 4f5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.081320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.081320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.081320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.081320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.081320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.081320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.081320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.081321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.081321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.091315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.091315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.091315 LLDP, length 82 [|LLDP] 18:40:02.091315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.091315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a38 f07e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.091315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.091316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.091316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.091316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.091316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.091316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.091316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.091316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.101308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.101309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.101309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.101309 LLDP, length 82 [|LLDP] 18:40:02.101309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.101309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a40 919e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.101309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.101309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.101309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.111308 LLDP, length 82 [|LLDP] 18:40:02.111308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.111308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a48 32be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.111309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.111309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.111309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.111309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.111309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.111309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.121309 LLDP, length 82 [|LLDP] 18:40:02.121309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.121309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a4f d3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.121309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.121309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.121309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.121309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.121309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.121309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.131326 LLDP, length 82 [|LLDP] 18:40:02.131326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.131326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a57 74fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.131326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.131326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.131326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.131326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.131326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.131326 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.131326 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.131326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.131326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.131326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.131327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.131327 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.141336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.141336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.141336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.141336 LLDP, length 82 [|LLDP] 18:40:02.141336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.141336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a5f 161e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.141336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.141337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.141337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.141337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.141337 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.141337 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.141337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.141337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.141337 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.151317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.151318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.151318 LLDP, length 82 [|LLDP] 18:40:02.151318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.151318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a66 b73e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.151318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.151318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.151318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.151318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.151318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.151318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.151318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.151318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.151318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.151318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.161318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.161318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.161318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.161318 LLDP, length 82 [|LLDP] 18:40:02.161318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.161318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a6e 585e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.161318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.161319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.161319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.161319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.161319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.161319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.161319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.161319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.161319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.171319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.171319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.171319 LLDP, length 82 [|LLDP] 18:40:02.171319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.171319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a75 f97e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.171319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.171319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.171320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.171320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.171320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.171320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.171320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.171320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.171320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.171320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.181316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.181316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.181316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.181316 LLDP, length 82 [|LLDP] 18:40:02.181316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.181316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a7d 9a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.181316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.181316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.181316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.181316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.181316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.181316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.181317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.181317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.181317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.191313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.191313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.191313 LLDP, length 82 [|LLDP] 18:40:02.191313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.191313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a85 3bbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.191313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.191313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.191314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.191314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.191314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.191314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.191314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.191314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.201316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.201316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.201316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.201316 LLDP, length 82 [|LLDP] 18:40:02.201316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.201316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a8c dcde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.201316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.201316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.201316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.211307 LLDP, length 82 [|LLDP] 18:40:02.211307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.211307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a94 7dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.211307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.211307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.211307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.211307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.211307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.211307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.221308 LLDP, length 82 [|LLDP] 18:40:02.221308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.221309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a9c 1f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.221309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.221309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.221309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.221309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.221309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.221309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.231321 LLDP, length 82 [|LLDP] 18:40:02.231321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.231321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aa3 c03e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.231321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.231321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.231322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.231322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.231322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.231322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.231322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.231322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.231322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.231322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.231322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.231322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.241318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.241318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.241318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.241318 LLDP, length 82 [|LLDP] 18:40:02.241318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.241318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aab 615e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.241319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.241319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.241319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.241319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.241319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.241319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.241319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.241319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.241319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.251318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.251318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.251318 LLDP, length 82 [|LLDP] 18:40:02.251318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.251318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ab3 027e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.251318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.251318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.251318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.251318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.251318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.251318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.251318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.251318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.251319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.251319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.261314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.261314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.261314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.261314 LLDP, length 82 [|LLDP] 18:40:02.261314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.261314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aba a39e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.261315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.261315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.261315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.261315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.261315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.261315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.261315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.261315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.261315 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.271315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.271315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.271315 LLDP, length 82 [|LLDP] 18:40:02.271315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.271315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ac2 44be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.271316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.271316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.271316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.271316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.271316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.271316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.271316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.271316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.271316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.271316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.281320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.281320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.281320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.281320 LLDP, length 82 [|LLDP] 18:40:02.281320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.281320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ac9 e5de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.281320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.281320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.281320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.281320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.281320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.281320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.281321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.281321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.281321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.291316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.291316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.291316 LLDP, length 82 [|LLDP] 18:40:02.291316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.291316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ad1 86fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.291316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.291316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.291316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.291316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.291316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.291316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.291317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.291317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.301307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.301307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.301307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.301307 LLDP, length 82 [|LLDP] 18:40:02.301307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.301307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ad9 281e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.301308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.301308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.301308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.311306 LLDP, length 82 [|LLDP] 18:40:02.311306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.311306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ae0 c93e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.311306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.311306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.311307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.311307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.311307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.311307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.321305 LLDP, length 82 [|LLDP] 18:40:02.321305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.321305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ae8 6a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.321306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.321306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.321306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.321306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.321306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.321306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.331321 LLDP, length 82 [|LLDP] 18:40:02.331321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.331321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0af0 0b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.331321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.331321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.331321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.331321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.331321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.331321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.331321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.331321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.331321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.331321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.331322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.331322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.341318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.341318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.341318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.341318 LLDP, length 82 [|LLDP] 18:40:02.341318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.341318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0af7 ac9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.341318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.341318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.341318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.341318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.341318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.341318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.341318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.341318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.341319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.351317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.351317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.351317 LLDP, length 82 [|LLDP] 18:40:02.351317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.351317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aff 4dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.351317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.351317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.351317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.351317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.351317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.351318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.351318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.351318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.351318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.351318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.361322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.361322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.361322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.361322 LLDP, length 82 [|LLDP] 18:40:02.361322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.361322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b06 eede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.361322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.361322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.361322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.361322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.361322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.361322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.361322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.361323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.361323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.371319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.371319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.371319 LLDP, length 82 [|LLDP] 18:40:02.371319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.371319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b0e 8ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.371319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.371319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.371319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.371320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.371320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.371320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.371320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.371320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.371320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.371320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.381317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.381317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.381317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.381317 LLDP, length 82 [|LLDP] 18:40:02.381318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.381318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b16 311e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.381318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.381318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.381318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.381318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.381318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.381318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.381318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.381318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.381318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.391317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.391317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.391317 LLDP, length 82 [|LLDP] 18:40:02.391317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.391317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b1d d23e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.391317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.391317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.391317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.391317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.391317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.391317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.391317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.391318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.401310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.401310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.401311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.401311 LLDP, length 82 [|LLDP] 18:40:02.401311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.401311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b25 735e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.401311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.401311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.401311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.411307 LLDP, length 82 [|LLDP] 18:40:02.411308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.411308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b2d 147e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.411308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.411308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.411308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.411308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.411308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.411308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.421310 LLDP, length 82 [|LLDP] 18:40:02.421310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.421310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b34 b59e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.421310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.421310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.421310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.421310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.421310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.421310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.431320 LLDP, length 82 [|LLDP] 18:40:02.431320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.431320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b3c 56be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.431320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.431321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.431321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.431321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.431321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.431321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.431321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.431321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.431321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.431321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.431321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.431321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.441320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.441320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.441320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.441320 LLDP, length 82 [|LLDP] 18:40:02.441320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.441320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b43 f7de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.441320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.441320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.441321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.441321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.441321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.441321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.441321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.441321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.441321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.451322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.451322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.451322 LLDP, length 82 [|LLDP] 18:40:02.451322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.451322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b4b 98fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.451322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.451322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.451323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.451323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.451323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.451323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.451323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.451323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.451323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.451323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.461334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.461334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.461334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.461334 LLDP, length 82 [|LLDP] 18:40:02.461334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.461334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b53 3a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.461334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.461334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.461334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.461334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.461334 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.461335 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.461335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.461335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.461335 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.471327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.471327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.471327 LLDP, length 82 [|LLDP] 18:40:02.471327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.471327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b5a db3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.471327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.471327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.471327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.471327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.471327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.471327 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.471327 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.471328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.471328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.471328 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.481320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.481321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.481321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.481321 LLDP, length 82 [|LLDP] 18:40:02.481321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.481321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b62 7c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.481321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.481321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.481321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.481321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.481321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.481321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.481321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.481321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.481321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.491319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.491319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.491319 LLDP, length 82 [|LLDP] 18:40:02.491319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.491319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b6a 1d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.491319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.491319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.491319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.491319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.491319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.491319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.491319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.491320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.501312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.501312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.501312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.501312 LLDP, length 82 [|LLDP] 18:40:02.501312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.501312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b71 be9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.501312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.501312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.501312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.511310 LLDP, length 82 [|LLDP] 18:40:02.511310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.511310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b79 5fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.511311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.511311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.511311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.511311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.511311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.511311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.521310 LLDP, length 82 [|LLDP] 18:40:02.521310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.521310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b81 00de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.521310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.521310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.521310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.521310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.521310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.521310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.531323 LLDP, length 82 [|LLDP] 18:40:02.531323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.531323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b88 a1fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.531323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.531323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.531323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.531323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.531323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.531324 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.531324 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.531324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.531324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.531324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.531324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.531324 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.541319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.541319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.541319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.541319 LLDP, length 82 [|LLDP] 18:40:02.541319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.541319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b90 431e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.541319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.541319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.541319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.541319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.541320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.541320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.541320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.541320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.541320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.551322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.551322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.551322 LLDP, length 82 [|LLDP] 18:40:02.551322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.551322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b97 e43e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.551323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.551323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.551323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.551323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.551323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.551323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.551323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.551323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.551323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.551323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.561318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.561318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.561318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.561318 LLDP, length 82 [|LLDP] 18:40:02.561318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.561318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b9f 855e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.561318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.561318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.561318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.561318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.561318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.561318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.561319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.561319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.561319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.571326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.571326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.571326 LLDP, length 82 [|LLDP] 18:40:02.571326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.571326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ba7 267e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.571326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.571326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.571326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.571326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.571326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.571327 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.571327 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.571327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.571327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.571327 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.581315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.581315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.581315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.581315 LLDP, length 82 [|LLDP] 18:40:02.581315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.581315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bae c79e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.581315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.581316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.581316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.581316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.581316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.581316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.581316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.581316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.581316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.591315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.591315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.591315 LLDP, length 82 [|LLDP] 18:40:02.591315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.591315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bb6 68be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.591315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.591315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.591315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.591315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.591315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.591316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.591316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.591316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.601310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.601310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.601310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.601310 LLDP, length 82 [|LLDP] 18:40:02.601310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.601310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bbe 09de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.601310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.601310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.601310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.611309 LLDP, length 82 [|LLDP] 18:40:02.611309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.611309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bc5 aafe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.611310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.611310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.611310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.611310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.611310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.611310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.621307 LLDP, length 82 [|LLDP] 18:40:02.621308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.621308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bcd 4c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.621308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.621308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.621308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.621308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.621308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.621308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.631321 LLDP, length 82 [|LLDP] 18:40:02.631322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.631322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bd4 ed3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.631322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.631322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.631322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.631322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.631322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.631322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.631322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.631322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.631322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.631322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.631322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.631322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.641322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.641322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.641322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.641323 LLDP, length 82 [|LLDP] 18:40:02.641323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.641323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bdc 8e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.641323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.641323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.641323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.641323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.641323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.641323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.641323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.641323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.641323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.651322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.651322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.651322 LLDP, length 82 [|LLDP] 18:40:02.651322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.651322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0be4 2f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.651322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.651323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.651323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.651323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.651323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.651323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.651323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.651323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.651323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.651323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.661320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.661321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.661321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.661321 LLDP, length 82 [|LLDP] 18:40:02.661321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.661321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0beb d09e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.661321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.661321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.661321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.661321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.661321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.661321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.661321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.661321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.661322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.671320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.671321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.671321 LLDP, length 82 [|LLDP] 18:40:02.671321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.671321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bf3 71be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.671321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.671321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.671321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.671321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.671321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.671321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.671321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.671321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.671321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.671321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.681320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.681320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.681320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.681320 LLDP, length 82 [|LLDP] 18:40:02.681320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.681320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bfb 12de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.681320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.681320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.681320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.681321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.681321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.681321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.681321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.681321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.681321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.691315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.691315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.691315 LLDP, length 82 [|LLDP] 18:40:02.691315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.691315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c02 b3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.691315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.691315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.691315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.691316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.691316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.691316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.691316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.691316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.701309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.701309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.701309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.701309 LLDP, length 82 [|LLDP] 18:40:02.701309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.701309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c0a 551e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.701309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.701309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.701309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.711314 LLDP, length 82 [|LLDP] 18:40:02.711314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.711315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c11 f63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.711315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.711315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.711315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.711315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.711315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.711315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.721313 LLDP, length 82 [|LLDP] 18:40:02.721313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.721313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c19 975e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.721313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.721313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.721313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.721313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.721313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.721313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.731325 LLDP, length 82 [|LLDP] 18:40:02.731325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.731325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c21 387e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.731325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.731325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.731325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.731325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.731326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.731326 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.731326 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.731326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.731326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.731326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.731326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.731326 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.741319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.741319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.741319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.741319 LLDP, length 82 [|LLDP] 18:40:02.741319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.741319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c28 d99e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.741319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.741319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.741319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.741319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.741320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.741320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.741320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.741320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.741320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.751317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.751317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.751317 LLDP, length 82 [|LLDP] 18:40:02.751317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.751317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c30 7abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.751317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.751317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.751317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.751317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.751317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.751317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.751317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.751318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.751318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.751318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.761319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.761319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.761319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.761319 LLDP, length 82 [|LLDP] 18:40:02.761319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.761319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c38 1bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.761320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.761320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.761320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.761320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.761320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.761320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.761320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.761320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.761320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.771315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.771315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.771315 LLDP, length 82 [|LLDP] 18:40:02.771316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.771316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c3f bcfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.771316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.771316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.771316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.771316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.771316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.771316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.771316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.771316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.771316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.771316 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.781321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.781321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.781321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.781321 LLDP, length 82 [|LLDP] 18:40:02.781321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.781321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c47 5e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.781321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.781321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.781321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.781322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.781322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.781322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.781322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.781322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.781322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.791316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.791316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.791316 LLDP, length 82 [|LLDP] 18:40:02.791316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.791316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c4e ff3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.791316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.791317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.791317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.791317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.791317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.791317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.791317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.791317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.801310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.801310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.801310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.801310 LLDP, length 82 [|LLDP] 18:40:02.801310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.801310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c56 a05e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.801310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.801310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.801310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.811310 LLDP, length 82 [|LLDP] 18:40:02.811310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.811310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c5e 417e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.811310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.811310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.811310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.811310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.811310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.811310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.821310 LLDP, length 82 [|LLDP] 18:40:02.821310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.821310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c65 e29e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.821310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.821310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.821310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.821310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.821310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.821310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.831320 LLDP, length 82 [|LLDP] 18:40:02.831320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.831320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c6d 83be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.831320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.831321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.831321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.831321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.831321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.831321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.831321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.831321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.831321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.831321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.831321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.831321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.841317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.841317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.841317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.841317 LLDP, length 82 [|LLDP] 18:40:02.841317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.841318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c75 24de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.841318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.841318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.841318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.841318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.841318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.841318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.841318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.841318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.841318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.851318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.851318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.851318 LLDP, length 82 [|LLDP] 18:40:02.851318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.851318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c7c c5fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.851318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.851318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.851319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.851319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.851319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.851319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.851319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.851319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.851319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.851319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.861321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.861321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.861321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.861321 LLDP, length 82 [|LLDP] 18:40:02.861321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.861321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c84 671e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.861321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.861321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.861321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.861321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.861322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.861322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.861322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.861322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.861322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.871321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.871321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.871321 LLDP, length 82 [|LLDP] 18:40:02.871321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.871321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c8c 083e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.871321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.871321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.871321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.871321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.871321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.871321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.871321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.871322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.871322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.871322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.881316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.881316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.881316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.881316 LLDP, length 82 [|LLDP] 18:40:02.881316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.881316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c93 a95e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.881316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.881317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.881317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.881317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.881317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.881317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.881317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.881317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.881317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.891321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.891321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.891321 LLDP, length 82 [|LLDP] 18:40:02.891321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.891321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c9b 4a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.891321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.891321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.891321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.891321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.891321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.891321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.891322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.891322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.901309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.901309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.901309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.901309 LLDP, length 82 [|LLDP] 18:40:02.901309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.901309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ca2 eb9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.901309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.901309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.901309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.911309 LLDP, length 82 [|LLDP] 18:40:02.911309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.911309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0caa 8cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.911309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.911309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.911309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.911310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.911310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.911310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.921308 LLDP, length 82 [|LLDP] 18:40:02.921308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.921309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cb2 2dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.921309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.921309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.921309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.921309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.921309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.921309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.931321 LLDP, length 82 [|LLDP] 18:40:02.931321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.931321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cb9 cefe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.931321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.931322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.931322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.931322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.931322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.931322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.931322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.931322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.931322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.931322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.931322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.931322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.941316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.941316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.941316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.941316 LLDP, length 82 [|LLDP] 18:40:02.941316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.941316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cc1 701e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.941316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.941316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.941316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.941317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.941317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.941317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.941317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.941317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.941317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.951319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.951319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.951319 LLDP, length 82 [|LLDP] 18:40:02.951319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.951319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cc9 113e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.951319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.951319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.951319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.951319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.951319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.951320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.951320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.951320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.951320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.951320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.961317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.961317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.961317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.961317 LLDP, length 82 [|LLDP] 18:40:02.961317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.961317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cd0 b25e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.961317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.961317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.961317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.961317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.961318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.961318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.961318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.961318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.961318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.971325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.971325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.971325 LLDP, length 82 [|LLDP] 18:40:02.971325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.971325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cd8 537e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.971325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.971325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.971325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.971325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.971326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.971326 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.971326 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.971326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.971326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.971326 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.981319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.981319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.981319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.981319 LLDP, length 82 [|LLDP] 18:40:02.981319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.981319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cdf f49e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.981319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.981320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.981320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.981320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.981320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.981320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.981320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:02.981320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:02.981320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:02.991316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:02.991316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.991317 LLDP, length 82 [|LLDP] 18:40:02.991317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:02.991317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ce7 95be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:02.991317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:02.991317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:02.991317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:02.991317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:02.991317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:02.991317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.991317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:02.991317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.001309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.001310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.001310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.001310 LLDP, length 82 [|LLDP] 18:40:03.001310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.001310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cef 36de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.001310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.001310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.001310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.011313 LLDP, length 82 [|LLDP] 18:40:03.011313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.011313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cf6 d7fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.011314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.011314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.011314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.011314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.011314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.011314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.021311 LLDP, length 82 [|LLDP] 18:40:03.021311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.021311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cfe 791e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.021311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.021311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.021311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.021311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.021311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.021311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.031320 LLDP, length 82 [|LLDP] 18:40:03.031320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.031320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d06 1a3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.031320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.031320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.031320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.031320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.031320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.031320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.031321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.031321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.031321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.031321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.031321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.031321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.041320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.041320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.041320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.041321 LLDP, length 82 [|LLDP] 18:40:03.041321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.041321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d0d bb5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.041321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.041321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.041321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.041321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.041321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.041321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.041321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.041321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.041321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.051318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.051318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.051318 LLDP, length 82 [|LLDP] 18:40:03.051318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.051318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d15 5c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.051318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.051318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.051318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.051318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.051318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.051319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.051319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.051319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.051319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.051319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.061318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.061318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.061318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.061318 LLDP, length 82 [|LLDP] 18:40:03.061318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.061318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d1c fd9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.061318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.061318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.061319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.061319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.061319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.061319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.061319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.061319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.061319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.071319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.071319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.071319 LLDP, length 82 [|LLDP] 18:40:03.071319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.071319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d24 9ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.071319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.071319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.071319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.071319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.071319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.071319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.071319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.071320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.071320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.071320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.081320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.081320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.081321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.081321 LLDP, length 82 [|LLDP] 18:40:03.081321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.081321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d2c 3fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.081321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.081321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.081321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.081321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.081321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.081321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.081321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.081321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.081321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.091318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.091318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.091318 LLDP, length 82 [|LLDP] 18:40:03.091318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.091318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d33 e0fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.091318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.091318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.091318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.091318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.091318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.091318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.091318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.091319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.101309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.101309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.101309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.101309 LLDP, length 82 [|LLDP] 18:40:03.101309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.101309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d3b 821e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.101309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.101309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.101309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.111311 LLDP, length 82 [|LLDP] 18:40:03.111311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.111311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d43 233e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.111311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.111311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.111311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.111311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.111311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.111311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.121324 LLDP, length 82 [|LLDP] 18:40:03.121324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.121324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d4a c45e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.121324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.121325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.121325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.121325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.121325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.121325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.131323 LLDP, length 82 [|LLDP] 18:40:03.131323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.131324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d52 657e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.131324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.131324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.131324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.131324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.131324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.131324 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.131324 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.131324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.131324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.131324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.131324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.131324 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.141320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.141320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.141320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.141320 LLDP, length 82 [|LLDP] 18:40:03.141320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.141321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d5a 069e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.141321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.141321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.141321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.141321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.141321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.141321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.141321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.141321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.141321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.151320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.151320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.151320 LLDP, length 82 [|LLDP] 18:40:03.151320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.151320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d61 a7be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.151320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.151320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.151320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.151320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.151320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.151320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.151321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.151321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.151321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.151321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.161321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.161321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.161321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.161321 LLDP, length 82 [|LLDP] 18:40:03.161321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.161322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d69 48de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.161322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.161322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.161322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.161322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.161322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.161322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.161322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.161322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.161322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.171319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.171319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.171319 LLDP, length 82 [|LLDP] 18:40:03.171319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.171319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d70 e9fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.171319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.171319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.171319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.171319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.171319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.171319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.171319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.171319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.171320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.171320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.181317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.181317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.181317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.181317 LLDP, length 82 [|LLDP] 18:40:03.181317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.181317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d78 8b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.181317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.181318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.181318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.181318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.181318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.181318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.181318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.181318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.181318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.191313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.191313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.191313 LLDP, length 82 [|LLDP] 18:40:03.191313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.191313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d80 2c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.191313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.191313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.191313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.191314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.191314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.191314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.191314 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.191314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.201467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.201467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.201467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.201467 LLDP, length 82 [|LLDP] 18:40:03.201467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.201467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d87 cd5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.201467 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.201467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.201468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.211309 LLDP, length 82 [|LLDP] 18:40:03.211309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.211309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d8f 6e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.211309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.211309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.211309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.211309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.211309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.211309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.221312 LLDP, length 82 [|LLDP] 18:40:03.221312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.221313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d97 0f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.221313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.221313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.221313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.221313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.221313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.221313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.231330 LLDP, length 82 [|LLDP] 18:40:03.231330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.231330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d9e b0be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.231330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.231330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.231330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.231330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.231330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.231330 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.231331 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.231331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.231331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.231331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.231331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.231331 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.241324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.241324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.241324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.241324 LLDP, length 82 [|LLDP] 18:40:03.241324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.241324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0da6 51de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.241324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.241324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.241324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.241325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.241325 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.241325 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.241325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.241325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.241325 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.251318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.251318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.251319 LLDP, length 82 [|LLDP] 18:40:03.251319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.251319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dad f2fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.251319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.251319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.251319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.251319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.251319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.251319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.251319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.251319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.251319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.251319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.261319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.261319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.261319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.261319 LLDP, length 82 [|LLDP] 18:40:03.261319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.261319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0db5 941e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.261319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.261319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.261320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.261320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.261320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.261320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.261320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.261320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.261320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.271320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.271320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.271320 LLDP, length 82 [|LLDP] 18:40:03.271320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.271320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dbd 353e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.271320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.271320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.271320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.271320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.271320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.271320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.271321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.271321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.271321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.271321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.281320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.281320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.281321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.281321 LLDP, length 82 [|LLDP] 18:40:03.281321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.281321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dc4 d65e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.281321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.281321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.281321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.281321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.281321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.281321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.281321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.281321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.281321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.291315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.291315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.291315 LLDP, length 82 [|LLDP] 18:40:03.291315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.291316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dcc 777e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.291316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.291316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.291316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.291316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.291316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.291316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.291316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.291316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.301310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.301310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.301310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.301310 LLDP, length 82 [|LLDP] 18:40:03.301310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.301310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dd4 189e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.301310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.301310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.301310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.311310 LLDP, length 82 [|LLDP] 18:40:03.311310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.311310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ddb b9be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.311310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.311310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.311310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.311310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.311310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.311310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.321312 LLDP, length 82 [|LLDP] 18:40:03.321312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.321312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0de3 5ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.321312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.321312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.321312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.321312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.321312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.321312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.331322 LLDP, length 82 [|LLDP] 18:40:03.331322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.331323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dea fbfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.331323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.331323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.331323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.331323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.331323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.331323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.331323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.331323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.331323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.331323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.331323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.331323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.341322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.341322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.341322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.341322 LLDP, length 82 [|LLDP] 18:40:03.341322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.341322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0df2 9d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.341323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.341323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.341323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.341323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.341323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.341323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.341323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.341323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.341323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.351320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.351320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.351320 LLDP, length 82 [|LLDP] 18:40:03.351320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.351320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dfa 3e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.351320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.351320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.351320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.351321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.351321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.351321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.351321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.351321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.351321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.351321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.361319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.361320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.361320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.361320 LLDP, length 82 [|LLDP] 18:40:03.361320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.361320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e01 df5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.361320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.361320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.361320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.361320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.361320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.361320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.361320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.361320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.361320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.371316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.371316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.371316 LLDP, length 82 [|LLDP] 18:40:03.371316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.371317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e09 807e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.371317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.371317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.371317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.371317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.371317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.371317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.371317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.371317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.371317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.371317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.381320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.381320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.381320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.381320 LLDP, length 82 [|LLDP] 18:40:03.381320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.381320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e11 219e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.381320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.381320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.381320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.381320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.381320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.381320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.381321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.381321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.381321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.391317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.391317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.391317 LLDP, length 82 [|LLDP] 18:40:03.391317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.391317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e18 c2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.391317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.391317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.391317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.391317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.391317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.391317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.391317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.391318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.401310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.401310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.401310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.401310 LLDP, length 82 [|LLDP] 18:40:03.401310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.401310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e20 63de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.401310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.401310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.401310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.411310 LLDP, length 82 [|LLDP] 18:40:03.411310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.411310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e28 04fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.411310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.411310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.411310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.411310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.411310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.411310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.421309 LLDP, length 82 [|LLDP] 18:40:03.421309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.421309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e2f a61e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.421309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.421310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.421310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.421310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.421310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.421310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.431329 LLDP, length 82 [|LLDP] 18:40:03.431329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.431329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e37 473e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.431329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.431329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.431329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.431329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.431329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.431329 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.431329 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.431329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.431329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.431329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.431329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.431330 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.441319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.441319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.441319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.441319 LLDP, length 82 [|LLDP] 18:40:03.441319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.441319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e3e e85e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.441319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.441319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.441319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.441319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.441319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.441319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.441319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.441319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.441320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.451320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.451321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.451321 LLDP, length 82 [|LLDP] 18:40:03.451321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.451321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e46 897e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.451321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.451321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.451321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.451321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.451321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.451321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.451321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.451321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.451321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.451322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.461322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.461322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.461322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.461323 LLDP, length 82 [|LLDP] 18:40:03.461323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.461323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e4e 2a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.461323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.461323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.461323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.461323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.461323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.461323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.461323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.461323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.461323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.471320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.471320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.471320 LLDP, length 82 [|LLDP] 18:40:03.471321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.471321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e55 cbbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.471321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.471321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.471321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.471321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.471321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.471321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.471321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.471321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.471321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.471321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.481319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.481319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.481319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.481319 LLDP, length 82 [|LLDP] 18:40:03.481319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.481319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e5d 6cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.481319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.481320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.481320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.481320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.481320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.481320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.481320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.481320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.481320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.491316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.491316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.491316 LLDP, length 82 [|LLDP] 18:40:03.491316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.491316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e65 0dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.491316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.491316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.491316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.491317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.491317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.491317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.491317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.491317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.501310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.501310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.501310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.501310 LLDP, length 82 [|LLDP] 18:40:03.501310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.501310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e6c af1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.501310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.501310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.501310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.511312 LLDP, length 82 [|LLDP] 18:40:03.511312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.511312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e74 503e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.511312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.511312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.511312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.511312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.511312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.511312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.521309 LLDP, length 82 [|LLDP] 18:40:03.521309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.521309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e7b f15e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.521309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.521309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.521309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.521309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.521310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.521310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.531324 LLDP, length 82 [|LLDP] 18:40:03.531324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.531324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e83 927e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.531324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.531324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.531325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.531325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.531325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.531325 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.531325 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.531325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.531325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.531325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.531325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.531325 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.541321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.541322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.541322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.541322 LLDP, length 82 [|LLDP] 18:40:03.541322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.541322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e8b 339e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.541322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.541322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.541322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.541322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.541322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.541322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.541322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.541322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.541322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.551316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.551316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.551316 LLDP, length 82 [|LLDP] 18:40:03.551316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.551316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e92 d4be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.551316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.551316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.551316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.551316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.551317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.551317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.551317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.551317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.551317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.551317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.561318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.561318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.561318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.561318 LLDP, length 82 [|LLDP] 18:40:03.561318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.561318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e9a 75de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.561318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.561318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.561318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.561318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.561319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.561319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.561319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.561319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.561319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.571319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.571319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.571319 LLDP, length 82 [|LLDP] 18:40:03.571319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.571319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ea2 16fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.571319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.571319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.571319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.571320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.571320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.571320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.571320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.571320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.571320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.571320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.581319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.581319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.581319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.581319 LLDP, length 82 [|LLDP] 18:40:03.581319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.581319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ea9 b81e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.581319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.581319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.581319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.581320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.581320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.581320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.581320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.581320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.581320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.591316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.591317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.591317 LLDP, length 82 [|LLDP] 18:40:03.591317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.591317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eb1 593e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.591317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.591317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.591317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.591317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.591317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.591317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.591317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.591317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.601310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.601310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.601310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.601310 LLDP, length 82 [|LLDP] 18:40:03.601310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.601310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eb8 fa5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.601310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.601310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.601310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.611310 LLDP, length 82 [|LLDP] 18:40:03.611310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.611310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ec0 9b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.611310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.611310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.611310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.611310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.611310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.611310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.621309 LLDP, length 82 [|LLDP] 18:40:03.621309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.621309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ec8 3c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.621309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.621309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.621309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.621309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.621309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.621309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.631321 LLDP, length 82 [|LLDP] 18:40:03.631321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.631321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ecf ddbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.631321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.631322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.631322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.631322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.631322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.631322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.631322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.631322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.631322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.631322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.631322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.631322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.641332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.641332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.641332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.641332 LLDP, length 82 [|LLDP] 18:40:03.641332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.641332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ed7 7ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.641332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.641332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.641333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.641333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.641333 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.641333 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.641333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.641333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.641333 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.651349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.651349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.651349 LLDP, length 82 [|LLDP] 18:40:03.651349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.651349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0edf 1ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.651349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.651350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.651350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.651350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.651350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.651350 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.651350 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.651350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.651350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.651350 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.661343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.661343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.661343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.661343 LLDP, length 82 [|LLDP] 18:40:03.661343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.661343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ee6 c11e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.661343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.661343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.661343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.661343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.661343 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.661344 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.661344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.661344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.661344 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.671327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.671327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.671327 LLDP, length 82 [|LLDP] 18:40:03.671327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.671327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eee 623e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.671327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.671327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.671327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.671327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.671327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.671328 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.671328 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.671328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.671328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.671328 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.681326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.681326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.681326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.681326 LLDP, length 82 [|LLDP] 18:40:03.681326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.681326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ef6 035e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.681326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.681326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.681327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.681327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.681327 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.681327 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.681327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.681327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.681327 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.691315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.691315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.691316 LLDP, length 82 [|LLDP] 18:40:03.691316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.691316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0efd a47e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.691316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.691316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.691316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.691316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.691316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.691316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.691316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.691316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.701307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.701307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.701307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.701307 LLDP, length 82 [|LLDP] 18:40:03.701308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.701308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f05 459e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.701308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.701308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.701308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.711308 LLDP, length 82 [|LLDP] 18:40:03.711308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.711308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f0c e6be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.711308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.711309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.711309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.711309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.711309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.711309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.721315 LLDP, length 82 [|LLDP] 18:40:03.721315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.721315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f14 87de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.721315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.721315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.721315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.721315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.721315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.721315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.731323 LLDP, length 82 [|LLDP] 18:40:03.731323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.731323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f1c 28fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.731323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.731323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.731324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.731324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.731324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.731324 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.731324 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.731324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.731324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.731324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.731324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.731324 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.741319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.741319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.741319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.741319 LLDP, length 82 [|LLDP] 18:40:03.741319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.741319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f23 ca1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.741319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.741319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.741319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.741320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.741320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.741320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.741320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.741320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.741320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.751325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.751325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.751326 LLDP, length 82 [|LLDP] 18:40:03.751326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.751326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f2b 6b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.751326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.751326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.751326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.751326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.751326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.751326 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.751326 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.751326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.751326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.751326 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.761314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.761314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.761314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.761314 LLDP, length 82 [|LLDP] 18:40:03.761314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.761314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f33 0c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.761314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.761314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.761314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.761314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.761315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.761315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.761315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.761315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.761315 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.771316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.771316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.771316 LLDP, length 82 [|LLDP] 18:40:03.771316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.771316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f3a ad7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.771316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.771316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.771316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.771316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.771316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.771316 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.771316 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.771316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.771316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.771317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.781318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.781318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.781318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.781318 LLDP, length 82 [|LLDP] 18:40:03.781318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.781318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f42 4e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.781318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.781318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.781318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.781318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.781318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.781318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.781318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.781319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.781319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.791314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.791314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.791314 LLDP, length 82 [|LLDP] 18:40:03.791314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.791314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f49 efbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.791314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.791314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.791314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.791314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.791314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.791314 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.791315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.791315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.801307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.801307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.801307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.801307 LLDP, length 82 [|LLDP] 18:40:03.801307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.801307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f51 90de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.801307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.801307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.801307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.811310 LLDP, length 82 [|LLDP] 18:40:03.811310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.811310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f59 31fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.811310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.811310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.811310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.811311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.811311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.811311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.821307 LLDP, length 82 [|LLDP] 18:40:03.821307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.821307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f60 d31e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.821307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.821307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.821307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.821307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.821307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.821308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.831319 LLDP, length 82 [|LLDP] 18:40:03.831319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.831319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f68 743e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.831319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.831319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.831319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.831319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.831319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.831319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.831319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.831319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.831319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.831320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.831320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.831320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.841317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.841318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.841318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.841318 LLDP, length 82 [|LLDP] 18:40:03.841318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.841318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f70 155e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.841318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.841318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.841318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.841318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.841318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.841318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.841318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.841318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.841318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.851312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.851312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.851312 LLDP, length 82 [|LLDP] 18:40:03.851312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.851312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f77 b67e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.851312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.851313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.851313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.851313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.851313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.851313 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.851313 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.851313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.851313 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.851313 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.861318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.861318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.861319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.861319 LLDP, length 82 [|LLDP] 18:40:03.861319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.861319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f7f 579e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.861319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.861319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.861319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.861319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.861319 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.861319 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.861319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.861319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.861319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.871321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.871321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.871321 LLDP, length 82 [|LLDP] 18:40:03.871321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.871321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f86 f8be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.871321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.871321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.871321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.871321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.871321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.871322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.871322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.871322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.871322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.871322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.881317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.881317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.881317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.881317 LLDP, length 82 [|LLDP] 18:40:03.881317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.881317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f8e 99de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.881317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.881317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.881317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.881317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.881317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.881317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.881318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.881318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.881318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.891316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.891316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.891316 LLDP, length 82 [|LLDP] 18:40:03.891316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.891316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f96 3afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.891316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.891316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.891317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.891317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.891317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.891317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.891317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.891317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.901310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.901310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.901310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.901310 LLDP, length 82 [|LLDP] 18:40:03.901310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.901310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f9d dc1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.901310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.901310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.901310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.911310 LLDP, length 82 [|LLDP] 18:40:03.911311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.911311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fa5 7d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.911311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.911311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.911311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.911311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.911311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.911311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.921309 LLDP, length 82 [|LLDP] 18:40:03.921310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.921310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fad 1e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.921310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.921310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.921310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.921310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.921310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.921310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.931327 LLDP, length 82 [|LLDP] 18:40:03.931327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.931327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fb4 bf7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.931327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.931327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.931327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.931327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.931327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.931327 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.931327 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.931327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.931327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.931327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.931328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.931328 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.941318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.941318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.941318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.941318 LLDP, length 82 [|LLDP] 18:40:03.941318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.941318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fbc 609e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.941318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.941318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.941318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.941318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.941318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.941318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.941318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.941319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.941319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.951323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.951323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.951323 LLDP, length 82 [|LLDP] 18:40:03.951323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.951323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fc4 01be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.951323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.951323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.951323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.951323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.951323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.951323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.951323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.951323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.951324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.951324 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.961317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.961317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.961317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.961317 LLDP, length 82 [|LLDP] 18:40:03.961317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.961317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fcb a2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.961317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.961317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.961317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.961318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.961318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.961318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.961318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.961318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.961318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.971317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.971318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.971318 LLDP, length 82 [|LLDP] 18:40:03.971318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.971318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fd3 43fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.971318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.971318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.971318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.971318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.971318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.971318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.971318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.971318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.971318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.971318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.981321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.981321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.981321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.981321 LLDP, length 82 [|LLDP] 18:40:03.981321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.981321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fda e51e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.981321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.981321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.981321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.981321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.981321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.981322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.981322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:03.981322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:03.981322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:03.991318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:03.991318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.991318 LLDP, length 82 [|LLDP] 18:40:03.991318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:03.991318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fe2 863e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:03.991318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:03.991318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:03.991318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:03.991318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:03.991318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:03.991318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.991318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:03.991318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:04.001309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.001309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.001309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.001309 LLDP, length 82 [|LLDP] 18:40:04.001309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.001310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fea 275e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.001310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.001310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.001310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.011309 LLDP, length 82 [|LLDP] 18:40:04.011310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.011310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ff1 c87e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.011310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.011310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.011310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.011310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.011310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.011310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.021309 LLDP, length 82 [|LLDP] 18:40:04.021309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.021309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ff9 699e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.021309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.021309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.021309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.021309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.021309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.021309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.031320 LLDP, length 82 [|LLDP] 18:40:04.031320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.031320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1001 0abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.031320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.031320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.031321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:04.031321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.031321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.031321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.031321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.031321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.031321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.031321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:04.031321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:04.031321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:04.041321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.041321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.041321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.041321 LLDP, length 82 [|LLDP] 18:40:04.041321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.041321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1008 abde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.041321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.041321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.041321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:04.041321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.041322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.041322 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.041322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:04.041322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:04.041322 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:04.051317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.051317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.051317 LLDP, length 82 [|LLDP] 18:40:04.051317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.051317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1010 4cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.051317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.051317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.051318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:04.051318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.051318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.051318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.051318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.051318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:04.051318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:04.051318 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:04.061317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.061317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.061317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.061317 LLDP, length 82 [|LLDP] 18:40:04.061317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.061317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1017 ee1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.061317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.061317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.061317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:04.061317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.061317 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.061317 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.061317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:04.061317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:04.061317 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:04.071318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.071318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.071318 LLDP, length 82 [|LLDP] 18:40:04.071318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.071318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 101f 8f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.071318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.071318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.071318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:04.071318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.071318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.071318 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.071318 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.071319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:04.071319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:04.071319 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:04.081320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.081320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.081320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.081320 LLDP, length 82 [|LLDP] 18:40:04.081320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.081320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1027 305e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.081320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.081320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.081320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:04.081320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.081320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.081320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.081320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:04.081321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:04.081321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:04.091314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.091314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.091314 LLDP, length 82 [|LLDP] 18:40:04.091315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.091315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 102e d17e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.091315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.091315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.091315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:04.091315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.091315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.091315 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.091315 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.091315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:04.101326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.101326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.101326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.101326 LLDP, length 82 [|LLDP] 18:40:04.101326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.101326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1036 729e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.101326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.101326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.101326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.111310 LLDP, length 82 [|LLDP] 18:40:04.111310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.111311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 103e 13be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.111311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.111311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.111311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.111311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.111311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.111311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.121308 LLDP, length 82 [|LLDP] 18:40:04.121308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.121308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1045 b4de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.121308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.121309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.121309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.121309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.121309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.121309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.131322 LLDP, length 82 [|LLDP] 18:40:04.131322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.131322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 104d 55fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.131322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.131322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.131322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:04.131323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.131323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.131323 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.131323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.131323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.131323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.131323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:04.131323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:04.131323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:04.141320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.141320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.141320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.141320 LLDP, length 82 [|LLDP] 18:40:04.141320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.141321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1054 f71e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.141321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.141321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.141321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:04.141321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.141321 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.141321 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.141321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:04.141321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:04.141321 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:04.151322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.151322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.151322 LLDP, length 82 [|LLDP] 18:40:04.151322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.151322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 105c 983e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.151322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.151322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.151322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:04.151322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.151322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.151322 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.151323 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.151323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:04.151323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:04.151323 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:40:04.161319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:40:04.161319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.161319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:40:04.161319 LLDP, length 82 [|LLDP] 18:40:04.161319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:40:04.161319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1064 395e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:40:04.161319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:40:04.161320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:40:04.161320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:40:04.161320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:40:04.161320 IP 1.1.1.2.39760 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.161320 IP 192.168.1.1.7185 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:40:04.161320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:40:04.161320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:40:04.161320 IP 1.1.1.2.58359 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 5763 packets captured 5763 packets received by filter 0 packets dropped by kernel
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_port_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=45, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:40:12 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=45, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=45, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=10] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=45, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=45, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=45, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=12] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=45, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=45, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=45, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=14] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=45, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=45, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=16] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:40:14 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=45, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=18] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:40:14 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=45, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=45, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=45, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=20] Channel closed DEBUG agg1:Logger.py:156 []
Passed functional/bridging/test_bridging_forwarding.py::test_bridging_backward_forwarding 165.32
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_backward_forwarding">Starting testcase:test_bridging_backward_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2302' coro=<test_bridging_backward_forwarding() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=45, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=46] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=46] Local address: 172.17.0.3, port 50952 INFO asyncssh:logging.py:92 [conn=46] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=46] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=46] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=46, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:40:14 PM UTC INFO asyncssh:logging.py:92 [conn=46, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=46, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=46, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=46, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=46, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=46, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=46, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=46, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=46, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=46, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=46, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=8] Command: bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=46, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:6' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6c95d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:5 TI streamA SIP-DIP N/A Tx 241 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:5 TI streamB SIP-DIP N/A Tx 241 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=46, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=46, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=46, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ca:b2:f4","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_backward_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=46, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=46, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:42:59 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=46, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=46, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=14] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:42:59 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=46, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=46, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=46, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":76,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=46, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=46, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=46, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=18] Channel closed DEBUG agg1:Logger.py:156
Passed functional/bridging/test_bridging_forwarding.py::test_bridging_forward_block_different_packets 197.61
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_forward_block_different_packets">Starting testcase:test_bridging_forward_block_different_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2330' coro=<test_bridging_forward_block_different_packets() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:152> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=46, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=47] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=47] Local address: 172.17.0.3, port 49036 INFO asyncssh:logging.py:92 [conn=47] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=47] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=47] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=47, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:43:00 PM UTC INFO asyncssh:logging.py:92 [conn=47, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=47, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=47, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=47, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=47, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=47, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=47, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=47, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=47, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e866890>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_Broadcast SIP-DIP N/A Tx 444 Rx 444 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_Reserved_MC SIP-DIP N/A Tx 444 Rx 444 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 444 Rx 444 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 444 Rx 444 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_OSPFIGP SIP-DIP N/A Tx 444 Rx 444 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 444 Rx 444 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 444 Rx 444 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 444 Rx 444 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_VRRP SIP-DIP N/A Tx 444 Rx 444 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_IGMP SIP-DIP N/A Tx 444 Rx 444 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_forward_block_different_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=47, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=47, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:46:16 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=47, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=9] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=47, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=10] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:46:17 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=47, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=47, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=47, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":77,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=47, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=47, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=47, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=14] Channel closed DEBUG agg1:Logger.py:156
Passed functional/bridging/test_bridging_forwarding.py::test_bridging_fdb_flush_on_down 131.79
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_fdb_flush_on_down">Starting testcase:test_bridging_fdb_flush_on_down from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2354' coro=<test_bridging_fdb_flush_on_down() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:345> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=47, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=48] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=48] Local address: 172.17.0.3, port 49868 INFO asyncssh:logging.py:92 [conn=48] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=48] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=48] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=48, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:46:17 PM UTC INFO asyncssh:logging.py:92 [conn=48, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=48, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=48, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=48, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=48, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=48, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=48, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=48, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=8] Command: bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=48, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_11.0.0.1/24', 'count': 1, 'ip': '11.0.0.1', 'gw': '11.0.0.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.2/24', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_11.0.0.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e8677c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI bridge SIP-DIP N/A Tx 341 Rx 341 Loss 0.000 INFO asyncssh:logging.py:92 [conn=48, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:0a:c8:8b","ifname":"br0","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=48, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 down INFO asyncssh:logging.py:92 [conn=48, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=12] Command: ip link set dev swp2 down INFO asyncssh:logging.py:92 [conn=48, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=14] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:0a:c8:8b","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_fdb_flush_on_down from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=48, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=48, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=16] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:48:28 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=48, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=48, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=18] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:48:28 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=48, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=48, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=48, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":78,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=48, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=48, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=48, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/bridging/test_bridging_forwarding.py::test_bridging_traffic_from_nomaster 201.49
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_traffic_from_nomaster">Starting testcase:test_bridging_traffic_from_nomaster from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2386' coro=<test_bridging_traffic_from_nomaster() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:456> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=48, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=49] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=49] Local address: 172.17.0.3, port 58384 INFO asyncssh:logging.py:92 [conn=49] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=49] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=49] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=49, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:48:29 PM UTC INFO asyncssh:logging.py:92 [conn=49, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=49, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=49, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=49, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=49, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=49, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=49, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning off flood off && bridge link set dev swp2 learning off flood off && bridge link set dev swp3 learning off flood off && bridge link set dev swp4 learning off flood off INFO asyncssh:logging.py:92 [conn=49, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=8] Command: bridge link set dev swp1 learning off flood off && bridge link set dev swp2 learning off flood off && bridge link set dev swp3 learning off flood off && bridge link set dev swp4 learning off flood off INFO asyncssh:logging.py:92 [conn=49, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge fdb add aa:bb:cc:dd:ee:11 dev swp1 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp2 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp3 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp4 static master INFO asyncssh:logging.py:92 [conn=49, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=10] Command: bridge fdb add aa:bb:cc:dd:ee:11 dev swp1 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp2 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp3 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp4 static master INFO asyncssh:logging.py:92 [conn=49, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 nomaster INFO asyncssh:logging.py:92 [conn=49, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=12] Command: ip link set dev swp1 nomaster INFO asyncssh:logging.py:92 [conn=49, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6e8400>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI bridge_1 SIP-DIP N/A Tx 245 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI bridge_2 SIP-DIP N/A Tx 245 Rx 245 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI bridge_3 SIP-DIP N/A Tx 245 Rx 245 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI bridge_4 SIP-DIP N/A Tx 245 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_traffic_from_nomaster from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=49, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=49, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=14] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:51:50 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=49, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=49, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=16] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:51:50 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=49, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=49, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=49, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":79,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=49, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=49, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=49, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=20] Channel closed DEBUG agg1:Logger.py:156
Passed functional/bridging/test_bridging_forwarding.py::test_bridging_unregistered_traffic 232.00
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_unregistered_traffic">Starting testcase:test_bridging_unregistered_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2416' coro=<test_bridging_unregistered_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:570> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=49, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=50] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=50] Local address: 172.17.0.3, port 33070 INFO asyncssh:logging.py:92 [conn=50] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=50] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=50] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=50, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:51:50 PM UTC INFO asyncssh:logging.py:92 [conn=50, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=50, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=50, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=50, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=50, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=50, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=50, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=50, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=50, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6cbd00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI streamA SIP-DIP N/A Tx 4422 Rx 4422 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI streamB SIP-DIP N/A Tx 4422 Rx 4422 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI streamC SIP-DIP N/A Tx 4422 Rx 4422 Loss 0.000 INFO asyncssh:logging.py:92 [conn=50, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 flood off && bridge link set dev swp2 flood off && bridge link set dev swp3 flood off && bridge link set dev swp4 flood off INFO asyncssh:logging.py:92 [conn=50, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=8] Command: bridge link set dev swp1 flood off && bridge link set dev swp2 flood off && bridge link set dev swp3 flood off && bridge link set dev swp4 flood off INFO asyncssh:logging.py:92 [conn=50, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6c8370>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI streamA SIP-DIP N/A Tx 8062 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI streamB SIP-DIP N/A Tx 8062 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI streamC SIP-DIP N/A Tx 8062 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=50, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 flood on && bridge link set dev swp2 flood on && bridge link set dev swp3 flood on && bridge link set dev swp4 flood on INFO asyncssh:logging.py:92 [conn=50, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=10] Command: bridge link set dev swp1 flood on && bridge link set dev swp2 flood on && bridge link set dev swp3 flood on && bridge link set dev swp4 flood on INFO asyncssh:logging.py:92 [conn=50, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6e8b80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI streamA SIP-DIP N/A Tx 8069 Rx 8069 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI streamB SIP-DIP N/A Tx 8069 Rx 8069 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI streamC SIP-DIP N/A Tx 8069 Rx 8069 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_unregistered_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=50, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=50, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:55:42 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=50, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=50, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=14] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:55:42 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=50, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=50, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=50, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":80,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=50, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=50, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=50, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=18] Channel closed DEBUG agg1:Logger.py:156
Passed functional/bridging/test_bridging_forwarding.py::test_bridging_wrong_fcs 165.67
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_wrong_fcs">Starting testcase:test_bridging_wrong_fcs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2444' coro=<test_bridging_wrong_fcs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:717> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=50, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=51] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=51] Local address: 172.17.0.3, port 35294 INFO asyncssh:logging.py:92 [conn=51] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=51] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=51] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=51, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:55:42 PM UTC INFO asyncssh:logging.py:92 [conn=51, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=51, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=51, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=51, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=51, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=51, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=51, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=51, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=51, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=51, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning on flood on && bridge link set dev swp2 learning on flood on && bridge link set dev swp3 learning on flood on && bridge link set dev swp4 learning on flood on INFO asyncssh:logging.py:92 [conn=51, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=8] Command: bridge link set dev swp1 learning on flood on && bridge link set dev swp2 learning on flood on && bridge link set dev swp3 learning on flood on && bridge link set dev swp4 learning on flood on INFO asyncssh:logging.py:92 [conn=51, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6ea440>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI bridge SIP-DIP N/A Tx 245 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=51, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=51, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=51, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:e0:82:38","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_wrong_fcs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=51, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=51, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:58:27 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=51, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=51, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=14] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:58:28 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=51, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=51, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=51, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":81,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=51, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=51, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=51, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=18] Channel closed DEBUG agg1:Logger.py:156
Passed functional/bridging/test_bridging_full_fdb_traffic.py::test_bridging_full_fdb_traffic 230.24
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_full_fdb_traffic">Starting testcase:test_bridging_full_fdb_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_full_fdb_traffic.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2472' coro=<test_bridging_full_fdb_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_full_fdb_traffic.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=51, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=52] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=52] Local address: 172.17.0.3, port 38418 INFO asyncssh:logging.py:92 [conn=52] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=52] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=52] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=52, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 06:58:28 PM UTC INFO asyncssh:logging.py:92 [conn=52, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=52, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=52, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=52, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=52, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=52, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=52, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=52, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=52, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6ebeb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 67235 Rx 67235 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=52, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=8] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=8] Channel closed DEBUG agg1:Logger.py:156 16002 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6eb070>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 66926 Rx 66926 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=52, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=10] Channel closed DEBUG agg1:Logger.py:156 16002
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_full_fdb_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_full_fdb_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=52, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=52, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:02:17 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=52, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=52, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=14] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:02:18 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=52, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=52, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=52, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":82,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=52, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=52, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=52, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=18] Channel closed DEBUG agg1:Logger.py:156
Passed functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_size[1510] 212.20
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-2500' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_size[1510]">Starting testcase:test_bridging_jumbo_frame_size[1510] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=52, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=53] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=53] Local address: 172.17.0.3, port 43292 INFO asyncssh:logging.py:92 [conn=53] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=53] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=53] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:02:18 PM UTC INFO asyncssh:logging.py:92 [conn=53, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=53, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=53, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}]
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=53, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=3] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=4] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:02:18 PM UTC INFO asyncssh:logging.py:92 [conn=53, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=53, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=53, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=53, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=53, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=53, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=53, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 mtu 1510 && ip link set dev swp2 mtu 1510 && ip link set dev swp3 mtu 1510 && ip link set dev swp4 mtu 1510 INFO asyncssh:logging.py:92 [conn=53, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=10] Command: ip link set dev swp1 mtu 1510 && ip link set dev swp2 mtu 1510 && ip link set dev swp3 mtu 1510 && ip link set dev swp4 mtu 1510 INFO asyncssh:logging.py:92 [conn=53, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6c8040>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI bridge_1 SIP-DIP N/A Tx 809 Rx 809 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI bridge_2 SIP-DIP N/A Tx 809 Rx 809 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI bridge_3 SIP-DIP N/A Tx 809 Rx 809 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI bridge_4 SIP-DIP N/A Tx 809 Rx 809 Loss 0.000 INFO asyncssh:logging.py:92 [conn=53, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=53, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=53, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_size[1510] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=53, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 mtu 1500 && ip link set dev swp2 mtu 1500 && ip link set dev swp3 mtu 1500 && ip link set dev swp4 mtu 1500 INFO asyncssh:logging.py:92 [conn=53, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=14] Command: ip link set dev swp1 mtu 1500 && ip link set dev swp2 mtu 1500 && ip link set dev swp3 mtu 1500 && ip link set dev swp4 mtu 1500 INFO asyncssh:logging.py:92 [conn=53, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=53, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=16] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:05:50 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=53, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=18] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:05:50 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=53, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=53, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=53, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":83,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=53, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=53, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=53, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_size[8998] 214.04
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-2534' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_size[8998]">Starting testcase:test_bridging_jumbo_frame_size[8998] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=53, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=54] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=54] Local address: 172.17.0.3, port 50658 INFO asyncssh:logging.py:92 [conn=54] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=54] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=54] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:05:51 PM UTC INFO asyncssh:logging.py:92 [conn=54, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=54, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=54, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}]
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=54, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=3] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=4] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:05:51 PM UTC INFO asyncssh:logging.py:92 [conn=54, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=54, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=54, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=54, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=54, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=54, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=54, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 mtu 8998 && ip link set dev swp2 mtu 8998 && ip link set dev swp3 mtu 8998 && ip link set dev swp4 mtu 8998 INFO asyncssh:logging.py:92 [conn=54, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=10] Command: ip link set dev swp1 mtu 8998 && ip link set dev swp2 mtu 8998 && ip link set dev swp3 mtu 8998 && ip link set dev swp4 mtu 8998 INFO asyncssh:logging.py:92 [conn=54, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e867520>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI bridge_1 SIP-DIP N/A Tx 807 Rx 807 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI bridge_2 SIP-DIP N/A Tx 807 Rx 807 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI bridge_3 SIP-DIP N/A Tx 807 Rx 807 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI bridge_4 SIP-DIP N/A Tx 807 Rx 807 Loss 0.000 INFO asyncssh:logging.py:92 [conn=54, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=54, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=54, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_size[8998] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=54, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 mtu 1500 && ip link set dev swp2 mtu 1500 && ip link set dev swp3 mtu 1500 && ip link set dev swp4 mtu 1500 INFO asyncssh:logging.py:92 [conn=54, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=14] Command: ip link set dev swp1 mtu 1500 && ip link set dev swp2 mtu 1500 && ip link set dev swp3 mtu 1500 && ip link set dev swp4 mtu 1500 INFO asyncssh:logging.py:92 [conn=54, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=54, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=16] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:09:24 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=54, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=18] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:09:24 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=54, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=54, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=54, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":84,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=54, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=54, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=54, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_size[9000] 212.14
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-2568' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_size[9000]">Starting testcase:test_bridging_jumbo_frame_size[9000] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=54, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=55] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=55] Local address: 172.17.0.3, port 44850 INFO asyncssh:logging.py:92 [conn=55] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=55] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=55] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:09:25 PM UTC INFO asyncssh:logging.py:92 [conn=55, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=55, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=55, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}]
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=55, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=3] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=4] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:09:25 PM UTC INFO asyncssh:logging.py:92 [conn=55, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=55, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=55, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=55, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=55, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=55, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=55, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 mtu 9000 && ip link set dev swp2 mtu 9000 && ip link set dev swp3 mtu 9000 && ip link set dev swp4 mtu 9000 INFO asyncssh:logging.py:92 [conn=55, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=10] Command: ip link set dev swp1 mtu 9000 && ip link set dev swp2 mtu 9000 && ip link set dev swp3 mtu 9000 && ip link set dev swp4 mtu 9000 INFO asyncssh:logging.py:92 [conn=55, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6cb1c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI bridge_1 SIP-DIP N/A Tx 789 Rx 789 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI bridge_2 SIP-DIP N/A Tx 789 Rx 789 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI bridge_3 SIP-DIP N/A Tx 789 Rx 789 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI bridge_4 SIP-DIP N/A Tx 789 Rx 789 Loss 0.000 INFO asyncssh:logging.py:92 [conn=55, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=55, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=55, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_size[9000] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=55, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 mtu 1500 && ip link set dev swp2 mtu 1500 && ip link set dev swp3 mtu 1500 && ip link set dev swp4 mtu 1500 INFO asyncssh:logging.py:92 [conn=55, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=14] Command: ip link set dev swp1 mtu 1500 && ip link set dev swp2 mtu 1500 && ip link set dev swp3 mtu 1500 && ip link set dev swp4 mtu 1500 INFO asyncssh:logging.py:92 [conn=55, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=55, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=16] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:12:56 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=55, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=18] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:12:56 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=55, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=55, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=55, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":85,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=55, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=55, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=55, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_size[9002] 214.30
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-2602' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_size[9002]">Starting testcase:test_bridging_jumbo_frame_size[9002] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=55, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=56] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=56] Local address: 172.17.0.3, port 39172 INFO asyncssh:logging.py:92 [conn=56] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=56] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=56] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:12:57 PM UTC INFO asyncssh:logging.py:92 [conn=56, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=56, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=56, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}]
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=56, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=3] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=4] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:12:57 PM UTC INFO asyncssh:logging.py:92 [conn=56, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=56, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=56, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=56, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=56, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=56, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=56, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 mtu 9002 && ip link set dev swp2 mtu 9002 && ip link set dev swp3 mtu 9002 && ip link set dev swp4 mtu 9002 INFO asyncssh:logging.py:92 [conn=56, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=10] Command: ip link set dev swp1 mtu 9002 && ip link set dev swp2 mtu 9002 && ip link set dev swp3 mtu 9002 && ip link set dev swp4 mtu 9002 INFO asyncssh:logging.py:92 [conn=56, chan=10] Received exit status 2 INFO asyncssh:logging.py:92 [conn=56, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=10] Channel closed DEBUG agg1:Logger.py:156 Error: mtu greater than device maximum. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6e8490>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI bridge_1 SIP-DIP N/A Tx 808 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI bridge_2 SIP-DIP N/A Tx 808 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI bridge_3 SIP-DIP N/A Tx 808 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI bridge_4 SIP-DIP N/A Tx 808 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=56, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=56, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=56, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_size[9002] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=56, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 mtu 1500 && ip link set dev swp2 mtu 1500 && ip link set dev swp3 mtu 1500 && ip link set dev swp4 mtu 1500 INFO asyncssh:logging.py:92 [conn=56, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=14] Command: ip link set dev swp1 mtu 1500 && ip link set dev swp2 mtu 1500 && ip link set dev swp3 mtu 1500 && ip link set dev swp4 mtu 1500 INFO asyncssh:logging.py:92 [conn=56, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=56, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=16] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:16:30 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=56, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=18] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:16:31 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=56, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=56, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=56, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":86,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=56, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=56, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=56, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/bridging/test_bridging_learning.py::test_bridging_learning_address 195.91
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_learning_address">Starting testcase:test_bridging_learning_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2636' coro=<test_bridging_learning_address() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=56, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=57] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=57] Local address: 172.17.0.3, port 52950 INFO asyncssh:logging.py:92 [conn=57] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=57] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=57] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=57, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:16:31 PM UTC INFO asyncssh:logging.py:92 [conn=57, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=57, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=57, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=57, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=57, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=57, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=57, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=57, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=57, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=57, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=57, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=8] Command: bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=57, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6e9960>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 340 Rx 339 Frames Delta 1 Loss 0.294 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 340 Rx 339 Frames Delta 1 Loss 0.294 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 340 Rx 339 Frames Delta 1 Loss 0.294 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 340 Rx 339 Frames Delta 1 Loss 0.294 INFO asyncssh:logging.py:92 [conn=57, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=57, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=57, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:d3:d8:56","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_learning_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=57, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=57, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:19:46 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=57, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=57, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=14] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:19:47 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=57, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=57, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=57, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":87,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=57, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=57, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=57, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=18] Channel closed DEBUG agg1:Logger.py:156
Passed functional/bridging/test_bridging_learning.py::test_bridging_learning_address_rate 182.16
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_learning_address_rate">Starting testcase:test_bridging_learning_address_rate from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2664' coro=<test_bridging_learning_address_rate() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:148> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=57, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=58] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=58] Local address: 172.17.0.3, port 35486 INFO asyncssh:logging.py:92 [conn=58] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=58] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=58] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=58, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:19:47 PM UTC INFO asyncssh:logging.py:92 [conn=58, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=58, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=58, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=58, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=58, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=58, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=58, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=58, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=58, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:8' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6ca440>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI streamA SIP-DIP N/A Tx 3452 Rx 3452 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI streamB SIP-DIP N/A Tx 3452 Rx 3452 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_learning_address_rate from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=58, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=58, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:22:48 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=58, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=9] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=58, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=10] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:22:49 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=58, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=58, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=58, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":88,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=58, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=58, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=58, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=14] Channel closed DEBUG agg1:Logger.py:156
Passed functional/bridging/test_bridging_learning.py::test_bridging_learning_illegal_address 199.78
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_learning_illegal_address">Starting testcase:test_bridging_learning_illegal_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2688' coro=<test_bridging_learning_illegal_address() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:253> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=58, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=59] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=59] Local address: 172.17.0.3, port 38792 INFO asyncssh:logging.py:92 [conn=59] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=59] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=59] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=59, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:22:49 PM UTC INFO asyncssh:logging.py:92 [conn=59, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=59, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=59, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=59, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=59, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=59, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=59, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=59, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=8] Command: bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=59, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for all_zeros INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for multicast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for multicast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6eb880>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI all_zeros SIP-DIP N/A Tx 342 Rx 342 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI broadcast SIP-DIP N/A Tx 342 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI multicast_1 SIP-DIP N/A Tx 342 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI multicast_2 SIP-DIP N/A Tx 342 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=59, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=59, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=59, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:25:c6:6d","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_learning_illegal_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=59, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=59, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:26:08 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=59, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=59, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=14] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:26:08 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=59, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=59, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=59, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":89,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=59, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=59, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=59, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=18] Channel closed DEBUG agg1:Logger.py:156
Passed functional/bridging/test_bridging_learning.py::test_bridging_relearning_on_different_vlans 412.25
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_relearning_on_different_vlans">Starting testcase:test_bridging_relearning_on_different_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2716' coro=<test_bridging_relearning_on_different_vlans() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:385> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=59, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=60] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=60] Local address: 172.17.0.3, port 49356 INFO asyncssh:logging.py:92 [conn=60] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=60] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=60] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=60, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:26:09 PM UTC INFO asyncssh:logging.py:92 [conn=60, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=60, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=60, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=60, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=60, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge ageing_time 60000 INFO asyncssh:logging.py:92 [conn=60, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=6] Command: ip link set dev br0 type bridge ageing_time 60000 INFO asyncssh:logging.py:92 [conn=60, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=60, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=60, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp1 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=10] Command: bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp1 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 2 && bridge vlan add dev swp2 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=12] Command: bridge vlan add dev swp2 vid 2 && bridge vlan add dev swp2 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 2 && bridge vlan add dev swp3 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=14] Command: bridge vlan add dev swp3 vid 2 && bridge vlan add dev swp3 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6cb040>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 341 Rx 341 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 341 Rx 341 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=60, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:70:b1:ae","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6c8be0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 245 Rx 245 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 245 Rx 245 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=60, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=17] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=18] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:70:b1:ae","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6ebd00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 250 Rx 250 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 250 Rx 250 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=60, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=20] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:70:b1:ae","ifname":"br0","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=60, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=21] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show dev swp1 INFO asyncssh:logging.py:92 [conn=60, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=22] Command: bridge -j fdb show dev swp1 INFO asyncssh:logging.py:92 [conn=60, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"00:11:01:00:00:01","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_relearning_on_different_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=60, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=60, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=24] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:33:01 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=60, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=60, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=26] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:33:01 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=60, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=60, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=60, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":90,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=60, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=60, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=60, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=30] Channel closed DEBUG agg1:Logger.py:156
Passed functional/bridging/test_bridging_packets.py::test_bridging_packets_oversize 212.11
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_packets_oversize">Starting testcase:test_bridging_packets_oversize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2756' coro=<test_bridging_packets_oversize() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=60, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=61] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=61] Local address: 172.17.0.3, port 45428 INFO asyncssh:logging.py:92 [conn=61] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=61] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=61] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=61, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:33:01 PM UTC INFO asyncssh:logging.py:92 [conn=61, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=61, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=61, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=61, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=61, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=61, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=61, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=61, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=61, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=61, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=61, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=8] Command: bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=61, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=61, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=9] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=61, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=10] Command: ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=61, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=10] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 3540100900 bad_octets_received: 4169528 mac_trans_error: 0 broadcast_frames_received: 12885 multicast_frames_received: 23389 frames_64_octets: 899 frames_65_to_127_octets: 40348 frames_128_to_255_octets: 2049 frames_256_to_511_octets: 4379451 frames_512_to_1023_octets: 9286081 frames_1024_to_max_octets: 6934 excessive_collision: 0 multicast_frames_sent: 1323 broadcast_frames_sent: 839 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 1148 jabber: 0 rx_error_frame_received: 0 bad_crc: 4731 collisions: 0 late_collision: 0 unicast_frames_received: 9061193 unicast_frames_sent: 4611402 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 2382109420 INFO asyncssh:logging.py:92 [conn=61, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=11] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=61, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=12] Command: ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=61, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=12] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 2381974352 bad_octets_received: 4044088 mac_trans_error: 0 broadcast_frames_received: 674 multicast_frames_received: 342 frames_64_octets: 908 frames_65_to_127_octets: 15620 frames_128_to_255_octets: 279 frames_256_to_511_octets: 3683266 frames_512_to_1023_octets: 9259582 frames_1024_to_max_octets: 6934 excessive_collision: 0 multicast_frames_sent: 13199 broadcast_frames_sent: 8002 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 1148 jabber: 0 rx_error_frame_received: 0 bad_crc: 4486 collisions: 0 late_collision: 0 unicast_frames_received: 4611483 unicast_frames_sent: 8328403 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3346028169 INFO asyncssh:logging.py:92 [conn=61, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=61, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=14] Command: ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=61, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=14] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 27025808 bad_octets_received: 1747256 mac_trans_error: 0 broadcast_frames_received: 118 multicast_frames_received: 342 frames_64_octets: 598 frames_65_to_127_octets: 15411 frames_128_to_255_octets: 276 frames_256_to_511_octets: 882 frames_512_to_1023_octets: 199801 frames_1024_to_max_octets: 6934 excessive_collision: 0 multicast_frames_sent: 12962 broadcast_frames_sent: 4125 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 1148 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 12342 unicast_frames_sent: 194013 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 121793496 INFO asyncssh:logging.py:92 [conn=61, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=61, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=16] Command: ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=61, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=16] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 26769296 bad_octets_received: 1747256 mac_trans_error: 0 broadcast_frames_received: 110 multicast_frames_received: 342 frames_64_octets: 597 frames_65_to_127_octets: 15419 frames_128_to_255_octets: 273 frames_256_to_511_octets: 882 frames_512_to_1023_octets: 199214 frames_1024_to_max_octets: 6934 excessive_collision: 0 multicast_frames_sent: 12624 broadcast_frames_sent: 4133 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 1148 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 11842 unicast_frames_sent: 194268 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 121749569 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=61, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=61, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=18] Command: ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=61, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=18] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 3540100900 bad_octets_received: 24065112 mac_trans_error: 0 broadcast_frames_received: 12885 multicast_frames_received: 23389 frames_64_octets: 899 frames_65_to_127_octets: 40348 frames_128_to_255_octets: 2049 frames_256_to_511_octets: 4379451 frames_512_to_1023_octets: 9286081 frames_1024_to_max_octets: 6934 excessive_collision: 0 multicast_frames_sent: 1323 broadcast_frames_sent: 839 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 14220 jabber: 0 rx_error_frame_received: 0 bad_crc: 4731 collisions: 0 late_collision: 0 unicast_frames_received: 9061193 unicast_frames_sent: 4611402 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 2382109420 INFO asyncssh:logging.py:92 [conn=61, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=19] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=61, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=20] Command: ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=61, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=20] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 2381974352 bad_octets_received: 23939672 mac_trans_error: 0 broadcast_frames_received: 674 multicast_frames_received: 342 frames_64_octets: 908 frames_65_to_127_octets: 15620 frames_128_to_255_octets: 279 frames_256_to_511_octets: 3683266 frames_512_to_1023_octets: 9259582 frames_1024_to_max_octets: 6934 excessive_collision: 0 multicast_frames_sent: 13199 broadcast_frames_sent: 8002 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 14220 jabber: 0 rx_error_frame_received: 0 bad_crc: 4486 collisions: 0 late_collision: 0 unicast_frames_received: 4611483 unicast_frames_sent: 8328403 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3346028169 INFO asyncssh:logging.py:92 [conn=61, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=21] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=61, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=22] Command: ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=61, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=22] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 27025808 bad_octets_received: 21642840 mac_trans_error: 0 broadcast_frames_received: 118 multicast_frames_received: 342 frames_64_octets: 598 frames_65_to_127_octets: 15411 frames_128_to_255_octets: 277 frames_256_to_511_octets: 882 frames_512_to_1023_octets: 199801 frames_1024_to_max_octets: 6934 excessive_collision: 0 multicast_frames_sent: 12963 broadcast_frames_sent: 4125 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 14220 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 12342 unicast_frames_sent: 194013 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 121793733 INFO asyncssh:logging.py:92 [conn=61, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=23] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=61, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=24] Command: ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=61, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=24] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 26769296 bad_octets_received: 21642840 mac_trans_error: 0 broadcast_frames_received: 110 multicast_frames_received: 342 frames_64_octets: 597 frames_65_to_127_octets: 15419 frames_128_to_255_octets: 274 frames_256_to_511_octets: 882 frames_512_to_1023_octets: 199214 frames_1024_to_max_octets: 6934 excessive_collision: 0 multicast_frames_sent: 12625 broadcast_frames_sent: 4133 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 14220 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 11842 unicast_frames_sent: 194268 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 121749806 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6ea3e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 13072 Rx 0 Frames Delta 13072 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 13072 Rx 0 Frames Delta 13072 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 13072 Rx 0 Frames Delta 13072 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 13072 Rx 0 Frames Delta 13072 Loss 100.000 INFO asyncssh:logging.py:92 [conn=61, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=25] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=61, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=26] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=61, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:28:47:40","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_packets_oversize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=61, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=61, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=28] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:36:33 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=61, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=61, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=30] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:36:33 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=61, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=61, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=61, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":91,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=61, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=61, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=61, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=34] Channel closed DEBUG agg1:Logger.py:156
Passed functional/bridging/test_bridging_packets.py::test_bridging_packets_undersize 211.26
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_packets_undersize">Starting testcase:test_bridging_packets_undersize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2800' coro=<test_bridging_packets_undersize() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py:161> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=61, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=62] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=62] Local address: 172.17.0.3, port 35332 INFO asyncssh:logging.py:92 [conn=62] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=62] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=62] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=62, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:36:33 PM UTC INFO asyncssh:logging.py:92 [conn=62, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=62, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=62, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=62, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=62, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=62, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=62, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=62, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=62, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=62, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=62, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=8] Command: bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=62, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Enabling smaller frame size (4 Byte Signature) INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'switch_min_frame_size', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=62, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=9] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=62, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=10] Command: ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=62, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=10] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 3540101412 bad_octets_received: 24065112 mac_trans_error: 0 broadcast_frames_received: 12893 multicast_frames_received: 23389 frames_64_octets: 932 frames_65_to_127_octets: 40365 frames_128_to_255_octets: 2056 frames_256_to_511_octets: 4379451 frames_512_to_1023_octets: 9286081 frames_1024_to_max_octets: 6934 excessive_collision: 0 multicast_frames_sent: 1348 broadcast_frames_sent: 863 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 14220 jabber: 0 rx_error_frame_received: 0 bad_crc: 4731 collisions: 0 late_collision: 0 unicast_frames_received: 9061193 unicast_frames_sent: 4611402 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 2382114293 INFO asyncssh:logging.py:92 [conn=62, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=11] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=62, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=12] Command: ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=62, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=12] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 2381974864 bad_octets_received: 23939672 mac_trans_error: 0 broadcast_frames_received: 682 multicast_frames_received: 342 frames_64_octets: 941 frames_65_to_127_octets: 15634 frames_128_to_255_octets: 286 frames_256_to_511_octets: 3683266 frames_512_to_1023_octets: 9259582 frames_1024_to_max_octets: 6934 excessive_collision: 0 multicast_frames_sent: 13221 broadcast_frames_sent: 8026 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 14220 jabber: 0 rx_error_frame_received: 0 bad_crc: 4486 collisions: 0 late_collision: 0 unicast_frames_received: 4611483 unicast_frames_sent: 8328403 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3346032740 INFO asyncssh:logging.py:92 [conn=62, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=62, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=14] Command: ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=62, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=14] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 27026320 bad_octets_received: 21642840 mac_trans_error: 0 broadcast_frames_received: 126 multicast_frames_received: 342 frames_64_octets: 631 frames_65_to_127_octets: 15426 frames_128_to_255_octets: 283 frames_256_to_511_octets: 882 frames_512_to_1023_octets: 199801 frames_1024_to_max_octets: 6934 excessive_collision: 0 multicast_frames_sent: 12985 broadcast_frames_sent: 4149 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 14220 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 12342 unicast_frames_sent: 194013 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 121798161 INFO asyncssh:logging.py:92 [conn=62, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=62, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=16] Command: ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=62, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=16] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 26769808 bad_octets_received: 21642840 mac_trans_error: 0 broadcast_frames_received: 118 multicast_frames_received: 342 frames_64_octets: 630 frames_65_to_127_octets: 15433 frames_128_to_255_octets: 280 frames_256_to_511_octets: 882 frames_512_to_1023_octets: 199214 frames_1024_to_max_octets: 6934 excessive_collision: 0 multicast_frames_sent: 12646 broadcast_frames_sent: 4157 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 14220 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 11842 unicast_frames_sent: 194268 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 121754140 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=62, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=62, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=18] Command: ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=62, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=18] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 3540101412 bad_octets_received: 24820504 mac_trans_error: 0 broadcast_frames_received: 12893 multicast_frames_received: 23389 frames_64_octets: 932 frames_65_to_127_octets: 40365 frames_128_to_255_octets: 2056 frames_256_to_511_octets: 4379451 frames_512_to_1023_octets: 9286081 frames_1024_to_max_octets: 6934 excessive_collision: 0 multicast_frames_sent: 1348 broadcast_frames_sent: 863 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13024 fragments: 0 oversize: 14220 jabber: 0 rx_error_frame_received: 0 bad_crc: 4731 collisions: 0 late_collision: 0 unicast_frames_received: 9061193 unicast_frames_sent: 4611402 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 2382114293 INFO asyncssh:logging.py:92 [conn=62, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=19] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=62, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=20] Command: ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=62, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=20] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 2381974864 bad_octets_received: 24695064 mac_trans_error: 0 broadcast_frames_received: 682 multicast_frames_received: 342 frames_64_octets: 941 frames_65_to_127_octets: 15634 frames_128_to_255_octets: 286 frames_256_to_511_octets: 3683266 frames_512_to_1023_octets: 9259582 frames_1024_to_max_octets: 6934 excessive_collision: 0 multicast_frames_sent: 13221 broadcast_frames_sent: 8026 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13024 fragments: 0 oversize: 14220 jabber: 0 rx_error_frame_received: 0 bad_crc: 4486 collisions: 0 late_collision: 0 unicast_frames_received: 4611483 unicast_frames_sent: 8328403 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3346032740 INFO asyncssh:logging.py:92 [conn=62, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=21] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=62, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=22] Command: ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=62, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=22] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 27026320 bad_octets_received: 22398232 mac_trans_error: 0 broadcast_frames_received: 126 multicast_frames_received: 342 frames_64_octets: 631 frames_65_to_127_octets: 15426 frames_128_to_255_octets: 284 frames_256_to_511_octets: 882 frames_512_to_1023_octets: 199801 frames_1024_to_max_octets: 6934 excessive_collision: 0 multicast_frames_sent: 12986 broadcast_frames_sent: 4149 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13024 fragments: 0 oversize: 14220 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 12342 unicast_frames_sent: 194013 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 121798398 INFO asyncssh:logging.py:92 [conn=62, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=23] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=62, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=24] Command: ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=62, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=24] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 26769808 bad_octets_received: 22398232 mac_trans_error: 0 broadcast_frames_received: 118 multicast_frames_received: 342 frames_64_octets: 630 frames_65_to_127_octets: 15433 frames_128_to_255_octets: 281 frames_256_to_511_octets: 882 frames_512_to_1023_octets: 199214 frames_1024_to_max_octets: 6934 excessive_collision: 0 multicast_frames_sent: 12647 broadcast_frames_sent: 4157 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13024 fragments: 0 oversize: 14220 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 11842 unicast_frames_sent: 194268 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 121754377 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e760730>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 13024 Rx 0 Frames Delta 13024 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 13024 Rx 0 Frames Delta 13024 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 13024 Rx 0 Frames Delta 13024 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 13024 Rx 0 Frames Delta 13024 Loss 100.000 INFO asyncssh:logging.py:92 [conn=62, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=25] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=62, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=26] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=62, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:28:cb:87","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_packets_undersize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=62, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=62, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=28] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:40:04 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=62, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=62, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=30] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:40:04 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=62, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=62, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=62, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":92,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=62, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=62, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=62, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=34] Channel closed DEBUG agg1:Logger.py:156
Passed functional/bridging/test_bridging_remove_restore_from_vlan.py::test_bridging_remove_restore_from_vlan 172.03
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_remove_restore_from_vlan">Starting testcase:test_bridging_remove_restore_from_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_remove_restore_from_vlan.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2844' coro=<test_bridging_remove_restore_from_vlan() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_remove_restore_from_vlan.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=62, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=63] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=63] Local address: 172.17.0.3, port 58874 INFO asyncssh:logging.py:92 [conn=63] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=63] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=63] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=63, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:40:05 PM UTC INFO asyncssh:logging.py:92 [conn=63, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=63, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=63, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=63, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=63, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=63, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=63, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning off flood off && bridge link set dev swp2 learning off flood off && bridge link set dev swp3 learning off flood off && bridge link set dev swp4 learning off flood off INFO asyncssh:logging.py:92 [conn=63, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=8] Command: bridge link set dev swp1 learning off flood off && bridge link set dev swp2 learning off flood off && bridge link set dev swp3 learning off flood off && bridge link set dev swp4 learning off flood off INFO asyncssh:logging.py:92 [conn=63, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp2 vid 2 && bridge vlan add dev swp3 vid 2 && bridge vlan add dev swp4 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=10] Command: bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp2 vid 2 && bridge vlan add dev swp3 vid 2 && bridge vlan add dev swp4 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge fdb add aa:bb:cc:dd:ee:11 dev swp1 static master vlan 2 INFO asyncssh:logging.py:92 [conn=63, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=12] Command: bridge fdb add aa:bb:cc:dd:ee:11 dev swp1 static master vlan 2 INFO asyncssh:logging.py:92 [conn=63, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan delete dev swp1 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=14] Command: bridge vlan delete dev swp1 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=63, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=63, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp1","vlan":2,"flags":["offload"],"master":"br0","state":"static"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:1a:db:51","ifname":"br0","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=63, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=17] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=18] Command: bridge vlan add dev swp1 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:8' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6c8280>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI bridge_1 SIP-DIP N/A Tx 238 Rx 238 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_remove_restore_from_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_remove_restore_from_vlan.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=63, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=63, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:42:56 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=63, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=63, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:42:56 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=63, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=63, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=63, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":93,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=63, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=63, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=63, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=26] Channel closed DEBUG agg1:Logger.py:156
Passed functional/bridging/test_bridging_robustness_macs.py::test_bridging_robustness_macs 815.36
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_robustness_macs">Starting testcase:test_bridging_robustness_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_robustness_macs.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2880' coro=<test_bridging_robustness_macs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_robustness_macs.py:43> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=63, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=64] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=64] Local address: 172.17.0.3, port 49524 INFO asyncssh:logging.py:92 [conn=64] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=64] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=64] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=64, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:42:57 PM UTC INFO asyncssh:logging.py:92 [conn=64, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=64, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=64, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=64, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=64, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=64, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=64, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=64, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=64, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6c99c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 67449 Rx 67449 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=8] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=8] Channel closed DEBUG agg1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e733370>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 66857 Rx 66857 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 66857 Rx 66857 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=10] Channel closed DEBUG agg1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e733c40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 67386 Rx 67386 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 67386 Rx 67386 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 67386 Rx 67386 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=12] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=12] Channel closed DEBUG agg1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e7323b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 67104 Rx 67104 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 67104 Rx 67104 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 67104 Rx 67104 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 67104 Rx 67104 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=14] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=14] Channel closed DEBUG agg1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6e9c00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 66836 Rx 66836 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 66836 Rx 66836 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 66836 Rx 66836 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 66836 Rx 66836 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #4 Tx 66836 Rx 66836 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=16] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=16] Channel closed DEBUG agg1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6ea6e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 66725 Rx 66725 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 66725 Rx 66725 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 66725 Rx 66725 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 66725 Rx 66725 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #4 Tx 66725 Rx 66725 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #5 Tx 66725 Rx 66725 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=17] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=18] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=18] Channel closed DEBUG agg1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6e9c00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 67399 Rx 67399 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 67399 Rx 67399 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 67399 Rx 67399 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 67399 Rx 67399 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #4 Tx 67399 Rx 67399 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #5 Tx 67399 Rx 67399 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #6 Tx 67399 Rx 67399 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=20] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=20] Channel closed DEBUG agg1:Logger.py:156 16004
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_robustness_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_robustness_macs.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=64, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=64, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:56:31 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=64, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=64, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=24] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:56:31 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=64, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=64, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=64, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":94,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=64, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=64, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=64, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=28] Channel closed DEBUG agg1:Logger.py:156
Passed functional/bridging/test_bridging_static_entries.py::test_bridging_static_entries 204.24
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_static_entries">Starting testcase:test_bridging_static_entries from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_static_entries.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2918' coro=<test_bridging_static_entries() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_static_entries.py:45> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=64, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=65] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=65] Local address: 172.17.0.3, port 35680 INFO asyncssh:logging.py:92 [conn=65] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=65] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=65] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=65, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:56:32 PM UTC INFO asyncssh:logging.py:92 [conn=65, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=65, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=65, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=65, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=65, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=65, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=65, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning off flood off && bridge link set dev swp2 learning off flood off && bridge link set dev swp3 learning off flood off && bridge link set dev swp4 learning off flood off INFO asyncssh:logging.py:92 [conn=65, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=8] Command: bridge link set dev swp1 learning off flood off && bridge link set dev swp2 learning off flood off && bridge link set dev swp3 learning off flood off && bridge link set dev swp4 learning off flood off INFO asyncssh:logging.py:92 [conn=65, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge fdb add aa:bb:cc:dd:ee:11 dev swp1 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp2 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp3 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp4 static master INFO asyncssh:logging.py:92 [conn=65, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=10] Command: bridge fdb add aa:bb:cc:dd:ee:11 dev swp1 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp2 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp3 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp4 static master INFO asyncssh:logging.py:92 [conn=65, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6ea410>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI bridge_1 SIP-DIP N/A Tx 342 Rx 342 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI bridge_2 SIP-DIP N/A Tx 342 Rx 342 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI bridge_3 SIP-DIP N/A Tx 342 Rx 342 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI bridge_4 SIP-DIP N/A Tx 342 Rx 342 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_static_entries from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_static_entries.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=65, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=65, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:59:56 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=65, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=65, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=14] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:59:56 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=65, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=65, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=65, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":95,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=65, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=65, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=65, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=18] Channel closed DEBUG agg1:Logger.py:156
Passed functional/bridging/test_bridging_unreg_traffic_ipv6.py::test_bridging_unreg_traffic_ipv6 195.29
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_unreg_traffic_ipv6">Starting testcase:test_bridging_unreg_traffic_ipv6 from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unreg_traffic_ipv6.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2946' coro=<test_bridging_unreg_traffic_ipv6() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unreg_traffic_ipv6.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=65, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=66] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=66] Local address: 172.17.0.3, port 58812 INFO asyncssh:logging.py:92 [conn=66] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=66] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=66] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=66, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 07:59:56 PM UTC INFO asyncssh:logging.py:92 [conn=66, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=66, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=66, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=66, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=66, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=66, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=66, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=66, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=66, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1::2/64', 'count': 1, 'ip': '2001:1::2', 'gw': '2001:1::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2::2/64', 'count': 1, 'ip': '2001:2::2', 'gw': '2001:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_2001:3::2/64', 'count': 1, 'ip': '2001:3::2', 'gw': '2001:3::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_2001:4::2/64', 'count': 1, 'ip': '2001:4::2', 'gw': '2001:4::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6c97b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI streamA SIP-DIP N/A Tx 138088 Rx 138088 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI streamB SIP-DIP N/A Tx 138088 Rx 138088 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI streamC SIP-DIP N/A Tx 138088 Rx 138088 Loss 0.000 INFO asyncssh:logging.py:92 [conn=66, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 flood off && bridge link set dev swp2 flood off && bridge link set dev swp3 flood off && bridge link set dev swp4 flood off INFO asyncssh:logging.py:92 [conn=66, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=8] Command: bridge link set dev swp1 flood off && bridge link set dev swp2 flood off && bridge link set dev swp3 flood off && bridge link set dev swp4 flood off INFO asyncssh:logging.py:92 [conn=66, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6c88e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI streamA SIP-DIP N/A Tx 240569 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI streamB SIP-DIP N/A Tx 240569 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI streamC SIP-DIP N/A Tx 240569 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=66, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 flood on && bridge link set dev swp2 flood on && bridge link set dev swp3 flood on && bridge link set dev swp4 flood on INFO asyncssh:logging.py:92 [conn=66, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=10] Command: bridge link set dev swp1 flood on && bridge link set dev swp2 flood on && bridge link set dev swp3 flood on && bridge link set dev swp4 flood on INFO asyncssh:logging.py:92 [conn=66, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6c8070>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI streamA SIP-DIP N/A Tx 243295 Rx 243295 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI streamB SIP-DIP N/A Tx 243295 Rx 243295 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI streamC SIP-DIP N/A Tx 243295 Rx 243295 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_unreg_traffic_ipv6 from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unreg_traffic_ipv6.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=66, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=66, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:03:10 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=66, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=66, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=14] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:03:11 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=66, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=66, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=66, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":96,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=66, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=66, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=66, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=18] Channel closed DEBUG agg1:Logger.py:156
Passed functional/devlink/test_devlink_interact.py::test_devlink_interact_acl_with_dyn_traps 211.22
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-2972' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_acl_with_dyn_traps">Starting testcase:test_devlink_interact_acl_with_dyn_traps from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=66, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=67] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=67] Local address: 172.17.0.3, port 50884 INFO asyncssh:logging.py:92 [conn=67] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=67] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=67] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:03:12 PM UTC INFO asyncssh:logging.py:92 [conn=67, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=67, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=67, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=67, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=67, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=67, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=67, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=67, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:03:12 PM UTC INFO DENT:Logger.py:84 [DENT aggregation 1] policer rate: 913Kbps, traffic frame size: 598, expected trap rate: 1527.0pps INFO asyncssh:logging.py:92 [conn=67, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=67, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=10] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=67, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=67, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=12] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=67, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=67, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=14] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=67, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 pref 9978 flower skip_sw src_mac 02:1a:41:fd:e8:5e dst_mac 02:b5:7f:f9:c3:7b src_ip 23.47.39.33 dst_ip 115.7.96.123 ip_proto udp src_port 55075 dst_port 37057 action trap action police rate 913543bps burst 914543 && tc filter add dev swp1 ingress protocol ipv4 pref 19956 flower skip_sw src_mac 02:1a:41:fd:e8:5e dst_mac 02:b5:7f:f9:c3:7b src_ip 23.47.39.33 dst_ip 115.7.96.123 ip_proto udp src_port 55075 dst_port 37057 action drop INFO asyncssh:logging.py:92 [conn=67, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=16] Command: tc filter add dev swp1 ingress protocol ipv4 pref 9978 flower skip_sw src_mac 02:1a:41:fd:e8:5e dst_mac 02:b5:7f:f9:c3:7b src_ip 23.47.39.33 dst_ip 115.7.96.123 ip_proto udp src_port 55075 dst_port 37057 action trap action police rate 913543bps burst 914543 && tc filter add dev swp1 ingress protocol ipv4 pref 19956 flower skip_sw src_mac 02:1a:41:fd:e8:5e dst_mac 02:b5:7f:f9:c3:7b src_ip 23.47.39.33 dst_ip 115.7.96.123 ip_proto udp src_port 55075 dst_port 37057 action drop INFO asyncssh:logging.py:92 [conn=67, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=67, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress pref 9978 INFO asyncssh:logging.py:92 [conn=67, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=18] Command: tc -j filter show dev swp1 ingress pref 9978 INFO asyncssh:logging.py:92 [conn=67, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:b5:7f:f9:c3:7b","src_mac":"02:1a:41:fd:e8:5e","eth_type":"ipv4","ip_proto":"udp","dst_ip":"115.7.96.123","src_ip":"23.47.39.33","dst_port":37057,"src_port":55075},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"reclassify"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:b5:7f:f9:c3:7b_src_mac_02:1a:41:fd:e8:5e_eth_type_ipv4_ip_proto_udp_dst_ip_115.7.96.123_src_ip_23.47.39.33_dst_port_37057_src_port_55075 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=67, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=20] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=20] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=21] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=22] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=21] Channel closed DEBUG agg1:Logger.py:156 1536 INFO asyncssh:logging.py:92 [conn=67, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=22] Channel closed DEBUG agg1:Logger.py:156 1541 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e762860>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp1_dst_mac_02:b5:7f:f9:c3:7b_src_mac_02:1a:41:fd:e8:5e_eth_type_ipv4_ip_proto_udp_dst_ip_115.7.96.123_src_ip_23.47.39.33_dst_port_37057_src_port_55075 Tx 40404686 Rx 30521 Frames Delta 40374165 Loss 99.924 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 9978 INFO asyncssh:logging.py:92 [conn=67, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=24] Command: tc filter delete dev swp1 ingress pref 9978 INFO asyncssh:logging.py:92 [conn=67, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 pref 9978 flower skip_sw src_mac 02:1a:41:fd:e8:5e dst_mac 02:b5:7f:f9:c3:7b src_ip 23.47.39.33 dst_ip 115.7.96.123 ip_proto udp src_port 55075 dst_port 37057 action trap action police rate 913543bps burst 914543 INFO asyncssh:logging.py:92 [conn=67, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=26] Command: tc filter add dev swp1 ingress protocol ipv4 pref 9978 flower skip_sw src_mac 02:1a:41:fd:e8:5e dst_mac 02:b5:7f:f9:c3:7b src_ip 23.47.39.33 dst_ip 115.7.96.123 ip_proto udp src_port 55075 dst_port 37057 action trap action police rate 913543bps burst 914543 INFO asyncssh:logging.py:92 [conn=67, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=67, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=28] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=28] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=29] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=30] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=29] Channel closed DEBUG agg1:Logger.py:156 1536 INFO asyncssh:logging.py:92 [conn=67, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=30] Channel closed DEBUG agg1:Logger.py:156 1540 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e762620>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp1_dst_mac_02:b5:7f:f9:c3:7b_src_mac_02:1a:41:fd:e8:5e_eth_type_ipv4_ip_proto_udp_dst_ip_115.7.96.123_src_ip_23.47.39.33_dst_port_37057_src_port_55075 Tx 52565441 Rx 39682 Frames Delta 52525759 Loss 99.925 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 9978 INFO asyncssh:logging.py:92 [conn=67, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=32] Command: tc filter delete dev swp1 ingress pref 9978 INFO asyncssh:logging.py:92 [conn=67, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 pref 29934 flower skip_sw src_mac 02:1a:41:fd:e8:5e dst_mac 02:b5:7f:f9:c3:7b src_ip 23.47.39.33 dst_ip 115.7.96.123 ip_proto udp src_port 55075 dst_port 37057 action trap action police rate 913543bps burst 914543 INFO asyncssh:logging.py:92 [conn=67, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=34] Command: tc filter add dev swp1 ingress protocol ipv4 pref 29934 flower skip_sw src_mac 02:1a:41:fd:e8:5e dst_mac 02:b5:7f:f9:c3:7b src_ip 23.47.39.33 dst_ip 115.7.96.123 ip_proto udp src_port 55075 dst_port 37057 action trap action police rate 913543bps burst 914543 INFO asyncssh:logging.py:92 [conn=67, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=67, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=36] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=36] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=37] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=38] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=37] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=67, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=38] Channel closed DEBUG agg1:Logger.py:156 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e7864a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp1_dst_mac_02:b5:7f:f9:c3:7b_src_mac_02:1a:41:fd:e8:5e_eth_type_ipv4_ip_proto_udp_dst_ip_115.7.96.123_src_ip_23.47.39.33_dst_port_37057_src_port_55075 Tx 48521942 Rx 0 Frames Delta 48521942 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_acl_with_dyn_traps from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=67, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=39] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=40] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:06:37 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=41] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=42] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:06:42 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=67, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=67, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=44] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=67, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=44] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":97,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=67, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=67, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=46] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=67, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=46] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=47] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=48] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:06:42 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=67, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=67, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=50] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=67, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=50] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=67, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=67, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=52] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=67, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=67, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=54] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=67, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=62] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=64] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=66] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=68] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=70] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=67, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=72] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=67, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=67, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=74] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=67, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=74] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=67, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=76] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=67, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=67, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=78] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=67, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=67, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=80] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=67, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=81] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=82] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=82] Channel closed DEBUG agg1:Logger.py:156
Passed functional/devlink/test_devlink_interact.py::test_devlink_interact_dyn_traps_lag 263.29
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-3076' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_dyn_traps_lag">Starting testcase:test_devlink_interact_dyn_traps_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=67, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=68] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=68] Local address: 172.17.0.3, port 42880 INFO asyncssh:logging.py:92 [conn=68] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=68] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=68] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:06:43 PM UTC INFO asyncssh:logging.py:92 [conn=68, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=68, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=68, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=68, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=68, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=68, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=68, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:06:43 PM UTC INFO DENT:Logger.py:84 [DENT aggregation 1] policer rate: 1882Kbps, traffic frame size: 1243, expected trap rate: 4000pps INFO asyncssh:logging.py:92 [conn=68, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link add name lag type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=68, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=10] Command: ip link add name lag type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=68, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp1 master lag && ip link set dev swp2 master lag && ip link set dev swp3 master lag && ip link set dev swp4 master lag && ip link set dev lag up INFO asyncssh:logging.py:92 [conn=68, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=12] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp1 master lag && ip link set dev swp2 master lag && ip link set dev swp3 master lag && ip link set dev swp4 master lag && ip link set dev lag up INFO asyncssh:logging.py:92 [conn=68, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress && tc qdisc add dev swp2 ingress && tc qdisc add dev swp3 ingress && tc qdisc add dev swp4 ingress INFO asyncssh:logging.py:92 [conn=68, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=14] Command: tc qdisc add dev swp1 ingress && tc qdisc add dev swp2 ingress && tc qdisc add dev swp3 ingress && tc qdisc add dev swp4 ingress INFO asyncssh:logging.py:92 [conn=68, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x0800 flower skip_sw src_mac 02:71:ef:af:7b:ac dst_mac 02:a6:4c:c4:8b:4b src_ip 107.85.126.92 dst_ip 64.187.171.20 ip_proto tcp src_port 16999 dst_port 61150 action trap action police rate 1882496bps burst 1883496 && tc filter add dev swp2 ingress protocol 0x0800 flower skip_sw src_mac 02:71:ef:af:7b:ac dst_mac 02:a6:4c:c4:8b:4b src_ip 107.85.126.92 dst_ip 64.187.171.20 ip_proto tcp src_port 16999 dst_port 61150 action trap action police rate 1882496bps burst 1883496 && tc filter add dev swp3 ingress protocol 0x0800 flower skip_sw src_mac 02:71:ef:af:7b:ac dst_mac 02:a6:4c:c4:8b:4b src_ip 107.85.126.92 dst_ip 64.187.171.20 ip_proto tcp src_port 16999 dst_port 61150 action trap action police rate 1882496bps burst 1883496 && tc filter add dev swp4 ingress protocol 0x0800 flower skip_sw src_mac 02:71:ef:af:7b:ac dst_mac 02:a6:4c:c4:8b:4b src_ip 107.85.126.92 dst_ip 64.187.171.20 ip_proto tcp src_port 16999 dst_port 61150 action trap action police rate 1882496bps burst 1883496 INFO asyncssh:logging.py:92 [conn=68, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=16] Command: tc filter add dev swp1 ingress protocol 0x0800 flower skip_sw src_mac 02:71:ef:af:7b:ac dst_mac 02:a6:4c:c4:8b:4b src_ip 107.85.126.92 dst_ip 64.187.171.20 ip_proto tcp src_port 16999 dst_port 61150 action trap action police rate 1882496bps burst 1883496 && tc filter add dev swp2 ingress protocol 0x0800 flower skip_sw src_mac 02:71:ef:af:7b:ac dst_mac 02:a6:4c:c4:8b:4b src_ip 107.85.126.92 dst_ip 64.187.171.20 ip_proto tcp src_port 16999 dst_port 61150 action trap action police rate 1882496bps burst 1883496 && tc filter add dev swp3 ingress protocol 0x0800 flower skip_sw src_mac 02:71:ef:af:7b:ac dst_mac 02:a6:4c:c4:8b:4b src_ip 107.85.126.92 dst_ip 64.187.171.20 ip_proto tcp src_port 16999 dst_port 61150 action trap action police rate 1882496bps burst 1883496 && tc filter add dev swp4 ingress protocol 0x0800 flower skip_sw src_mac 02:71:ef:af:7b:ac dst_mac 02:a6:4c:c4:8b:4b src_ip 107.85.126.92 dst_ip 64.187.171.20 ip_proto tcp src_port 16999 dst_port 61150 action trap action police rate 1882496bps burst 1883496 INFO asyncssh:logging.py:92 [conn=68, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=68, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=68, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=18] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=68, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:a6:4c:c4:8b:4b","src_mac":"02:71:ef:af:7b:ac","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"64.187.171.20","src_ip":"107.85.126.92","dst_port":61150,"src_port":16999},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"reclassify"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:a6:4c:c4:8b:4b_src_mac_02:71:ef:af:7b:ac_eth_type_ipv4_ip_proto_tcp_dst_ip_64.187.171.20_src_ip_107.85.126.92_dst_port_61150_src_port_16999 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp2_dst_mac_02:a6:4c:c4:8b:4b_src_mac_02:71:ef:af:7b:ac_eth_type_ipv4_ip_proto_tcp_dst_ip_64.187.171.20_src_ip_107.85.126.92_dst_port_61150_src_port_16999 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp3_dst_mac_02:a6:4c:c4:8b:4b_src_mac_02:71:ef:af:7b:ac_eth_type_ipv4_ip_proto_tcp_dst_ip_64.187.171.20_src_ip_107.85.126.92_dst_port_61150_src_port_16999 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp4_dst_mac_02:a6:4c:c4:8b:4b_src_mac_02:71:ef:af:7b:ac_eth_type_ipv4_ip_proto_tcp_dst_ip_64.187.171.20_src_ip_107.85.126.92_dst_port_61150_src_port_16999 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=68, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=68, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=20] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=68, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=20] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=68, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=21] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=68, chan=22] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=68, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=21] Channel closed DEBUG agg1:Logger.py:156 4023 INFO asyncssh:logging.py:92 [conn=68, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=22] Channel closed DEBUG agg1:Logger.py:156 4032 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_dyn_traps_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=24] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:10:58 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=68, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=26] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:11:04 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=68, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=68, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=68, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=28] Channel closed DEBUG agg1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=68, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=30] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:11:04 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=68, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=68, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=32] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=68, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp2","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp3","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp4","parent":"ffff:fff1","options":{}},{"kind":"noqueue","handle":"0:","dev":"lag","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=68, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=68, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=34] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=68, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=68, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=36] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=68, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=68, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=54] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=68, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=68, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=56] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=68, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=68, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=58] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=68, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=68, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=60] Command: tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=68, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=60] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=68, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=62] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=68, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 ingress INFO asyncssh:logging.py:92 [conn=68, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=64] Command: tc qdisc delete dev swp3 ingress INFO asyncssh:logging.py:92 [conn=68, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=64] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=68, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=66] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=68, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 ingress INFO asyncssh:logging.py:92 [conn=68, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=68] Command: tc qdisc delete dev swp4 ingress INFO asyncssh:logging.py:92 [conn=68, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=68] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lag root INFO asyncssh:logging.py:92 [conn=68, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=70] Command: tc qdisc delete dev lag root INFO asyncssh:logging.py:92 [conn=68, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=71] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=72] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=72] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=73] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=74] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=74] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:11:05 PM UTC INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=68, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=75] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=68, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=76] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=68, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=76] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:26:5f:f0:50:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"balance-rr","miimon":0,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:08","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"34:ef:b6:ec:38:08","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:09","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0,"ad_aggregator_id":3,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":4,"perm_hwaddr":"34:ef:b6:ec:38:0a","queue_id":0,"ad_aggregator_id":4,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":98,"ifname":"lag","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=68, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=77] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond0 INFO asyncssh:logging.py:92 [conn=68, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=78] Command: ip link delete bond0 INFO asyncssh:logging.py:92 [conn=68, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=78] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=79] Channel closed DEBUG agg1:Logger.py:156 ip link delete lag INFO asyncssh:logging.py:92 [conn=68, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=80] Command: ip link delete lag INFO asyncssh:logging.py:92 [conn=68, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=80] Channel closed DEBUG agg1:Logger.py:156
Passed functional/devlink/test_devlink_interact.py::test_devlink_interact_static_traps_disabled 166.05
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-3175' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_static_traps_disabled">Starting testcase:test_devlink_interact_static_traps_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=69] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=69] Local address: 172.17.0.3, port 56084 INFO asyncssh:logging.py:92 [conn=69] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=69] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=69] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:11:06 PM UTC INFO asyncssh:logging.py:92 [conn=69, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=1] Channel closed DEBUG agg1:Logger.py:156 cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=69, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=2] Command: cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=69, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=2] Channel closed DEBUG agg1:Logger.py:156 all_unspecified_cpu_opcodes: 100 (pps) sct_acl_trap_queue_0: 4000 (pps) sct_acl_trap_queue_1: 4000 (pps) sct_acl_trap_queue_2: 4000 (pps) sct_acl_trap_queue_3: 4000 (pps) sct_acl_trap_queue_4: 4000 (pps) sct_acl_trap_queue_5: 4000 (pps) sct_acl_trap_queue_6: 4000 (pps) sct_acl_trap_queue_7: 4000 (pps) sct_arp_intervention: 100 (pps) sct_arp_to_me: 300 (pps) sct_bgp: 1000 (pps) sct_bgp_all_routers_mc: 100 (pps) sct_cdp: 200 (pps) sct_default_route: 400 (pps) sct_dhcp: 100 (pps) sct_icmp: 100 (pps) sct_igmp: 400 (pps) sct_ip_bc: 100 (pps) sct_ip_to_me: 10000 (pps) sct_isis: 1000 (pps) sct_lacp: 200 (pps) sct_lldp: 200 (pps) sct_nat: 10000 (pps) sct_ospf: 1000 (pps) sct_special_ip4_icmp_redirect: 100 (pps) sct_special_ip4_mtu_exceed: 100 (pps) sct_special_ip4_options_in_ip_hdr: 100 (pps) sct_special_ip4_zero_ttl: 100 (pps) sct_ssh: 1000 (pps) sct_stp: 200 (pps) sct_telnet: 200 (pps) sct_vrrp: 200 (pps) INFO asyncssh:logging.py:92 [conn=69, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=3] Channel closed DEBUG agg1:Logger.py:156 for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=69, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=4] Command: for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=69, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=6] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:11:06 PM UTC INFO asyncssh:logging.py:92 [conn=69, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=7] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=69, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=8] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=69, chan=8] Received exit status 1 INFO asyncssh:logging.py:92 [conn=69, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=69, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=9] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=69, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=10] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=69, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=11] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=12] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=12] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=14] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:11:07 PM UTC INFO DENT:Logger.py:84 [DENT aggregation 1] policer rate: 1253Kbps, traffic frame size: 187, expected trap rate: 6704pps INFO asyncssh:logging.py:92 [conn=69, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=69, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=16] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=69, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=69, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=18] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=69, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip flower skip_sw src_mac 02:a0:05:fa:56:dd dst_mac 02:ec:7f:7f:8c:06 src_ip 90.224.206.92 dst_ip 50.170.42.85 ip_proto udp src_port 44108 dst_port 63826 action trap action police rate 1253648bps burst 1254648 INFO asyncssh:logging.py:92 [conn=69, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=20] Command: tc filter add dev swp1 ingress protocol ip flower skip_sw src_mac 02:a0:05:fa:56:dd dst_mac 02:ec:7f:7f:8c:06 src_ip 90.224.206.92 dst_ip 50.170.42.85 ip_proto udp src_port 44108 dst_port 63826 action trap action police rate 1253648bps burst 1254648 INFO asyncssh:logging.py:92 [conn=69, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=69, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=69, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=22] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=69, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:ec:7f:7f:8c:06","src_mac":"02:a0:05:fa:56:dd","eth_type":"ipv4","ip_proto":"udp","dst_ip":"50.170.42.85","src_ip":"90.224.206.92","dst_port":63826,"src_port":44108},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"reclassify"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ec:7f:7f:8c:06_src_mac_02:a0:05:fa:56:dd_eth_type_ipv4_ip_proto_udp_dst_ip_50.170.42.85_src_ip_90.224.206.92_dst_port_63826_src_port_44108 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=69, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=69, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=24] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=69, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=24] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=69, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=25] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=69, chan=26] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=69, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=25] Channel closed DEBUG agg1:Logger.py:156 6730 INFO asyncssh:logging.py:92 [conn=69, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=26] Channel closed DEBUG agg1:Logger.py:156 6746 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_static_traps_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=28] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:13:46 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=69, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=30] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:13:51 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=69, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=69, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=69, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=32] Channel closed DEBUG agg1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=69, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=33] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=34] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:13:51 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=69, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=69, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=36] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=69, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=69, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=69, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=38] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=69, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=69, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=40] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=69, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=69, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=58] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=69, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=69, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=60] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=69, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=60] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=69, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=62] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=69, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=69, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=64] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=69, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=69, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=66] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=69, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=67] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=68] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=68] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=69] Channel closed DEBUG agg1:Logger.py:156 echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=69, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=70] Command: echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=69, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=70] Channel closed DEBUG agg1:Logger.py:156
Passed functional/devlink/test_devlink_interact.py::test_devlink_interact_sct_lag 337.03
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-3266' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_sct_lag">Starting testcase:test_devlink_interact_sct_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=70] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=70] Local address: 172.17.0.3, port 53822 INFO asyncssh:logging.py:92 [conn=70] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=70] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=70] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:13:52 PM UTC INFO asyncssh:logging.py:92 [conn=70, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=70, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=70, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=70, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=70, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=70, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=70, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:13:52 PM UTC INFO asyncssh:logging.py:92 [conn=70, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down INFO asyncssh:logging.py:92 [conn=70, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=10] Command: ip link set dev swp1 down INFO asyncssh:logging.py:92 [conn=70, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link add name bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=70, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=12] Command: ip link add name bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=70, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond1 up INFO asyncssh:logging.py:92 [conn=70, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=14] Command: ip link set dev bond1 up INFO asyncssh:logging.py:92 [conn=70, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=70, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=16] Command: ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=70, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=18] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.5/24', 'count': 1, 'ip': '2.2.2.5', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=70, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=20] Command: bridge -j vlan show dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=20] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev bond1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=70, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j address show bond1 INFO asyncssh:logging.py:92 [conn=70, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=22] Command: ip -j address show bond1 INFO asyncssh:logging.py:92 [conn=70, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":99,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"bond1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show bond1 ', 'rc': 0, 'result': '[{"ifindex":99,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"bond1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custom_stream_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=70, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=23] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=70, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=26] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=24] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=70, chan=31] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=70, chan=32] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=70, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=30] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=70, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=28] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=29] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=70, chan=34] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=70, chan=35] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=70, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=31] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=70, chan=32] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=70, chan=33] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=70, chan=34] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=70, chan=35] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=70, chan=36] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=70, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=30] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=31] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=32] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=34] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=36] Channel closed DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for stat_code 26 DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for stat_code 28 DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for stat_code 33 DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for stat_code 5 DEBUG agg1:Logger.py:156 300 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 300 expected 300 for stat_code 188 DEBUG agg1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 204 expected 200 for stat_code 27 DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for stat_code 29 INFO asyncssh:logging.py:92 [conn=70, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=38] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=39] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=40] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=41] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=70, chan=45] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=70, chan=46] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=70, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=42] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=43] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=70, chan=48] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=70, chan=49] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=70, chan=50] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=70, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=44] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=70, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=45] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=70, chan=46] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=70, chan=47] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=70, chan=48] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=70, chan=49] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=70, chan=50] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=70, chan=51] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=70, chan=52] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=70, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=45] Channel closed DEBUG agg1:Logger.py:156 1004 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1004 expected 1000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=70, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=47] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=46] Received channel close DEBUG agg1:Logger.py:156 1008 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1008 expected 1000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=70, chan=46] Channel closed DEBUG agg1:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 201 expected 200 for stat_code 208 INFO asyncssh:logging.py:92 [conn=70, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=50] Received channel close DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for stat_code 209 INFO asyncssh:logging.py:92 [conn=70, chan=50] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for stat_code 19 INFO asyncssh:logging.py:92 [conn=70, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=52] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=48] Received channel close DEBUG agg1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 200 expected 200 for stat_code 30 INFO asyncssh:logging.py:92 [conn=70, chan=48] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=49] Received channel close DEBUG agg1:Logger.py:156 10096 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 10096 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=70, chan=49] Channel closed DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for stat_code 65 INFO asyncssh:logging.py:92 [conn=70, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=53] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=54] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=70, chan=60] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=70, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=60] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=70, chan=61] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=70, chan=55] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=56] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=57] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=59] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=70, chan=62] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=70, chan=63] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=70, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=58] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=59] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=70, chan=65] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=70, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=62] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=70, chan=63] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=70, chan=64] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=70, chan=65] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=70, chan=66] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=70, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=61] Channel closed DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=70, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=60] Channel closed DEBUG agg1:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 201 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=70, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=63] Channel closed DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=70, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=65] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=66] Received channel close DEBUG agg1:Logger.py:156 308 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 308 expected 300 for trap_code arp_response INFO asyncssh:logging.py:92 [conn=70, chan=66] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=64] Received channel close DEBUG agg1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 102 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=70, chan=62] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=64] Channel closed DEBUG agg1:Logger.py:156 208 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 208 expected 200 for trap_code lldp DEBUG agg1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 103 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=70, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=74] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=68] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=69] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=70, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=69] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=70, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=71] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=70, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=70] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=71] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=72] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=70, chan=78] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=70, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=75] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=70, chan=76] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=70, chan=74] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=72] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=73] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=70, chan=80] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=70, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=77] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=70, chan=73] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=78] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=70, chan=79] Command: get_devlink_cpu_traps_rate_avg mac_to_me DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=70, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=80] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=70, chan=81] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=70, chan=82] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=70, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=75] Channel closed DEBUG agg1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 204 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=70, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=76] Channel closed DEBUG agg1:Logger.py:156 1007 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1007 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=70, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=78] Channel closed DEBUG agg1:Logger.py:156 10142 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 10142 expected 10000 for trap_code local_route INFO asyncssh:logging.py:92 [conn=70, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=81] Channel closed DEBUG agg1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 102 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=70, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=82] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for trap_code icmp INFO asyncssh:logging.py:92 [conn=70, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=77] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=80] Received channel close DEBUG agg1:Logger.py:156 1018 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1018 expected 1000 for trap_code ssh INFO asyncssh:logging.py:92 [conn=70, chan=79] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=80] Channel closed DEBUG agg1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 103 expected 100 for trap_code mac_to_me DEBUG agg1:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 203 expected 200 for trap_code vrrp INFO asyncssh:logging.py:92 [conn=70, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=70, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=84] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=70, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=84] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x0800 flower skip_sw dst_mac 02:cd:d3:d0:1b:7f src_ip 54.230.210.195 ip_proto udp dst_port 4979 action trap INFO asyncssh:logging.py:92 [conn=70, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=86] Command: tc filter add dev swp1 ingress protocol 0x0800 flower skip_sw dst_mac 02:cd:d3:d0:1b:7f src_ip 54.230.210.195 ip_proto udp dst_port 4979 action trap INFO asyncssh:logging.py:92 [conn=70, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=86] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=88] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=87] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=88] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=70, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=88] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=70, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=89] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=70, chan=90] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=70, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=89] Channel closed DEBUG agg1:Logger.py:156 4029 INFO asyncssh:logging.py:92 [conn=70, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=90] Channel closed DEBUG agg1:Logger.py:156 4038 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_sct_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=91] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=92] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:19:23 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=70, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=93] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=94] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=94] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:19:28 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=70, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=95] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=70, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=96] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=70, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=96] Channel closed DEBUG agg1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=70, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=97] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=98] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=98] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:19:28 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=70, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=70, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=100] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=70, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=100] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bond1","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=70, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=70, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=102] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=70, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=70, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=104] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=70, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=106] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=108] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=110] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=70, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=122] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=70, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=70, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=124] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=70, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=124] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=70, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=126] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=70, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=70, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=128] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=70, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=70, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=130] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=70, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev bond1 root INFO asyncssh:logging.py:92 [conn=70, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=132] Command: tc qdisc delete dev bond1 root INFO asyncssh:logging.py:92 [conn=70, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=133] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=134] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=134] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=135] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=136] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=136] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=136] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:19:29 PM UTC INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=70, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=137] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=70, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=138] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=70, chan=138] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=138] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":99,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=70, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=139] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=70, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=140] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=70, chan=140] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=140] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=141] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=142] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=142] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=142] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:19:29 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=70, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=143] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=70, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=144] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=70, chan=144] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=144] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=145] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=70, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=146] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=70, chan=146] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=146] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=70, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=147] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=70, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=148] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=70, chan=148] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=148] Channel closed DEBUG agg1:Logger.py:156
Passed functional/devlink/test_devlink_sct.py::test_devlink_sct_basic_ports[1] 324.50
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-3465' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_sct_basic_ports[1]">Starting testcase:test_devlink_sct_basic_ports[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=71] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=71] Local address: 172.17.0.3, port 56832 INFO asyncssh:logging.py:92 [conn=71] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=71] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=71] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:19:29 PM UTC INFO asyncssh:logging.py:92 [conn=71, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=71, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=71, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=71, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=71, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=71, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=71, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=71, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:19:29 PM UTC INFO asyncssh:logging.py:92 [conn=71, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=71, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=71, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp1 INFO asyncssh:logging.py:92 [conn=71, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=12] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp1 INFO asyncssh:logging.py:92 [conn=71, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.5/24', 'count': 1, 'ip': '2.2.2.5', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=71, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=71, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=14] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=71, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=14] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=71, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=71, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=16] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=71, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=71, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=19] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=71, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=18] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=21] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=71, chan=25] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=71, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=24] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=71, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=20] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=21] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=22] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=25] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=71, chan=26] Command: get_cpu_traps_rate_code_avg 27 sw DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=71, chan=27] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=71, chan=28] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=71, chan=29] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=71, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=27] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=71, chan=28] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=71, chan=29] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=71, chan=30] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=71, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=24] Channel closed DEBUG agg1:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 201 expected 200 for stat_code 28 INFO asyncssh:logging.py:92 [conn=71, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=26] Channel closed DEBUG agg1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 204 expected 200 for stat_code 27 INFO asyncssh:logging.py:92 [conn=71, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=25] Channel closed DEBUG agg1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 200 expected 200 for stat_code 26 INFO asyncssh:logging.py:92 [conn=71, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=27] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for stat_code 33 INFO asyncssh:logging.py:92 [conn=71, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=28] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=29] Received channel close DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for stat_code 5 INFO asyncssh:logging.py:92 [conn=71, chan=30] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=29] Channel closed DEBUG agg1:Logger.py:156 305 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 305 expected 300 for stat_code 188 DEBUG agg1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 102 expected 100 for stat_code 29 INFO asyncssh:logging.py:92 [conn=71, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=31] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=32] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=33] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=71, chan=39] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=71, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=34] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=71, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=36] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=34] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=37] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=71, chan=42] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=71, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=39] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=71, chan=40] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=71, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=38] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=41] Command: get_cpu_traps_rate_code_avg 206 sw DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=71, chan=44] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=71, chan=45] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=71, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=42] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=71, chan=43] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=71, chan=44] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=71, chan=45] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=71, chan=46] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=71, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=39] Channel closed DEBUG agg1:Logger.py:156 1007 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1007 expected 1000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=71, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=44] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for stat_code 65 INFO asyncssh:logging.py:92 [conn=71, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=45] Channel closed DEBUG agg1:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 203 expected 200 for stat_code 30 INFO asyncssh:logging.py:92 [conn=71, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=41] Channel closed DEBUG agg1:Logger.py:156 1006 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1006 expected 1000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=71, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=46] Channel closed DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for stat_code 209 INFO asyncssh:logging.py:92 [conn=71, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=43] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=42] Received channel close DEBUG agg1:Logger.py:156 10153 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 10153 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=71, chan=42] Channel closed DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for stat_code 19 INFO asyncssh:logging.py:92 [conn=71, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=40] Channel closed DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for stat_code 208 INFO asyncssh:logging.py:92 [conn=71, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=47] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=71, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=54] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=71, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=49] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=53] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=71, chan=55] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=71, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=48] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=52] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=50] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=53] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=71, chan=57] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=71, chan=58] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=71, chan=59] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=71, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=55] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=71, chan=56] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=71, chan=57] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=71, chan=58] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=71, chan=59] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=71, chan=60] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=71, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=54] Channel closed DEBUG agg1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 200 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=71, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=57] Channel closed DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=71, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=55] Channel closed DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=71, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=58] Channel closed DEBUG agg1:Logger.py:156 308 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 308 expected 300 for trap_code arp_response INFO asyncssh:logging.py:92 [conn=71, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=56] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=60] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=59] Received channel close DEBUG agg1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 103 expected 100 for trap_code arp_bc DEBUG agg1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 103 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=71, chan=59] Channel closed DEBUG agg1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 103 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=71, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=64] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=66] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=61] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=62] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=71, chan=69] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=71, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=65] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=63] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=67] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=71, chan=71] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=71, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=64] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=69] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=71, chan=70] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=71, chan=66] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=68] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=71, chan=73] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=71, chan=74] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=71, chan=75] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=71, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=71] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=71, chan=72] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=71, chan=73] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=71, chan=74] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=71, chan=75] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=71, chan=76] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=71, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=70] Channel closed DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=71, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=71] Channel closed DEBUG agg1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 102 expected 100 for trap_code mac_to_me INFO asyncssh:logging.py:92 [conn=71, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=69] Channel closed DEBUG agg1:Logger.py:156 1021 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1021 expected 1000 for trap_code ssh INFO asyncssh:logging.py:92 [conn=71, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=72] Channel closed DEBUG agg1:Logger.py:156 1018 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1018 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=71, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=74] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=75] Received channel close DEBUG agg1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 102 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=71, chan=75] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=73] Received channel close DEBUG agg1:Logger.py:156 104 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 104 expected 100 for trap_code icmp INFO asyncssh:logging.py:92 [conn=71, chan=76] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=73] Channel closed DEBUG agg1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 204 expected 200 for trap_code vrrp DEBUG agg1:Logger.py:156 10222 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 10222 expected 10000 for trap_code local_route INFO asyncssh:logging.py:92 [conn=71, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=71, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=78] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=71, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=78] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x9300 flower skip_sw src_mac 02:2d:91:a0:e5:e1 dst_mac 02:50:ae:08:8b:5d action trap INFO asyncssh:logging.py:92 [conn=71, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=80] Command: tc filter add dev swp1 ingress protocol 0x9300 flower skip_sw src_mac 02:2d:91:a0:e5:e1 dst_mac 02:50:ae:08:8b:5d action trap INFO asyncssh:logging.py:92 [conn=71, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=80] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=82] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=81] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=82] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=71, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=82] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=71, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=83] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=71, chan=84] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=71, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=83] Channel closed DEBUG agg1:Logger.py:156 4026 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 4026 expected 4000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=71, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=84] Channel closed DEBUG agg1:Logger.py:156 4038 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 4038 expected 4000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_sct_basic_ports[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=71, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=85] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=86] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=86] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:24:51 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=71, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=87] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=71, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=88] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=71, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=88] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=89] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=71, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=90] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=71, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=90] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=71, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=91] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=71, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=92] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=71, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=92] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=93] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=94] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=94] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:24:53 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=71, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=71, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=96] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=71, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=96] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=71, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=71, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=98] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=71, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=71, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=100] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=71, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=102] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=104] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=106] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=108] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=110] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=71, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=118] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=71, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=71, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=120] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=71, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=120] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=71, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=122] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=71, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=71, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=124] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=71, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=71, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=126] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=71, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=127] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=128] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=128] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=128] Channel closed DEBUG agg1:Logger.py:156
Passed functional/devlink/test_devlink_sct.py::test_devlink_sct_basic_ports[2] 375.57
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-3638' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_sct_basic_ports[2]">Starting testcase:test_devlink_sct_basic_ports[2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=71, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=72] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=72] Local address: 172.17.0.3, port 54084 INFO asyncssh:logging.py:92 [conn=72] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=72] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=72] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:24:54 PM UTC INFO asyncssh:logging.py:92 [conn=72, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=72, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=72, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=72, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=72, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=72, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=72, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=72, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:24:54 PM UTC INFO asyncssh:logging.py:92 [conn=72, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=72, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=72, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp1 INFO asyncssh:logging.py:92 [conn=72, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=12] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp1 INFO asyncssh:logging.py:92 [conn=72, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp2 INFO asyncssh:logging.py:92 [conn=72, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=14] Command: ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp2 INFO asyncssh:logging.py:92 [conn=72, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_192.168.2.5/24', 'count': 1, 'ip': '192.168.2.5', 'gw': '192.168.2.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=72, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=72, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=16] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=72, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=16] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=72, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=72, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=18] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=72, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=72, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=72, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=20] Command: bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=72, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=20] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp2 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=72, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=72, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=22] Command: ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=72, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp2","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp2 ', 'rc': 0, 'result': '[{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp2","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_192.168.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=72, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=24] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=26] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=27] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=72, chan=30] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=72, chan=31] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=72, chan=32] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=72, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=28] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=29] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=27] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=72, chan=34] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=72, chan=35] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=72, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=30] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=72, chan=31] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=72, chan=32] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=72, chan=33] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=72, chan=34] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=72, chan=35] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=72, chan=36] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=72, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=30] Channel closed DEBUG agg1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 200 expected 200 for stat_code 26 INFO asyncssh:logging.py:92 [conn=72, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=31] Channel closed DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for stat_code 27 INFO asyncssh:logging.py:92 [conn=72, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=33] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for stat_code 33 INFO asyncssh:logging.py:92 [conn=72, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=36] Channel closed DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for stat_code 5 INFO asyncssh:logging.py:92 [conn=72, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=34] Channel closed DEBUG agg1:Logger.py:156 305 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 305 expected 300 for stat_code 188 INFO asyncssh:logging.py:92 [conn=72, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=32] Received channel close DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for stat_code 29 INFO asyncssh:logging.py:92 [conn=72, chan=32] Channel closed DEBUG agg1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 204 expected 200 for stat_code 28 INFO asyncssh:logging.py:92 [conn=72, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=39] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=72, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=38] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=42] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=43] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=40] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=41] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=39] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=44] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=72, chan=46] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=72, chan=47] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=72, chan=48] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=72, chan=49] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=72, chan=50] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=72, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=44] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=45] Command: get_cpu_traps_rate_code_avg 207 sw DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=72, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=46] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=72, chan=47] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=72, chan=48] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=72, chan=49] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=72, chan=50] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=72, chan=51] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=72, chan=52] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=72, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=48] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for stat_code 209 INFO asyncssh:logging.py:92 [conn=72, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=45] Channel closed DEBUG agg1:Logger.py:156 1001 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1001 expected 1000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=72, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=51] Channel closed DEBUG agg1:Logger.py:156 1011 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1011 expected 1000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=72, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=46] Channel closed DEBUG agg1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 200 expected 200 for stat_code 208 INFO asyncssh:logging.py:92 [conn=72, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=50] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for stat_code 65 INFO asyncssh:logging.py:92 [conn=72, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=49] Channel closed DEBUG agg1:Logger.py:156 10083 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 10083 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=72, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=52] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=47] Received channel close DEBUG agg1:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 203 expected 200 for stat_code 30 INFO asyncssh:logging.py:92 [conn=72, chan=47] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for stat_code 19 INFO asyncssh:logging.py:92 [conn=72, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=53] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=54] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=72, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=54] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=56] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=72, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=56] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=72, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=60] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=72, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=57] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=58] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=55] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=59] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=72, chan=63] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=72, chan=64] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=72, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=61] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=72, chan=62] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=72, chan=59] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=72, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=63] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=72, chan=64] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=72, chan=65] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=72, chan=66] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=72, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=60] Channel closed DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=72, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=65] Channel closed DEBUG agg1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 200 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=72, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=66] Channel closed DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=72, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=63] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=72, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=64] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=62] Received channel close DEBUG agg1:Logger.py:156 303 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 303 expected 300 for trap_code arp_response INFO asyncssh:logging.py:92 [conn=72, chan=62] Channel closed DEBUG agg1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 102 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=72, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=61] Channel closed DEBUG agg1:Logger.py:156 206 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 206 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=72, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=74] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=68] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=70] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=72, chan=75] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=72, chan=76] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=72, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=69] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=72] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=72, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=75] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=72, chan=76] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=72, chan=71] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=77] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=72, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=72] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=72, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=73] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=74] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=78] Command: get_devlink_cpu_traps_rate_avg bgp DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=72, chan=80] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=72, chan=81] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=72, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=79] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=72, chan=80] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=72, chan=81] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=72, chan=82] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=72, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=76] Channel closed DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=72, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=80] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=72, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=79] Channel closed DEBUG agg1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 103 expected 100 for trap_code mac_to_me INFO asyncssh:logging.py:92 [conn=72, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=82] Channel closed DEBUG agg1:Logger.py:156 205 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 205 expected 200 for trap_code vrrp INFO asyncssh:logging.py:92 [conn=72, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=81] Channel closed DEBUG agg1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 102 expected 100 for trap_code icmp INFO asyncssh:logging.py:92 [conn=72, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=75] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=77] Received channel close DEBUG agg1:Logger.py:156 1018 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1018 expected 1000 for trap_code ssh INFO asyncssh:logging.py:92 [conn=72, chan=77] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=78] Received channel close DEBUG agg1:Logger.py:156 10250 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 10250 expected 10000 for trap_code local_route INFO asyncssh:logging.py:92 [conn=72, chan=78] Channel closed DEBUG agg1:Logger.py:156 1026 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1026 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=72, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=72, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=84] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=72, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=84] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x0800 flower skip_sw dst_mac 02:63:de:90:b0:2c src_ip 62.11.151.224 dst_ip 82.82.123.168 action trap INFO asyncssh:logging.py:92 [conn=72, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=86] Command: tc filter add dev swp1 ingress protocol 0x0800 flower skip_sw dst_mac 02:63:de:90:b0:2c src_ip 62.11.151.224 dst_ip 82.82.123.168 action trap INFO asyncssh:logging.py:92 [conn=72, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=86] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 ingress INFO asyncssh:logging.py:92 [conn=72, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=88] Command: tc qdisc add dev swp2 ingress INFO asyncssh:logging.py:92 [conn=72, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=88] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp2 ingress protocol ip flower skip_sw src_mac 02:b4:f9:4e:9b:11 dst_mac 02:62:31:8a:ce:48 src_ip 122.197.52.33 dst_ip 41.243.6.121 action trap INFO asyncssh:logging.py:92 [conn=72, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=90] Command: tc filter add dev swp2 ingress protocol ip flower skip_sw src_mac 02:b4:f9:4e:9b:11 dst_mac 02:62:31:8a:ce:48 src_ip 122.197.52.33 dst_ip 41.243.6.121 action trap INFO asyncssh:logging.py:92 [conn=72, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=90] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=91] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=92] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=72, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=92] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=72, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=93] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=72, chan=94] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=72, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=93] Channel closed DEBUG agg1:Logger.py:156 4032 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 4032 expected 4000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=72, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=94] Channel closed DEBUG agg1:Logger.py:156 4037 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 4037 expected 4000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_sct_basic_ports[2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=72, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=95] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=96] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=96] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:31:07 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=72, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=97] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=72, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=98] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=72, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=98] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=99] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=72, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=100] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=72, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=100] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=72, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=101] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=72, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=102] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=72, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=102] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=103] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=104] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=104] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:31:09 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=72, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=72, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=106] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=72, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=106] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp2","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=72, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=72, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=108] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=72, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=72, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=110] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=72, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=122] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=124] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=126] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=72, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=128] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=72, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=72, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=130] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=72, chan=130] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=130] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=72, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=132] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=72, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=72, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=134] Command: tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=72, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=134] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=72, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=136] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=72, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=72, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=138] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=72, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=139] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=140] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=140] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=140] Channel closed DEBUG agg1:Logger.py:156
Passed functional/devlink/test_devlink_sct.py::test_devlink_sct_basic_ports[4] 545.73
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-3823' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_sct_basic_ports[4]">Starting testcase:test_devlink_sct_basic_ports[4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=72, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=73] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=73] Local address: 172.17.0.3, port 55392 INFO asyncssh:logging.py:92 [conn=73] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=73] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=73] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:31:09 PM UTC INFO asyncssh:logging.py:92 [conn=73, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=73, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=73, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=73, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=73, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=73, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=73, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=73, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:31:09 PM UTC INFO asyncssh:logging.py:92 [conn=73, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=73, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=73, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp1 INFO asyncssh:logging.py:92 [conn=73, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=12] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp1 INFO asyncssh:logging.py:92 [conn=73, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp2 INFO asyncssh:logging.py:92 [conn=73, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=14] Command: ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp2 INFO asyncssh:logging.py:92 [conn=73, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address add 192.168.3.4/24 broadcast 192.168.3.255 dev swp3 INFO asyncssh:logging.py:92 [conn=73, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=16] Command: ip address add 192.168.3.4/24 broadcast 192.168.3.255 dev swp3 INFO asyncssh:logging.py:92 [conn=73, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address add 192.168.4.4/24 broadcast 192.168.4.255 dev swp4 INFO asyncssh:logging.py:92 [conn=73, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=18] Command: ip address add 192.168.4.4/24 broadcast 192.168.4.255 dev swp4 INFO asyncssh:logging.py:92 [conn=73, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_192.168.2.5/24', 'count': 1, 'ip': '192.168.2.5', 'gw': '192.168.2.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_192.168.3.5/24', 'count': 1, 'ip': '192.168.3.5', 'gw': '192.168.3.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_192.168.4.5/24', 'count': 1, 'ip': '192.168.4.5', 'gw': '192.168.4.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=73, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=73, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=20] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=73, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=20] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=73, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=22] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=73, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=23] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=73, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=24] Command: bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=73, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=24] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp2 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=73, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=26] Command: ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=73, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp2","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp2 ', 'rc': 0, 'result': '[{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp2","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=27] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp3 INFO asyncssh:logging.py:92 [conn=73, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=28] Command: bridge -j vlan show dev swp3 INFO asyncssh:logging.py:92 [conn=73, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=28] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp3 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp3 INFO asyncssh:logging.py:92 [conn=73, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=30] Command: ip -j address show swp3 INFO asyncssh:logging.py:92 [conn=73, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.3.4","prefixlen":24,"broadcast":"192.168.3.255","scope":"global","label":"swp3","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp3 ', 'rc': 0, 'result': '[{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.3.4","prefixlen":24,"broadcast":"192.168.3.255","scope":"global","label":"swp3","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=31] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp4 INFO asyncssh:logging.py:92 [conn=73, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=32] Command: bridge -j vlan show dev swp4 INFO asyncssh:logging.py:92 [conn=73, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=32] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp4 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp4 INFO asyncssh:logging.py:92 [conn=73, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=34] Command: ip -j address show swp4 INFO asyncssh:logging.py:92 [conn=73, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.4.4","prefixlen":24,"broadcast":"192.168.4.255","scope":"global","label":"swp4","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp4 ', 'rc': 0, 'result': '[{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.4.4","prefixlen":24,"broadcast":"192.168.4.255","scope":"global","label":"swp4","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_192.168.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_192.168.3.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_192.168.4.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=73, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=36] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=37] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=73, chan=42] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=73, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=38] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=73, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=39] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=42] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=73, chan=38] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=41] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=73, chan=45] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=73, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=43] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=73, chan=44] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=73, chan=40] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=41] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=45] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=73, chan=46] Command: get_cpu_traps_rate_code_avg 33 sw DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=73, chan=47] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=73, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=47] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=73, chan=48] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=73, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=42] Channel closed DEBUG agg1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 200 expected 200 for stat_code 26 INFO asyncssh:logging.py:92 [conn=73, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=43] Channel closed DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for stat_code 27 INFO asyncssh:logging.py:92 [conn=73, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=47] Channel closed DEBUG agg1:Logger.py:156 319 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 319 expected 300 for stat_code 188 INFO asyncssh:logging.py:92 [conn=73, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=46] Channel closed DEBUG agg1:Logger.py:156 121 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 121 expected 100 for stat_code 33 INFO asyncssh:logging.py:92 [conn=73, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=48] Channel closed DEBUG agg1:Logger.py:156 118 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 118 expected 100 for stat_code 29 INFO asyncssh:logging.py:92 [conn=73, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=44] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=45] Received channel close DEBUG agg1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 200 expected 200 for stat_code 28 INFO asyncssh:logging.py:92 [conn=73, chan=45] Channel closed DEBUG agg1:Logger.py:156 119 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 119 expected 100 for stat_code 5 INFO asyncssh:logging.py:92 [conn=73, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=49] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=52] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=73, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=50] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=52] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=51] Received exit status 0 DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=73, chan=58] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=73, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=57] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=73, chan=58] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=73, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=53] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=73, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=54] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=59] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=73, chan=55] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=56] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=73, chan=61] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=73, chan=62] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=73, chan=63] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=73, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=60] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=73, chan=61] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=73, chan=62] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=73, chan=63] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=73, chan=64] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=73, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=58] Channel closed DEBUG agg1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 200 expected 200 for stat_code 208 INFO asyncssh:logging.py:92 [conn=73, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=57] Channel closed DEBUG agg1:Logger.py:156 1010 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1010 expected 1000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=73, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=59] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=60] Received channel close DEBUG agg1:Logger.py:156 10099 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 10099 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=73, chan=60] Channel closed DEBUG agg1:Logger.py:156 1011 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1011 expected 1000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=73, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=64] Channel closed DEBUG agg1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 200 expected 200 for stat_code 30 INFO asyncssh:logging.py:92 [conn=73, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=62] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=63] Received channel close DEBUG agg1:Logger.py:156 120 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 120 expected 100 for stat_code 19 INFO asyncssh:logging.py:92 [conn=73, chan=63] Channel closed DEBUG agg1:Logger.py:156 122 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 122 expected 100 for stat_code 209 INFO asyncssh:logging.py:92 [conn=73, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=61] Channel closed DEBUG agg1:Logger.py:156 121 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 121 expected 100 for stat_code 65 INFO asyncssh:logging.py:92 [conn=73, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=66] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=65] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=66] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=67] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=73, chan=72] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=73, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=68] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=73, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=68] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=71] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=73, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=72] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=73, chan=69] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=73] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=73, chan=74] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=73, chan=70] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=71] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=73, chan=76] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=73, chan=77] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=73, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=75] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=73, chan=76] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=73, chan=77] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=73, chan=78] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=73, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=76] Channel closed DEBUG agg1:Logger.py:156 121 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 121 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=73, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=74] Channel closed DEBUG agg1:Logger.py:156 205 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 205 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=73, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=77] Channel closed DEBUG agg1:Logger.py:156 331 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 331 expected 300 for trap_code arp_response INFO asyncssh:logging.py:92 [conn=73, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=75] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=72] Received channel close DEBUG agg1:Logger.py:156 123 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 123 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=73, chan=72] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=73] Received channel close DEBUG agg1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 204 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=73, chan=78] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=73] Channel closed DEBUG agg1:Logger.py:156 122 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 122 expected 100 for trap_code router_mc DEBUG agg1:Logger.py:156 205 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 205 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=73, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=80] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=82] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=84] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=86] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=79] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=80] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=73, chan=87] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=73, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=81] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=82] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=83] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=84] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=73, chan=89] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=73, chan=90] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=73, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=87] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=73, chan=88] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=73, chan=84] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=85] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=86] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=73, chan=92] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=73, chan=93] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=73, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=89] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=73, chan=90] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=73, chan=91] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=73, chan=92] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=73, chan=93] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=73, chan=94] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=73, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=87] Channel closed DEBUG agg1:Logger.py:156 1020 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1020 expected 1000 for trap_code ssh INFO asyncssh:logging.py:92 [conn=73, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=89] Channel closed DEBUG agg1:Logger.py:156 1020 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1020 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=73, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=88] Channel closed DEBUG agg1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 204 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=73, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=91] Channel closed DEBUG agg1:Logger.py:156 120 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 120 expected 100 for trap_code mac_to_me INFO asyncssh:logging.py:92 [conn=73, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=90] Channel closed DEBUG agg1:Logger.py:156 10240 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 10240 expected 10000 for trap_code local_route INFO asyncssh:logging.py:92 [conn=73, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=94] Channel closed DEBUG agg1:Logger.py:156 206 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 206 expected 200 for trap_code vrrp INFO asyncssh:logging.py:92 [conn=73, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=92] Channel closed DEBUG agg1:Logger.py:156 121 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 121 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=73, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=93] Channel closed DEBUG agg1:Logger.py:156 122 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 122 expected 100 for trap_code icmp INFO asyncssh:logging.py:92 [conn=73, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=73, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=96] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=73, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=96] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x9200 flower skip_sw src_mac 02:e4:ae:e4:40:f0 dst_mac 02:10:e0:16:4f:19 action trap INFO asyncssh:logging.py:92 [conn=73, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=98] Command: tc filter add dev swp1 ingress protocol 0x9200 flower skip_sw src_mac 02:e4:ae:e4:40:f0 dst_mac 02:10:e0:16:4f:19 action trap INFO asyncssh:logging.py:92 [conn=73, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=98] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 ingress INFO asyncssh:logging.py:92 [conn=73, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=100] Command: tc qdisc add dev swp2 ingress INFO asyncssh:logging.py:92 [conn=73, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=100] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp2 ingress protocol 0x9300 flower skip_sw src_mac 02:b3:65:d3:60:86 dst_mac 02:3c:ef:b9:42:d9 action trap INFO asyncssh:logging.py:92 [conn=73, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=102] Command: tc filter add dev swp2 ingress protocol 0x9300 flower skip_sw src_mac 02:b3:65:d3:60:86 dst_mac 02:3c:ef:b9:42:d9 action trap INFO asyncssh:logging.py:92 [conn=73, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=102] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp3 ingress INFO asyncssh:logging.py:92 [conn=73, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=104] Command: tc qdisc add dev swp3 ingress INFO asyncssh:logging.py:92 [conn=73, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=104] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp3 ingress protocol 0x9200 flower skip_sw dst_mac 02:eb:3e:df:5c:51 action trap INFO asyncssh:logging.py:92 [conn=73, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=106] Command: tc filter add dev swp3 ingress protocol 0x9200 flower skip_sw dst_mac 02:eb:3e:df:5c:51 action trap INFO asyncssh:logging.py:92 [conn=73, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=106] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp4 ingress INFO asyncssh:logging.py:92 [conn=73, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=108] Command: tc qdisc add dev swp4 ingress INFO asyncssh:logging.py:92 [conn=73, chan=108] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=108] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp4 ingress protocol 0x9200 flower skip_sw src_mac 02:41:7d:31:96:d7 dst_mac 02:2c:de:4a:1b:8f action trap INFO asyncssh:logging.py:92 [conn=73, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=110] Command: tc filter add dev swp4 ingress protocol 0x9200 flower skip_sw src_mac 02:41:7d:31:96:d7 dst_mac 02:2c:de:4a:1b:8f action trap INFO asyncssh:logging.py:92 [conn=73, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=110] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=112] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=111] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=112] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=73, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=112] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=73, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=113] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=73, chan=114] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=73, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=113] Channel closed DEBUG agg1:Logger.py:156 4026 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 4026 expected 4000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=73, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=114] Channel closed DEBUG agg1:Logger.py:156 4040 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 4040 expected 4000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_sct_basic_ports[4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=73, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=115] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=116] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=116] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=116] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:40:12 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=73, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=117] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=73, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=118] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=73, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=118] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=119] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=73, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=120] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=73, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=120] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=73, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=121] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=73, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=122] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=73, chan=122] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=122] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=123] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=124] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=124] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:40:14 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=73, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=73, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=126] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=73, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=126] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp2","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp3","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp4","parent":"ffff:fff1","options":{}}] INFO asyncssh:logging.py:92 [conn=73, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=73, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=128] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=73, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=73, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=130] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=73, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=132] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=134] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=136] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=138] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=140] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=142] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=144] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=146] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=73, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=148] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=73, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=73, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=150] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=73, chan=150] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=150] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=73, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=152] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=73, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=73, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=154] Command: tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=73, chan=154] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=154] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=155] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=73, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=156] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=73, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=156] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=157] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 ingress INFO asyncssh:logging.py:92 [conn=73, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=158] Command: tc qdisc delete dev swp3 ingress INFO asyncssh:logging.py:92 [conn=73, chan=158] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=158] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=159] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=73, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=160] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=73, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=160] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=161] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 ingress INFO asyncssh:logging.py:92 [conn=73, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=162] Command: tc qdisc delete dev swp4 ingress INFO asyncssh:logging.py:92 [conn=73, chan=162] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=162] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=163] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=164] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=164] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=164] Channel closed DEBUG agg1:Logger.py:156
Passed functional/devlink/test_devlink_sct.py::test_devlink_static_trap_disable 1433.71
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-4032' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_static_trap_disable">Starting testcase:test_devlink_static_trap_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=73, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=74] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=74] Local address: 172.17.0.3, port 37684 INFO asyncssh:logging.py:92 [conn=74] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=74] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=74] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:40:15 PM UTC INFO asyncssh:logging.py:92 [conn=74, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=1] Channel closed DEBUG agg1:Logger.py:156 cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=74, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=2] Command: cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=74, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=2] Channel closed DEBUG agg1:Logger.py:156 all_unspecified_cpu_opcodes: 100 (pps) sct_acl_trap_queue_0: 4000 (pps) sct_acl_trap_queue_1: 4000 (pps) sct_acl_trap_queue_2: 4000 (pps) sct_acl_trap_queue_3: 4000 (pps) sct_acl_trap_queue_4: 4000 (pps) sct_acl_trap_queue_5: 4000 (pps) sct_acl_trap_queue_6: 4000 (pps) sct_acl_trap_queue_7: 4000 (pps) sct_arp_intervention: 100 (pps) sct_arp_to_me: 300 (pps) sct_bgp: 1000 (pps) sct_bgp_all_routers_mc: 100 (pps) sct_cdp: 200 (pps) sct_default_route: 400 (pps) sct_dhcp: 100 (pps) sct_icmp: 100 (pps) sct_igmp: 400 (pps) sct_ip_bc: 100 (pps) sct_ip_to_me: 10000 (pps) sct_isis: 1000 (pps) sct_lacp: 200 (pps) sct_lldp: 200 (pps) sct_nat: 10000 (pps) sct_ospf: 1000 (pps) sct_special_ip4_icmp_redirect: 100 (pps) sct_special_ip4_mtu_exceed: 100 (pps) sct_special_ip4_options_in_ip_hdr: 100 (pps) sct_special_ip4_zero_ttl: 100 (pps) sct_ssh: 1000 (pps) sct_stp: 200 (pps) sct_telnet: 200 (pps) sct_vrrp: 200 (pps) INFO asyncssh:logging.py:92 [conn=74, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=3] Channel closed DEBUG agg1:Logger.py:156 for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=74, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=4] Command: for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=74, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=6] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:40:15 PM UTC INFO asyncssh:logging.py:92 [conn=74, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=7] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=74, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=8] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=74, chan=8] Received exit status 1 INFO asyncssh:logging.py:92 [conn=74, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=74, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=9] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=74, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=10] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=74, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=11] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=12] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=12] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=14] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 08:40:16 PM UTC INFO asyncssh:logging.py:92 [conn=74, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=74, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=16] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=74, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp1 INFO asyncssh:logging.py:92 [conn=74, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=18] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp1 INFO asyncssh:logging.py:92 [conn=74, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.5/24', 'count': 1, 'ip': '2.2.2.5', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=74, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=74, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=20] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=74, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=20] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=74, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=74, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=22] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=74, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=24] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=74, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=24] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=74, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=25] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=74, chan=26] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=74, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=25] Channel closed DEBUG agg1:Logger.py:156 65901 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65901 expected 65000 for stat_code 26 INFO asyncssh:logging.py:92 [conn=74, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=26] Channel closed DEBUG agg1:Logger.py:156 66059 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66059 expected 65000 for trap_code stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=28] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=74, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=28] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=74, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=29] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=74, chan=30] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=74, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=29] Channel closed DEBUG agg1:Logger.py:156 65915 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65915 expected 65000 for stat_code 27 INFO asyncssh:logging.py:92 [conn=74, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=30] Channel closed DEBUG agg1:Logger.py:156 66095 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66095 expected 65000 for trap_code lacp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: lacp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=32] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=31] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=74, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=31] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=74, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=33] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=74, chan=34] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=74, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=34] Channel closed DEBUG agg1:Logger.py:156 66494 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66494 expected 65000 for stat_code 28 INFO asyncssh:logging.py:92 [conn=74, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=33] Channel closed DEBUG agg1:Logger.py:156 66926 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66926 expected 65000 for trap_code lldp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: lldp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=36] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=74, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=36] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=74, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=37] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=74, chan=38] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=74, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=37] Channel closed DEBUG agg1:Logger.py:156 65971 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65971 expected 65000 for stat_code 33 INFO asyncssh:logging.py:92 [conn=74, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=38] Channel closed DEBUG agg1:Logger.py:156 66114 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66114 expected 65000 for trap_code dhcp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: dhcp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=39] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=40] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=74, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=40] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=74, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=41] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=74, chan=42] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=74, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=41] Channel closed DEBUG agg1:Logger.py:156 65921 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65921 expected 65000 for stat_code 5 INFO asyncssh:logging.py:92 [conn=74, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=42] Channel closed DEBUG agg1:Logger.py:156 66109 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66109 expected 65000 for trap_code arp_bc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: arp_bc_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=43] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=44] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=74, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=44] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=74, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=45] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=74, chan=46] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=74, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=45] Channel closed DEBUG agg1:Logger.py:156 65898 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65898 expected 65000 for stat_code 188 INFO asyncssh:logging.py:92 [conn=74, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=46] Channel closed DEBUG agg1:Logger.py:156 66085 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66085 expected 65000 for trap_code arp_response INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: arp_response_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=47] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=48] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=74, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=48] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=74, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=49] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=74, chan=50] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=74, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=49] Channel closed DEBUG agg1:Logger.py:156 65894 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65894 expected 65000 for stat_code 29 INFO asyncssh:logging.py:92 [conn=74, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=50] Channel closed DEBUG agg1:Logger.py:156 66057 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66057 expected 65000 for trap_code router_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: router_mc_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=52] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=74, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=52] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=74, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=53] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=74, chan=54] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=74, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=53] Channel closed DEBUG agg1:Logger.py:156 65933 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65933 expected 65000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=74, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=54] Channel closed DEBUG agg1:Logger.py:156 66112 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66112 expected 65000 for trap_code ssh INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ssh_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=55] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=56] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=74, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=56] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=74, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=57] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=74, chan=58] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=74, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=57] Channel closed DEBUG agg1:Logger.py:156 65920 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65920 expected 65000 for stat_code 208 INFO asyncssh:logging.py:92 [conn=74, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=58] Channel closed DEBUG agg1:Logger.py:156 66039 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66039 expected 65000 for trap_code telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: telnet_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=60] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=59] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=60] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=74, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=60] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=74, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=61] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=74, chan=62] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=74, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=61] Channel closed DEBUG agg1:Logger.py:156 65897 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65897 expected 65000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=74, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=62] Channel closed DEBUG agg1:Logger.py:156 66045 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66045 expected 65000 for trap_code bgp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bgp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=64] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=63] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=64] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=74, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=64] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=74, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=65] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=74, chan=66] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=74, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=65] Channel closed DEBUG agg1:Logger.py:156 65895 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65895 expected 65000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=74, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=66] Channel closed DEBUG agg1:Logger.py:156 66079 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66079 expected 65000 for trap_code local_route INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: local_route_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=68] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=74, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=68] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=74, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=69] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=74, chan=70] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=74, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=69] Channel closed DEBUG agg1:Logger.py:156 65909 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65909 expected 65000 for stat_code 65 INFO asyncssh:logging.py:92 [conn=74, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=70] Channel closed DEBUG agg1:Logger.py:156 66085 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66085 expected 65000 for trap_code mac_to_me INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: mac_to_me_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=71] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=72] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=74, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=72] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=74, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=73] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=74, chan=74] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=74, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=73] Channel closed DEBUG agg1:Logger.py:156 65943 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65943 expected 65000 for stat_code 19 INFO asyncssh:logging.py:92 [conn=74, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=74] Channel closed DEBUG agg1:Logger.py:156 66107 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66107 expected 65000 for trap_code ip_bc_mac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_bc_mac_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=76] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=75] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=76] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=74, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=76] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=74, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=77] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=74, chan=78] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=74, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=77] Channel closed DEBUG agg1:Logger.py:156 65915 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65915 expected 65000 for stat_code 209 INFO asyncssh:logging.py:92 [conn=74, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=78] Channel closed DEBUG agg1:Logger.py:156 66098 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66098 expected 65000 for trap_code icmp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: icmp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=80] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=79] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=80] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=74, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=80] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=74, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=81] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=74, chan=82] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=74, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=81] Channel closed DEBUG agg1:Logger.py:156 66018 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66018 expected 65000 for stat_code 30 INFO asyncssh:logging.py:92 [conn=74, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=82] Channel closed DEBUG agg1:Logger.py:156 66081 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66081 expected 65000 for trap_code vrrp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: vrrp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=74, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=84] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=74, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=84] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 flower skip_sw src_mac 02:c2:85:28:a6:61 vlan_id 1952 vlan_ethtype ip src_ip 51.150.102.127 dst_ip 118.240.80.230 action trap INFO asyncssh:logging.py:92 [conn=74, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=86] Command: tc filter add dev swp1 ingress protocol 0x8100 flower skip_sw src_mac 02:c2:85:28:a6:61 vlan_id 1952 vlan_ethtype ip src_ip 51.150.102.127 dst_ip 118.240.80.230 action trap INFO asyncssh:logging.py:92 [conn=74, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=86] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=88] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=87] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=88] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=74, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=88] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=74, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=89] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=74, chan=90] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=74, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=89] Channel closed DEBUG agg1:Logger.py:156 65913 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65913 expected 65000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=74, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=90] Channel closed DEBUG agg1:Logger.py:156 66124 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66124 expected 65000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_static_trap_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=91] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=92] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:04:06 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=74, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=93] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=74, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=94] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=74, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=94] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=95] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=74, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=96] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=74, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=96] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=74, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=97] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=74, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=98] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=74, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=98] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=99] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=100] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=100] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:04:08 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=74, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=74, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=102] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=74, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=102] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=74, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=74, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=104] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=74, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=74, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=106] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=74, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=108] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=110] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=122] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=74, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=124] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=74, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=74, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=126] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=74, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=126] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=74, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=128] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=74, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=74, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=130] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=74, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=74, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=132] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=74, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=133] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=134] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=134] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=135] Channel closed DEBUG agg1:Logger.py:156 echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=74, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=136] Command: echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=74, chan=136] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=136] Channel closed DEBUG agg1:Logger.py:156
Passed functional/devlink/test_devlink_shared_block.py::test_devlink_same_rule_pref[single_block] 236.88
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-4215' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_same_rule_pref[single_block]">Starting testcase:test_devlink_same_rule_pref[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=75] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=75] Local address: 172.17.0.3, port 51348 INFO asyncssh:logging.py:92 [conn=75] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=75] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=75] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=75, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:04:09 PM UTC INFO asyncssh:logging.py:92 [conn=75, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=75, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=75, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=75, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=75, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=75, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=75, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=75, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=75, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:04:09 PM UTC INFO asyncssh:logging.py:92 [conn=75, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=75, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=75, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=75, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=75, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=75, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 2704 flower skip_sw dst_mac 02:1c:7f:5d:ed:19 vlan_id 1521 action trap action police rate 706660bps burst 707660 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=14] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 2704 flower skip_sw dst_mac 02:1c:7f:5d:ed:19 vlan_id 1521 action trap action police rate 706660bps burst 707660 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 2704 flower skip_sw dst_mac 02:1c:7f:5d:ed:19 vlan_id 1521 src_mac 02:87:db:6d:60:ed action trap action police rate 235553bps burst 236553 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=16] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 2704 flower skip_sw dst_mac 02:1c:7f:5d:ed:19 vlan_id 1521 src_mac 02:87:db:6d:60:ed action trap action police rate 235553bps burst 236553 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=75, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=75, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=19] Channel closed DEBUG agg1:Logger.py:156 1826 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1826 expected 1830.7253886010362 for stat_code 195 INFO asyncssh:logging.py:92 [conn=75, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=20] Channel closed DEBUG agg1:Logger.py:156 1830 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1830 expected 1830.7253886010362 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=75, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress handle 0x1 pref 2704 flower INFO asyncssh:logging.py:92 [conn=75, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=22] Command: tc filter delete dev swp1 ingress handle 0x1 pref 2704 flower INFO asyncssh:logging.py:92 [conn=75, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 2704 flower skip_sw dst_mac 02:1c:7f:5d:ed:19 vlan_id 1521 action trap action police rate 706660bps burst 707660 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=24] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 2704 flower skip_sw dst_mac 02:1c:7f:5d:ed:19 vlan_id 1521 action trap action police rate 706660bps burst 707660 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=75, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=75, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=26] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=26] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=27] Channel closed DEBUG agg1:Logger.py:156 612 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 612 expected 610.240932642487 for stat_code 195 INFO asyncssh:logging.py:92 [conn=75, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=28] Channel closed DEBUG agg1:Logger.py:156 614 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 614 expected 610.240932642487 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_same_rule_pref[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=75, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=75, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=30] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:08:05 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=75, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=75, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=32] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=75, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=75, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=75, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=34] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=75, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=75, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=36] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=75, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=75, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=54] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=75, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=75, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=56] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=75, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=75, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=58] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=75, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=75, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=60] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=75, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=75, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=62] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=75, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=63] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=64] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=64] Channel closed DEBUG agg1:Logger.py:156
Passed functional/devlink/test_devlink_shared_block.py::test_devlink_same_rule_pref[shared_block] 235.62
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-4293' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_same_rule_pref[shared_block]">Starting testcase:test_devlink_same_rule_pref[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=75, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=76] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=76] Local address: 172.17.0.3, port 55866 INFO asyncssh:logging.py:92 [conn=76] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=76] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=76] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=76, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:08:06 PM UTC INFO asyncssh:logging.py:92 [conn=76, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=76, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=76, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=76, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=76, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=76, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=76, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=76, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=76, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:08:06 PM UTC INFO asyncssh:logging.py:92 [conn=76, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=76, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=76, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=76, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=76, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=76, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 4148 flower skip_sw dst_mac 02:05:dd:4d:ec:29 vlan_id 164 action trap action police rate 2329165bps burst 2330165 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=14] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 4148 flower skip_sw dst_mac 02:05:dd:4d:ec:29 vlan_id 164 action trap action police rate 2329165bps burst 2330165 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 4148 flower skip_sw dst_mac 02:05:dd:4d:ec:29 vlan_id 164 src_mac 02:fc:51:1a:4e:f8 action trap action police rate 776388bps burst 777388 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=16] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 4148 flower skip_sw dst_mac 02:05:dd:4d:ec:29 vlan_id 164 src_mac 02:fc:51:1a:4e:f8 action trap action police rate 776388bps burst 777388 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=76, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=76, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=19] Channel closed DEBUG agg1:Logger.py:156 3403 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 3403 expected 3385.4142441860463 for stat_code 195 INFO asyncssh:logging.py:92 [conn=76, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=20] Channel closed DEBUG agg1:Logger.py:156 3409 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 3409 expected 3385.4142441860463 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=76, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress handle 0x1 pref 4148 flower INFO asyncssh:logging.py:92 [conn=76, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=22] Command: tc filter delete dev swp1 ingress handle 0x1 pref 4148 flower INFO asyncssh:logging.py:92 [conn=76, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 4148 flower skip_sw dst_mac 02:05:dd:4d:ec:29 vlan_id 164 action trap action police rate 2329165bps burst 2330165 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=24] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 4148 flower skip_sw dst_mac 02:05:dd:4d:ec:29 vlan_id 164 action trap action police rate 2329165bps burst 2330165 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=76, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=76, chan=26] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=27] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=27] Channel closed DEBUG agg1:Logger.py:156 1133 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1133 expected 1128.4709302325582 for stat_code 195 INFO asyncssh:logging.py:92 [conn=76, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=28] Channel closed DEBUG agg1:Logger.py:156 1136 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1136 expected 1128.4709302325582 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_same_rule_pref[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=76, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=76, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=30] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:12:01 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=76, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=76, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=32] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=76, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=76, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=76, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=34] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=76, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=76, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=36] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=76, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=76, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=54] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=76, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=76, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=56] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=76, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=76, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=58] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=76, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=76, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=60] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=76, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=76, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=62] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=76, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=63] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=64] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=64] Channel closed DEBUG agg1:Logger.py:156
Passed functional/devlink/test_devlink_shared_block.py::test_devlink_rule_priority[single_block] 276.80
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-4371' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_rule_priority[single_block]">Starting testcase:test_devlink_rule_priority[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=76, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=77] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=77] Local address: 172.17.0.3, port 47120 INFO asyncssh:logging.py:92 [conn=77] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=77] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=77] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=77, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:12:01 PM UTC INFO asyncssh:logging.py:92 [conn=77, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=77, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=77, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=77, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=77, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=77, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=77, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=77, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=77, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:12:01 PM UTC INFO asyncssh:logging.py:92 [conn=77, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=77, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=77, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=77, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=77, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=77, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q pref 19442 flower skip_sw src_mac 02:a3:ef:21:6b:cb dst_mac 02:69:c0:9f:4b:0e vlan_id 1161 action trap action police rate 2071409bps burst 2072409 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=14] Command: tc filter add dev swp1 ingress protocol 802.1q pref 19442 flower skip_sw src_mac 02:a3:ef:21:6b:cb dst_mac 02:69:c0:9f:4b:0e vlan_id 1161 action trap action police rate 2071409bps burst 2072409 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q pref 20442 flower skip_sw src_mac 02:a3:ef:21:6b:cb dst_mac 02:69:c0:9f:4b:0e vlan_id 1161 action trap action police rate 690469bps burst 691469 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=16] Command: tc filter add dev swp1 ingress protocol 802.1q pref 20442 flower skip_sw src_mac 02:a3:ef:21:6b:cb dst_mac 02:69:c0:9f:4b:0e vlan_id 1161 action trap action police rate 690469bps burst 691469 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=77, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=19] Channel closed DEBUG agg1:Logger.py:156 1516 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1516 expected 1513.081811541271 for stat_code 195 INFO asyncssh:logging.py:92 [conn=77, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=20] Channel closed DEBUG agg1:Logger.py:156 1521 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1521 expected 1513.081811541271 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 19442 INFO asyncssh:logging.py:92 [conn=77, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=22] Command: tc filter delete dev swp1 ingress pref 19442 INFO asyncssh:logging.py:92 [conn=77, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q pref 19442 flower skip_sw src_mac 02:a3:ef:21:6b:cb dst_mac 02:69:c0:9f:4b:0e vlan_id 1161 action trap action police rate 2071409bps burst 2072409 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=24] Command: tc filter add dev swp1 ingress protocol 802.1q pref 19442 flower skip_sw src_mac 02:a3:ef:21:6b:cb dst_mac 02:69:c0:9f:4b:0e vlan_id 1161 action trap action police rate 2071409bps burst 2072409 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=77, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=26] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=26] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=27] Channel closed DEBUG agg1:Logger.py:156 1516 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1516 expected 1513.081811541271 for stat_code 195 INFO asyncssh:logging.py:92 [conn=77, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=28] Channel closed DEBUG agg1:Logger.py:156 1521 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1521 expected 1513.081811541271 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 19442 INFO asyncssh:logging.py:92 [conn=77, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=30] Command: tc filter delete dev swp1 ingress pref 19442 INFO asyncssh:logging.py:92 [conn=77, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q pref 21442 flower skip_sw src_mac 02:a3:ef:21:6b:cb dst_mac 02:69:c0:9f:4b:0e vlan_id 1161 action trap action police rate 2071409bps burst 2072409 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=32] Command: tc filter add dev swp1 ingress protocol 802.1q pref 21442 flower skip_sw src_mac 02:a3:ef:21:6b:cb dst_mac 02:69:c0:9f:4b:0e vlan_id 1161 action trap action police rate 2071409bps burst 2072409 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=77, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=34] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=34] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=35] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=36] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=35] Channel closed DEBUG agg1:Logger.py:156 505 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 505 expected 504.3601168736304 for stat_code 195 INFO asyncssh:logging.py:92 [conn=77, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=36] Channel closed DEBUG agg1:Logger.py:156 506 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 506 expected 504.3601168736304 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_rule_priority[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=77, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=37] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=77, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=38] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:16:37 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=77, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=77, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=40] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=77, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=77, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=77, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=42] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=77, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=77, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=44] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=77, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=77, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=62] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=77, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=77, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=64] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=77, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=64] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=77, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=66] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=77, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=77, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=68] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=77, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=77, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=70] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=77, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=71] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=72] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=72] Channel closed DEBUG agg1:Logger.py:156
Passed functional/devlink/test_devlink_shared_block.py::test_devlink_rule_priority[shared_block] 269.43
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-4459' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_rule_priority[shared_block]">Starting testcase:test_devlink_rule_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=77, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=78] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=78] Local address: 172.17.0.3, port 46656 INFO asyncssh:logging.py:92 [conn=78] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=78] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=78] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=78, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:16:38 PM UTC INFO asyncssh:logging.py:92 [conn=78, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=78, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=78, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=78, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=78, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=78, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=78, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=78, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=78, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:16:38 PM UTC INFO asyncssh:logging.py:92 [conn=78, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=78, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=78, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=78, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=78, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=78, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x0800 pref 20081 flower skip_sw dst_mac 02:4e:bc:83:be:d6 dst_ip 62.31.27.157 action trap action police rate 567774bps burst 568774 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=14] Command: tc filter add dev swp1 ingress protocol 0x0800 pref 20081 flower skip_sw dst_mac 02:4e:bc:83:be:d6 dst_ip 62.31.27.157 action trap action police rate 567774bps burst 568774 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x0800 pref 21081 flower skip_sw dst_mac 02:4e:bc:83:be:d6 dst_ip 62.31.27.157 action trap action police rate 141943bps burst 142943 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=16] Command: tc filter add dev swp1 ingress protocol 0x0800 pref 21081 flower skip_sw dst_mac 02:4e:bc:83:be:d6 dst_ip 62.31.27.157 action trap action police rate 141943bps burst 142943 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=78, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=19] Channel closed DEBUG agg1:Logger.py:156 631 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 631 expected 633.6763392857143 for stat_code 195 INFO asyncssh:logging.py:92 [conn=78, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=20] Channel closed DEBUG agg1:Logger.py:156 633 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 633 expected 633.6763392857143 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 20081 INFO asyncssh:logging.py:92 [conn=78, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=22] Command: tc filter delete dev swp1 ingress pref 20081 INFO asyncssh:logging.py:92 [conn=78, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x0800 pref 20081 flower skip_sw dst_mac 02:4e:bc:83:be:d6 dst_ip 62.31.27.157 action trap action police rate 567774bps burst 568774 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=24] Command: tc filter add dev swp1 ingress protocol 0x0800 pref 20081 flower skip_sw dst_mac 02:4e:bc:83:be:d6 dst_ip 62.31.27.157 action trap action police rate 567774bps burst 568774 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=78, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=26] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=26] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=27] Channel closed DEBUG agg1:Logger.py:156 632 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 632 expected 633.6763392857143 for stat_code 195 INFO asyncssh:logging.py:92 [conn=78, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=28] Channel closed DEBUG agg1:Logger.py:156 633 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 633 expected 633.6763392857143 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 20081 INFO asyncssh:logging.py:92 [conn=78, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=30] Command: tc filter delete dev swp1 ingress pref 20081 INFO asyncssh:logging.py:92 [conn=78, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x0800 pref 22081 flower skip_sw dst_mac 02:4e:bc:83:be:d6 dst_ip 62.31.27.157 action trap action police rate 567774bps burst 568774 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=32] Command: tc filter add dev swp1 ingress protocol 0x0800 pref 22081 flower skip_sw dst_mac 02:4e:bc:83:be:d6 dst_ip 62.31.27.157 action trap action police rate 567774bps burst 568774 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=78, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=34] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=34] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=35] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=36] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=35] Channel closed DEBUG agg1:Logger.py:156 158 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 158 expected 158.41852678571428 for stat_code 195 INFO asyncssh:logging.py:92 [conn=78, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=36] Channel closed DEBUG agg1:Logger.py:156 159 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 159 expected 158.41852678571428 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_rule_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=78, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=37] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=78, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=38] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:21:07 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=78, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=78, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=40] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=78, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=78, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=78, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=42] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=78, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=78, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=44] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=78, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=78, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=62] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=78, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=78, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=64] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=78, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=64] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=78, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=66] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=78, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=78, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=68] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=78, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=78, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=70] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=78, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=71] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=72] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=72] Channel closed DEBUG agg1:Logger.py:156
Passed functional/devlink/test_devlink_single_block.py::test_devlink_basic[l2] 168.44
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-4547' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_basic[l2]">Starting testcase:test_devlink_basic[l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=78, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=79] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=79] Local address: 172.17.0.3, port 37012 INFO asyncssh:logging.py:92 [conn=79] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=79] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=79] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=79, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:21:08 PM UTC INFO asyncssh:logging.py:92 [conn=79, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=79, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=79, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=79, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=79, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=79, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=79, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=79, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=79, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:21:08 PM UTC INFO asyncssh:logging.py:92 [conn=79, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=79, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=79, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=79, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=79, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=79, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q flower skip_sw src_mac aa:aa:aa:aa:aa:00 dst_mac aa:00:00:00:00:55 vlan_id 2149 action trap action police rate 615145bps burst 616145 conform-exceed drop INFO asyncssh:logging.py:92 [conn=79, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=14] Command: tc filter add dev swp1 ingress protocol 802.1q flower skip_sw src_mac aa:aa:aa:aa:aa:00 dst_mac aa:00:00:00:00:55 vlan_id 2149 action trap action police rate 615145bps burst 616145 conform-exceed drop INFO asyncssh:logging.py:92 [conn=79, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=79, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=79, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2149,"dst_mac":"aa:00:00:00:00:55","src_mac":"aa:aa:aa:aa:aa:00"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2149_dst_mac_aa:00:00:00:00:55_src_mac_aa:aa:aa:aa:aa:00 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=79, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=79, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=79, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=79, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=79, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=79, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=19] Channel closed DEBUG agg1:Logger.py:156 2186 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 2186 expected 2181.3652482269504 for stat_code 195 INFO asyncssh:logging.py:92 [conn=79, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=20] Channel closed DEBUG agg1:Logger.py:156 2190 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 2190 expected 2181.3652482269504 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_basic[l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=79, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=79, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:23:55 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=79, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=79, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=79, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=79, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=79, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=79, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=79, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=79, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=79, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=79, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=79, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=79, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=79, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=79, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=79, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=79, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=79, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=79, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=55] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=56] Channel closed DEBUG agg1:Logger.py:156
Passed functional/devlink/test_devlink_single_block.py::test_devlink_basic[l3] 171.14
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-4615' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_basic[l3]">Starting testcase:test_devlink_basic[l3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=79, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=80] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=80] Local address: 172.17.0.3, port 60058 INFO asyncssh:logging.py:92 [conn=80] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=80] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=80] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=80, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:23:56 PM UTC INFO asyncssh:logging.py:92 [conn=80, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=80, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=80, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=80, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=80, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=80, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=80, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=80, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=80, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:23:56 PM UTC INFO asyncssh:logging.py:92 [conn=80, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=80, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=80, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=80, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=80, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=80, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip flower skip_sw src_ip 19.215.22.246 dst_ip 26.55.157.37 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 366488bps burst 367488 conform-exceed drop INFO asyncssh:logging.py:92 [conn=80, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=14] Command: tc filter add dev swp1 ingress protocol ip flower skip_sw src_ip 19.215.22.246 dst_ip 26.55.157.37 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 366488bps burst 367488 conform-exceed drop INFO asyncssh:logging.py:92 [conn=80, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=80, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=80, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"00:00:00:00:00:02","src_mac":"00:00:00:00:00:01","eth_type":"ipv4","dst_ip":"26.55.157.37","src_ip":"19.215.22.246"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_00:00:00:00:00:02_src_mac_00:00:00:00:00:01_eth_type_ipv4_dst_ip_26.55.157.37_src_ip_19.215.22.246 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=80, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=80, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=80, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=80, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=80, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=80, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=19] Channel closed DEBUG agg1:Logger.py:156 2194 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 2194 expected 2181.4761904761904 for stat_code 195 INFO asyncssh:logging.py:92 [conn=80, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=20] Channel closed DEBUG agg1:Logger.py:156 2200 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 2200 expected 2181.4761904761904 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_basic[l3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=80, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=80, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:26:46 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=80, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=80, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=80, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=80, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=80, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=80, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=80, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=80, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=80, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=80, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=80, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=80, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=80, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=80, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=80, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=80, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=80, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=80, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=55] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=56] Channel closed DEBUG agg1:Logger.py:156
Passed functional/devlink/test_devlink_single_block.py::test_devlink_basic[l4] 170.59
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-4683' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_basic[l4]">Starting testcase:test_devlink_basic[l4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=80, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=81] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=81] Local address: 172.17.0.3, port 55280 INFO asyncssh:logging.py:92 [conn=81] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=81] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=81] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=81, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:26:47 PM UTC INFO asyncssh:logging.py:92 [conn=81, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=81, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=81, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=81, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=81, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=81, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=81, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=81, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=81, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:26:47 PM UTC INFO asyncssh:logging.py:92 [conn=81, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=81, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=81, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=81, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=81, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=81, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x0800 flower skip_sw src_ip 1.1.1.2 dst_ip 2.2.2.3 ip_proto tcp src_port 44703 dst_port 13024 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 3769515bps burst 3770515 conform-exceed drop INFO asyncssh:logging.py:92 [conn=81, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=14] Command: tc filter add dev swp1 ingress protocol 0x0800 flower skip_sw src_ip 1.1.1.2 dst_ip 2.2.2.3 ip_proto tcp src_port 44703 dst_port 13024 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 3769515bps burst 3770515 conform-exceed drop INFO asyncssh:logging.py:92 [conn=81, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=81, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=81, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"00:00:00:00:00:02","src_mac":"00:00:00:00:00:01","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"2.2.2.3","src_ip":"1.1.1.2","dst_port":13024,"src_port":44703},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_00:00:00:00:00:02_src_mac_00:00:00:00:00:01_eth_type_ipv4_ip_proto_tcp_dst_ip_2.2.2.3_src_ip_1.1.1.2_dst_port_13024_src_port_44703 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=81, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=81, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=81, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=81, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=81, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=81, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=19] Channel closed DEBUG agg1:Logger.py:156 3897 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 3897 expected 3878.1018518518517 for stat_code 195 INFO asyncssh:logging.py:92 [conn=81, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=20] Channel closed DEBUG agg1:Logger.py:156 3907 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 3907 expected 3878.1018518518517 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_basic[l4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=81, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=81, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:29:37 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=81, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=81, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=81, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=81, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=81, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=81, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=81, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=81, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=81, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=81, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=81, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=81, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=81, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=81, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=81, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=81, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=81, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=81, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=55] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=56] Channel closed DEBUG agg1:Logger.py:156
Passed functional/devlink/test_devlink_single_block.py::test_devlink_random 173.53
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-4751' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_random">Starting testcase:test_devlink_random from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=81, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=82] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=82] Local address: 172.17.0.3, port 37854 INFO asyncssh:logging.py:92 [conn=82] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=82] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=82] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=82, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:29:38 PM UTC INFO asyncssh:logging.py:92 [conn=82, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=82, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=82, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=82, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=82, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=82, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=82, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=82, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=82, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:29:38 PM UTC INFO asyncssh:logging.py:92 [conn=82, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=82, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=82, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=82, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=82, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=82, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 flower skip_sw src_mac 02:a9:33:47:71:a5 dst_mac 02:9b:c2:41:84:65 vlan_id 3542 vlan_ethtype 0x0800 src_ip 116.38.81.179 dst_ip 13.151.50.154 action trap action police rate 430573bps burst 431573 conform-exceed drop INFO asyncssh:logging.py:92 [conn=82, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=14] Command: tc filter add dev swp1 ingress protocol 0x8100 flower skip_sw src_mac 02:a9:33:47:71:a5 dst_mac 02:9b:c2:41:84:65 vlan_id 3542 vlan_ethtype 0x0800 src_ip 116.38.81.179 dst_ip 13.151.50.154 action trap action police rate 430573bps burst 431573 conform-exceed drop INFO asyncssh:logging.py:92 [conn=82, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=82, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=82, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":3542,"vlan_ethtype":"ip","dst_mac":"02:9b:c2:41:84:65","src_mac":"02:a9:33:47:71:a5","eth_type":"ipv4","dst_ip":"13.151.50.154","src_ip":"116.38.81.179"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_3542_vlan_ethtype_ip_dst_mac_02:9b:c2:41:84:65_src_mac_02:a9:33:47:71:a5_eth_type_ipv4_dst_ip_13.151.50.154_src_ip_116.38.81.179 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=82, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=82, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=82, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=82, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=82, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=82, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=19] Channel closed DEBUG agg1:Logger.py:156 1915 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1915 expected 1905.1902654867256 for stat_code 195 INFO asyncssh:logging.py:92 [conn=82, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=20] Channel closed DEBUG agg1:Logger.py:156 1921 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1921 expected 1905.1902654867256 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_random from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=82, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=82, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:32:30 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=82, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=82, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=82, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=82, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=82, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=82, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=82, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=82, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=82, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=82, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=82, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=82, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=82, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=82, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=82, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=82, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=82, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=82, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=55] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=56] Channel closed DEBUG agg1:Logger.py:156
Passed functional/devlink/test_devlink_single_block.py::test_devlink_policer_log 174.25
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-4819' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_policer_log">Starting testcase:test_devlink_policer_log from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=82, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=83] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=83] Local address: 172.17.0.3, port 48886 INFO asyncssh:logging.py:92 [conn=83] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=83] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=83] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=83, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:32:31 PM UTC INFO asyncssh:logging.py:92 [conn=83, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=83, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=83, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=83, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=83, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=83, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=83, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=83, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=83, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:32:31 PM UTC INFO asyncssh:logging.py:92 [conn=83, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=83, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=83, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=83, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=83, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=83, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q flower skip_sw src_mac 02:ae:3f:17:68:8d vlan_id 913 action trap action police rate 100kbit burst 6250 conform-exceed drop INFO asyncssh:logging.py:92 [conn=83, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=14] Command: tc filter add dev swp1 ingress protocol 802.1q flower skip_sw src_mac 02:ae:3f:17:68:8d vlan_id 913 action trap action police rate 100kbit burst 6250 conform-exceed drop INFO asyncssh:logging.py:92 [conn=83, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=83, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=83, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":913,"src_mac":"02:ae:3f:17:68:8d"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=83, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q flower src_mac 02:ae:3f:17:68:8d vlan_id 913 action xt limit 3/sec -j LOG INFO asyncssh:logging.py:92 [conn=83, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=18] Command: tc filter add dev swp1 ingress protocol 802.1q flower src_mac 02:ae:3f:17:68:8d vlan_id 913 action xt limit 3/sec -j LOG INFO asyncssh:logging.py:92 [conn=83, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=18] Channel closed DEBUG agg1:Logger.py:156 tablename: mangle hook: NF_IP_POST_ROUTING target: LOG level warning index 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_913_src_mac_02:ae:3f:17:68:8d INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=83, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=19] Channel closed DEBUG agg1:Logger.py:156 tail -50 /var/log/messages | grep -Eo "IN=swp1" | wc -l INFO asyncssh:logging.py:92 [conn=83, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=20] Command: tail -50 /var/log/messages | grep -Eo "IN=swp1" | wc -l INFO asyncssh:logging.py:92 [conn=83, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=20] Channel closed DEBUG agg1:Logger.py:156 50 INFO asyncssh:logging.py:92 [conn=83, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=21] Channel closed INFO asyncssh:logging.py:92 [conn=83, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=22] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=83, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=22] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=83, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=23] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=83, chan=24] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=83, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=23] Channel closed DEBUG agg1:Logger.py:156 29 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 29 expected 29 for stat_code 195 INFO asyncssh:logging.py:92 [conn=83, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=24] Channel closed DEBUG agg1:Logger.py:156 30 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 30 expected 29 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_policer_log from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=83, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=83, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=26] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:35:25 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=83, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=83, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=83, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=83, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=83, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=83, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=83, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=83, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=83, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=50] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=83, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=83, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=52] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=83, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=52] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=83, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=83, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=83, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=56] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=83, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=83, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=58] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=83, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=59] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=60] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=60] Channel closed DEBUG agg1:Logger.py:156
Passed functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[bit] 175.77
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-4891' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[bit]">Starting testcase:test_devlink_diff_rate_units[bit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=83, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=84] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=84] Local address: 172.17.0.3, port 50010 INFO asyncssh:logging.py:92 [conn=84] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=84] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=84] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=84, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:35:26 PM UTC INFO asyncssh:logging.py:92 [conn=84, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=84, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=84, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=84, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=84, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=84, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=84, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=84, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=84, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:35:26 PM UTC INFO asyncssh:logging.py:92 [conn=84, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=84, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=84, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=84, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=84, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=84, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip flower skip_sw src_mac 02:d3:4f:95:65:91 dst_mac 02:13:d9:05:cf:8d src_ip 20.236.115.179 ip_proto udp src_port 20427 action trap action police rate 9078067.0bit burst 9079067.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=84, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=14] Command: tc filter add dev swp1 ingress protocol ip flower skip_sw src_mac 02:d3:4f:95:65:91 dst_mac 02:13:d9:05:cf:8d src_ip 20.236.115.179 ip_proto udp src_port 20427 action trap action police rate 9078067.0bit burst 9079067.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=84, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=84, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=84, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:13:d9:05:cf:8d","src_mac":"02:d3:4f:95:65:91","eth_type":"ipv4","ip_proto":"udp","src_ip":"20.236.115.179","src_port":20427},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:13:d9:05:cf:8d_src_mac_02:d3:4f:95:65:91_eth_type_ipv4_ip_proto_udp_src_ip_20.236.115.179_src_port_20427 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=84, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=84, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=84, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=84, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=84, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=84, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=19] Channel closed DEBUG agg1:Logger.py:156 3227 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 3227 expected 3232.9298433048434 for stat_code 195 INFO asyncssh:logging.py:92 [conn=84, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=20] Channel closed DEBUG agg1:Logger.py:156 3234 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 3234 expected 3232.9298433048434 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[bit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=84, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=84, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:38:21 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=84, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=84, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=84, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=84, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=84, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=84, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=84, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=84, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=84, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=84, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=84, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=84, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=84, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=84, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=84, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=84, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=84, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=84, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=55] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=56] Channel closed DEBUG agg1:Logger.py:156
Passed functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[kbit] 166.05
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-4959' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[kbit]">Starting testcase:test_devlink_diff_rate_units[kbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=84, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=85] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=85] Local address: 172.17.0.3, port 48974 INFO asyncssh:logging.py:92 [conn=85] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=85] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=85] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=85, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:38:21 PM UTC INFO asyncssh:logging.py:92 [conn=85, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=85, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=85, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=85, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=85, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=85, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=85, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=85, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=85, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:38:21 PM UTC INFO asyncssh:logging.py:92 [conn=85, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=85, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=85, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=85, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=85, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=85, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x9100 flower skip_sw src_mac 02:c9:16:ea:c7:9b dst_mac 02:13:c2:88:1f:e2 action trap action police rate 5688.385kbit burst 6688.385 conform-exceed drop INFO asyncssh:logging.py:92 [conn=85, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=14] Command: tc filter add dev swp1 ingress protocol 0x9100 flower skip_sw src_mac 02:c9:16:ea:c7:9b dst_mac 02:13:c2:88:1f:e2 action trap action police rate 5688.385kbit burst 6688.385 conform-exceed drop INFO asyncssh:logging.py:92 [conn=85, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=85, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=85, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"[37120]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37120]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:13:c2:88:1f:e2","src_mac":"02:c9:16:ea:c7:9b","eth_type":"9100"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:13:c2:88:1f:e2_src_mac_02:c9:16:ea:c7:9b_eth_type_9100 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=85, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=85, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=85, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=85, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=85, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=85, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=19] Channel closed DEBUG agg1:Logger.py:156 2290 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 2290 expected 2271.7192492012778 for stat_code 195 INFO asyncssh:logging.py:92 [conn=85, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=20] Channel closed DEBUG agg1:Logger.py:156 2295 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 2295 expected 2271.7192492012778 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[kbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=85, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=85, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:41:07 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=85, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=85, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=85, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=85, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=85, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=85, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=85, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=85, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=85, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=85, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=85, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=85, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=85, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=85, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=85, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=85, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=85, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=85, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=55] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=56] Channel closed DEBUG agg1:Logger.py:156
Passed functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[gbit] 170.66
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5027' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[gbit]">Starting testcase:test_devlink_diff_rate_units[gbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=85, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=86] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=86] Local address: 172.17.0.3, port 37760 INFO asyncssh:logging.py:92 [conn=86] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=86] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=86] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=86, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:41:07 PM UTC INFO asyncssh:logging.py:92 [conn=86, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=86, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=86, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=86, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=86, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=86, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=86, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=86, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=86, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:41:07 PM UTC INFO asyncssh:logging.py:92 [conn=86, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=86, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=86, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=86, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=86, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=86, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 flower skip_sw dst_mac 02:55:c2:98:54:23 src_ip 116.14.246.67 dst_ip 50.143.82.249 action trap action police rate 0.007473339gbit burst 1000.007473339 conform-exceed drop INFO asyncssh:logging.py:92 [conn=86, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=14] Command: tc filter add dev swp1 ingress protocol ipv4 flower skip_sw dst_mac 02:55:c2:98:54:23 src_ip 116.14.246.67 dst_ip 50.143.82.249 action trap action police rate 0.007473339gbit burst 1000.007473339 conform-exceed drop INFO asyncssh:logging.py:92 [conn=86, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=86, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=86, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:55:c2:98:54:23","eth_type":"ipv4","dst_ip":"50.143.82.249","src_ip":"116.14.246.67"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:55:c2:98:54:23_eth_type_ipv4_dst_ip_50.143.82.249_src_ip_116.14.246.67 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=86, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=86, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=86, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=86, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=86, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=86, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=19] Channel closed DEBUG agg1:Logger.py:156 2232 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 2232 expected 2218.9248812351543 for stat_code 195 INFO asyncssh:logging.py:92 [conn=86, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=20] Channel closed DEBUG agg1:Logger.py:156 2238 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 2238 expected 2218.9248812351543 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[gbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=86, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=86, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:43:57 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=86, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=86, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=86, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=86, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=86, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=86, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=86, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=86, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=86, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=86, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=86, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=86, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=86, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=86, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=86, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=86, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=86, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=86, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=55] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=56] Channel closed DEBUG agg1:Logger.py:156
Passed functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[bps] 176.98
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5095' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[bps]">Starting testcase:test_devlink_diff_rate_units[bps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=86, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=87] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=87] Local address: 172.17.0.3, port 42286 INFO asyncssh:logging.py:92 [conn=87] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=87] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=87] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=87, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:43:58 PM UTC INFO asyncssh:logging.py:92 [conn=87, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=87, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=87, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=87, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=87, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=87, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=87, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=87, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=87, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:43:58 PM UTC INFO asyncssh:logging.py:92 [conn=87, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=87, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=87, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=87, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=87, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=87, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q flower skip_sw dst_mac 02:82:e0:a2:78:9b vlan_id 2954 action trap action police rate 589370.5bps burst 590370.5 conform-exceed drop INFO asyncssh:logging.py:92 [conn=87, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=14] Command: tc filter add dev swp1 ingress protocol 802.1q flower skip_sw dst_mac 02:82:e0:a2:78:9b vlan_id 2954 action trap action police rate 589370.5bps burst 590370.5 conform-exceed drop INFO asyncssh:logging.py:92 [conn=87, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=87, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=87, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2954,"dst_mac":"02:82:e0:a2:78:9b"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_2954_dst_mac_02:82:e0:a2:78:9b INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=87, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=87, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=87, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=87, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=87, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=87, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=19] Channel closed DEBUG agg1:Logger.py:156 2075 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 2075 expected 2067.9666666666667 for stat_code 195 INFO asyncssh:logging.py:92 [conn=87, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=20] Channel closed DEBUG agg1:Logger.py:156 2079 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 2079 expected 2067.9666666666667 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[bps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=87, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=87, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:46:54 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=87, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=87, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=87, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=87, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=87, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=87, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=87, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=87, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=87, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=87, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=87, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=87, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=87, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=87, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=87, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=87, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=87, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=87, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=55] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=56] Channel closed DEBUG agg1:Logger.py:156
Passed functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[kbps] 175.62
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5163' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[kbps]">Starting testcase:test_devlink_diff_rate_units[kbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=87, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=88] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=88] Local address: 172.17.0.3, port 46062 INFO asyncssh:logging.py:92 [conn=88] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=88] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=88] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=88, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:46:55 PM UTC INFO asyncssh:logging.py:92 [conn=88, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=88, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=88, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=88, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=88, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=88, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=88, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=88, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=88, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:46:55 PM UTC INFO asyncssh:logging.py:92 [conn=88, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=88, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=88, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=88, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=88, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=88, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q flower skip_sw src_mac 02:9c:00:ea:96:8e dst_mac 02:95:78:a2:be:61 vlan_id 3588 vlan_ethtype 0x0800 src_ip 69.30.29.220 ip_proto udp src_port 58464 dst_port 65474 action trap action police rate 546.350875kbps burst 1546.350875 conform-exceed drop INFO asyncssh:logging.py:92 [conn=88, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=14] Command: tc filter add dev swp1 ingress protocol 802.1q flower skip_sw src_mac 02:9c:00:ea:96:8e dst_mac 02:95:78:a2:be:61 vlan_id 3588 vlan_ethtype 0x0800 src_ip 69.30.29.220 ip_proto udp src_port 58464 dst_port 65474 action trap action police rate 546.350875kbps burst 1546.350875 conform-exceed drop INFO asyncssh:logging.py:92 [conn=88, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=88, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=88, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":3588,"vlan_ethtype":"ip","dst_mac":"02:95:78:a2:be:61","src_mac":"02:9c:00:ea:96:8e","eth_type":"ipv4","ip_proto":"udp","src_ip":"69.30.29.220","dst_port":65474,"src_port":58464},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_3588_vlan_ethtype_ip_dst_mac_02:95:78:a2:be:61_src_mac_02:9c:00:ea:96:8e_eth_type_ipv4_ip_proto_udp_src_ip_69.30.29.220_dst_port_65474_src_port_58464 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=88, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=88, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=88, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=88, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=88, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=88, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=19] Channel closed DEBUG agg1:Logger.py:156 1826 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1826 expected 1815.1191860465117 for stat_code 195 INFO asyncssh:logging.py:92 [conn=88, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=20] Channel closed DEBUG agg1:Logger.py:156 1831 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1831 expected 1815.1191860465117 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[kbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=88, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=88, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:49:50 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=88, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=88, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=88, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=88, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=88, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=88, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=88, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=88, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=88, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=88, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=88, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=88, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=88, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=88, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=88, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=88, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=88, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=88, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=55] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=56] Channel closed DEBUG agg1:Logger.py:156
Passed functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[mbps] 176.86
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5231' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[mbps]">Starting testcase:test_devlink_diff_rate_units[mbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=88, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=89] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=89] Local address: 172.17.0.3, port 46074 INFO asyncssh:logging.py:92 [conn=89] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=89] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=89] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=89, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:49:51 PM UTC INFO asyncssh:logging.py:92 [conn=89, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=89, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=89, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=89, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=89, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=89, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=89, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=89, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=89, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:49:51 PM UTC INFO asyncssh:logging.py:92 [conn=89, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=89, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=89, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=89, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=89, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=89, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 flower skip_sw dst_mac 02:87:11:b4:38:50 vlan_id 1151 action trap action police rate 1.054713625mbps burst 1001.054713625 conform-exceed drop INFO asyncssh:logging.py:92 [conn=89, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=14] Command: tc filter add dev swp1 ingress protocol 0x8100 flower skip_sw dst_mac 02:87:11:b4:38:50 vlan_id 1151 action trap action police rate 1.054713625mbps burst 1001.054713625 conform-exceed drop INFO asyncssh:logging.py:92 [conn=89, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=89, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=89, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1151,"dst_mac":"02:87:11:b4:38:50"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1151_dst_mac_02:87:11:b4:38:50 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=89, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=89, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=89, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=89, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=89, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=89, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=19] Channel closed DEBUG agg1:Logger.py:156 2252 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 2252 expected 2239.307059447983 for stat_code 195 INFO asyncssh:logging.py:92 [conn=89, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=20] Channel closed DEBUG agg1:Logger.py:156 2257 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 2257 expected 2239.307059447983 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[mbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=89, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=89, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:52:47 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=89, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=89, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=89, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=89, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=89, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=89, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=89, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=89, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=89, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=89, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=89, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=89, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=89, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=89, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=89, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=89, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=89, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=89, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=55] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=56] Channel closed DEBUG agg1:Logger.py:156
Passed functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[gbps] 165.63
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5299' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[gbps]">Starting testcase:test_devlink_diff_rate_units[gbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=89, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=90] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=90] Local address: 172.17.0.3, port 39734 INFO asyncssh:logging.py:92 [conn=90] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=90] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=90] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=90, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:52:47 PM UTC INFO asyncssh:logging.py:92 [conn=90, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=90, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=90, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=90, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=90, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=90, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=90, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=90, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=90, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:52:48 PM UTC INFO asyncssh:logging.py:92 [conn=90, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=90, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=90, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=90, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=90, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=90, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 flower skip_sw dst_mac 02:08:c5:a2:0c:60 src_ip 24.112.185.56 dst_ip 87.109.74.151 action trap action police rate 0.000274001375gbps burst 1000.000274001375 conform-exceed drop INFO asyncssh:logging.py:92 [conn=90, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=14] Command: tc filter add dev swp1 ingress protocol ipv4 flower skip_sw dst_mac 02:08:c5:a2:0c:60 src_ip 24.112.185.56 dst_ip 87.109.74.151 action trap action police rate 0.000274001375gbps burst 1000.000274001375 conform-exceed drop INFO asyncssh:logging.py:92 [conn=90, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=90, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=90, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:08:c5:a2:0c:60","eth_type":"ipv4","dst_ip":"87.109.74.151","src_ip":"24.112.185.56"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:08:c5:a2:0c:60_eth_type_ipv4_dst_ip_87.109.74.151_src_ip_24.112.185.56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=90, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=90, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=90, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=90, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=90, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=90, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=19] Channel closed DEBUG agg1:Logger.py:156 757 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 757 expected 752.7510302197802 for stat_code 195 INFO asyncssh:logging.py:92 [conn=90, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=20] Channel closed DEBUG agg1:Logger.py:156 758 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 758 expected 752.7510302197802 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[gbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=90, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=90, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:55:32 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=90, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=90, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=90, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=90, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=90, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=90, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=90, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=90, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=90, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=90, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=90, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=90, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=90, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=90, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=90, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=90, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=90, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=90, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=55] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=56] Channel closed DEBUG agg1:Logger.py:156
Passed functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[tbps] 168.09
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5367' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[tbps]">Starting testcase:test_devlink_diff_rate_units[tbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=90, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=91] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=91] Local address: 172.17.0.3, port 50372 INFO asyncssh:logging.py:92 [conn=91] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=91] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=91] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=91, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:55:33 PM UTC INFO asyncssh:logging.py:92 [conn=91, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=91, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=91, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=91, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=91, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=91, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=91, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=91, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=91, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:55:33 PM UTC INFO asyncssh:logging.py:92 [conn=91, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=91, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=91, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=91, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=91, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=91, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:5e:13:b2:36:7d dst_mac 02:ef:04:46:2a:4a src_ip 91.199.30.23 dst_ip 84.114.226.161 ip_proto udp dst_port 55428 action trap action police rate 4.76103375e-07tbps burst 1000.0000004761034 conform-exceed drop INFO asyncssh:logging.py:92 [conn=91, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=14] Command: tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:5e:13:b2:36:7d dst_mac 02:ef:04:46:2a:4a src_ip 91.199.30.23 dst_ip 84.114.226.161 ip_proto udp dst_port 55428 action trap action police rate 4.76103375e-07tbps burst 1000.0000004761034 conform-exceed drop INFO asyncssh:logging.py:92 [conn=91, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=91, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=91, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:ef:04:46:2a:4a","src_mac":"02:5e:13:b2:36:7d","eth_type":"ipv4","ip_proto":"udp","dst_ip":"84.114.226.161","src_ip":"91.199.30.23","dst_port":55428},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ef:04:46:2a:4a_src_mac_02:5e:13:b2:36:7d_eth_type_ipv4_ip_proto_udp_dst_ip_84.114.226.161_src_ip_91.199.30.23_dst_port_55428 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=91, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=91, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=91, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=91, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=91, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=91, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=19] Channel closed DEBUG agg1:Logger.py:156 2748 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 2748 expected 2736.2262931034484 for stat_code 195 INFO asyncssh:logging.py:92 [conn=91, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=20] Channel closed DEBUG agg1:Logger.py:156 2754 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 2754 expected 2736.2262931034484 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[tbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=91, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=91, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:58:20 PM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=91, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=91, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=91, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=91, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=91, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=91, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=91, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=91, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=91, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=91, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=91, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=91, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=91, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=91, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=91, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=91, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=91, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=91, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=55] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=56] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ecmp/test_ecmp.py::test_ecmp_nexthops_down[1] 152.36
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5435' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_nexthops_down[1]">Starting testcase:test_ecmp_nexthops_down[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=91, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=92] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=92] Local address: 172.17.0.3, port 41044 INFO asyncssh:logging.py:92 [conn=92] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=92] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=92] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:58:21 PM UTC INFO asyncssh:logging.py:92 [conn=92, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown INFO asyncssh:logging.py:92 [conn=92, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=2] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown INFO asyncssh:logging.py:92 [conn=92, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 0 INFO asyncssh:logging.py:92 [conn=92, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=1 INFO asyncssh:logging.py:92 [conn=92, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=4] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=1 INFO asyncssh:logging.py:92 [conn=92, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=6] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:58:21 PM UTC INFO asyncssh:logging.py:92 [conn=92, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=7] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=92, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=92, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=8] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=92, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=9] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=92, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=92, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=10] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 09:58:21 PM UTC INFO asyncssh:logging.py:92 [conn=92, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=92, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=14] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=92, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev swp2 && ip address add 12.0.0.1/16 dev swp3 && ip address add 13.0.0.1/20 dev swp4 INFO asyncssh:logging.py:92 [conn=92, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=16] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev swp2 && ip address add 12.0.0.1/16 dev swp3 && ip address add 13.0.0.1/20 dev swp4 INFO asyncssh:logging.py:92 [conn=92, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=92, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp2 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp3 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp4 INFO asyncssh:logging.py:92 [conn=92, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=18] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp2 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp3 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp4 INFO asyncssh:logging.py:92 [conn=92, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=92, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=20] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=92, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=21] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=92, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=22] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=92, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=22] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=92, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=92, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=24] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=92, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=92, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 down INFO asyncssh:logging.py:92 [conn=92, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=26] Command: ip link set dev swp2 down INFO asyncssh:logging.py:92 [conn=92, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e7d6e60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 54843325 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 2 Rx 27421670 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 2 Rx 27421787 INFO asyncssh:logging.py:92 [conn=92, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=92, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=28] Command: ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=92, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=28] Channel closed DEBUG agg1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_nexthops_down[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=92, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=29] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=92, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=30] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=92, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=30] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=32] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:00:52 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=33] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=34] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:00:52 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=92, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=92, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=36] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=92, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=92, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=92, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=92, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 down && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=92, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=40] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 down && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=92, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=92, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=41] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=0 INFO asyncssh:logging.py:92 [conn=92, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=42] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=0 INFO asyncssh:logging.py:92 [conn=92, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=42] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 0
Passed functional/ecmp/test_ecmp.py::test_ecmp_nexthops_down[3] 154.79
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5491' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_nexthops_down[3]">Starting testcase:test_ecmp_nexthops_down[3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=93] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=93] Local address: 172.17.0.3, port 41264 INFO asyncssh:logging.py:92 [conn=93] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=93] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=93] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:00:54 PM UTC INFO asyncssh:logging.py:92 [conn=93, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown INFO asyncssh:logging.py:92 [conn=93, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=2] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown INFO asyncssh:logging.py:92 [conn=93, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 0 INFO asyncssh:logging.py:92 [conn=93, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=1 INFO asyncssh:logging.py:92 [conn=93, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=4] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=1 INFO asyncssh:logging.py:92 [conn=93, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=6] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:00:54 PM UTC INFO asyncssh:logging.py:92 [conn=93, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=7] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=93, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=93, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=8] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=93, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=9] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=93, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=93, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=10] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:00:54 PM UTC INFO asyncssh:logging.py:92 [conn=93, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=93, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=14] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=93, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev swp2 && ip address add 12.0.0.1/16 dev swp3 && ip address add 13.0.0.1/20 dev swp4 INFO asyncssh:logging.py:92 [conn=93, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=16] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev swp2 && ip address add 12.0.0.1/16 dev swp3 && ip address add 13.0.0.1/20 dev swp4 INFO asyncssh:logging.py:92 [conn=93, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=93, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp2 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp3 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp4 INFO asyncssh:logging.py:92 [conn=93, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=18] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp2 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp3 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp4 INFO asyncssh:logging.py:92 [conn=93, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=93, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=20] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=93, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=21] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=93, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=22] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=93, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=22] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=93, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=93, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=24] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=93, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=93, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=93, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=26] Command: ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=93, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e8418d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 62980671 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 2 Rx 9 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 2 Rx 9 INFO asyncssh:logging.py:92 [conn=93, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=93, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=28] Command: ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=93, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=28] Channel closed DEBUG agg1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_nexthops_down[3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=93, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=29] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=93, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=30] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=93, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=30] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=32] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:03:27 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=33] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=34] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:03:27 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=93, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=93, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=36] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=93, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=93, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=93, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=93, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=93, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=40] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=93, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=93, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=41] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=0 INFO asyncssh:logging.py:92 [conn=93, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=42] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=0 INFO asyncssh:logging.py:92 [conn=93, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=42] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 0
Passed functional/ecmp/test_ecmp.py::test_ecmp_hash_policy 293.33
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5547' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_hash_policy">Starting testcase:test_ecmp_hash_policy from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=94] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=94] Local address: 172.17.0.3, port 42250 INFO asyncssh:logging.py:92 [conn=94] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=94] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=94] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:03:28 PM UTC INFO asyncssh:logging.py:92 [conn=94, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.fib_multipath_hash_policy INFO asyncssh:logging.py:92 [conn=94, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=2] Command: sysctl net.ipv4.fib_multipath_hash_policy INFO asyncssh:logging.py:92 [conn=94, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.fib_multipath_hash_policy = 0 INFO asyncssh:logging.py:92 [conn=94, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.fib_multipath_hash_policy=1 INFO asyncssh:logging.py:92 [conn=94, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=4] Command: sysctl net.ipv4.fib_multipath_hash_policy=1 INFO asyncssh:logging.py:92 [conn=94, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.fib_multipath_hash_policy = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=6] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:03:28 PM UTC INFO asyncssh:logging.py:92 [conn=94, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=7] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=94, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=94, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=8] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=94, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=9] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=94, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=94, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=10] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:03:29 PM UTC INFO asyncssh:logging.py:92 [conn=94, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=94, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=14] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=94, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev swp2 && ip address add 12.0.0.1/16 dev swp3 && ip address add 13.0.0.1/20 dev swp4 INFO asyncssh:logging.py:92 [conn=94, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=16] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev swp2 && ip address add 12.0.0.1/16 dev swp3 && ip address add 13.0.0.1/20 dev swp4 INFO asyncssh:logging.py:92 [conn=94, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=94, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp2 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp3 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp4 INFO asyncssh:logging.py:92 [conn=94, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=18] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp2 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp3 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp4 INFO asyncssh:logging.py:92 [conn=94, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=94, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=20] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=94, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=21] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=94, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=22] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=94, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=22] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=94, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=94, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=24] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=94, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_9 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_11 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_12 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_13 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_15 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_17 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_18 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_19 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e353f40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 20000 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 6003 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 2 Rx 5018 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 2 Rx 9017
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_hash_policy from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=94, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=25] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=94, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=26] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=94, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=26] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=28] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:08:20 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=30] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:08:20 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=94, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=94, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=32] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=94, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=94, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=34] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=94, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=94, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=94, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=36] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=94, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=94, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=37] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.fib_multipath_hash_policy=0 INFO asyncssh:logging.py:92 [conn=94, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=38] Command: sysctl net.ipv4.fib_multipath_hash_policy=0 INFO asyncssh:logging.py:92 [conn=94, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=38] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.fib_multipath_hash_policy = 0
Passed functional/ecmp/test_ecmp.py::test_ecmp_traffic_distribution[basic] 153.20
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5601' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_traffic_distribution[basic]">Starting testcase:test_ecmp_traffic_distribution[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=95] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=95] Local address: 172.17.0.3, port 56666 INFO asyncssh:logging.py:92 [conn=95] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=95] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=95] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=95, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:08:22 PM UTC INFO asyncssh:logging.py:92 [conn=95, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=95, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=95, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=95, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=95, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=95, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=95, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=95, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=6] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:08:22 PM UTC INFO asyncssh:logging.py:92 [conn=95, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=95, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=95, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev swp2 && ip address add 12.0.0.1/16 dev swp3 && ip address add 13.0.0.1/20 dev swp4 INFO asyncssh:logging.py:92 [conn=95, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev swp2 && ip address add 12.0.0.1/16 dev swp3 && ip address add 13.0.0.1/20 dev swp4 INFO asyncssh:logging.py:92 [conn=95, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=95, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp2 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp3 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp4 INFO asyncssh:logging.py:92 [conn=95, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=12] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp2 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp3 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp4 INFO asyncssh:logging.py:92 [conn=95, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=95, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=14] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=95, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=95, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=16] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=95, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=16] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=95, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=95, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=18] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=95, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e63eef0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 53544223 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 17848076 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 2 Rx 19632892 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 2 Rx 16063279
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_traffic_distribution[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=95, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=19] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=95, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=95, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=20] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=95, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=95, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:10:53 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=95, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=95, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=24] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:10:53 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=95, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=95, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=26] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=95, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=95, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=95, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=95, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=95, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=30] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=95, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=30] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ecmp/test_ecmp.py::test_ecmp_traffic_distribution[nexthop_down] 153.29
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5643' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_traffic_distribution[nexthop_down]">Starting testcase:test_ecmp_traffic_distribution[nexthop_down] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=95, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=96] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=96] Local address: 172.17.0.3, port 36152 INFO asyncssh:logging.py:92 [conn=96] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=96] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=96] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=96, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:10:55 PM UTC INFO asyncssh:logging.py:92 [conn=96, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=96, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=96, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=96, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=96, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=96, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=96, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=96, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=6] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:10:55 PM UTC INFO asyncssh:logging.py:92 [conn=96, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=96, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=96, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev swp2 && ip address add 12.0.0.1/16 dev swp3 && ip address add 13.0.0.1/20 dev swp4 INFO asyncssh:logging.py:92 [conn=96, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev swp2 && ip address add 12.0.0.1/16 dev swp3 && ip address add 13.0.0.1/20 dev swp4 INFO asyncssh:logging.py:92 [conn=96, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=96, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp2 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp3 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp4 INFO asyncssh:logging.py:92 [conn=96, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=12] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp2 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp3 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp4 INFO asyncssh:logging.py:92 [conn=96, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=96, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=14] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=96, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=96, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=16] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=96, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=16] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=96, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=96, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=18] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=96, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=96, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 down INFO asyncssh:logging.py:92 [conn=96, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=20] Command: ip link set dev swp2 down INFO asyncssh:logging.py:92 [conn=96, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e350eb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 54942926 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 2 Rx 27471474 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 2 Rx 27471475 INFO asyncssh:logging.py:92 [conn=96, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=96, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=22] Command: ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=96, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=22] Channel closed DEBUG agg1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_traffic_distribution[nexthop_down] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=96, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=23] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=96, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=96, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=24] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=96, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=96, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=26] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:13:26 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=96, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=96, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=28] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:13:27 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=96, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=96, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=30] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=96, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=96, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=96, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=96, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 down && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=96, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=34] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 down && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=96, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=34] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ecmp/test_ecmp.py::test_ecmp_traffic_distribution[dynamic] 157.61
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5689' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_traffic_distribution[dynamic]">Starting testcase:test_ecmp_traffic_distribution[dynamic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=96, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=97] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=97] Local address: 172.17.0.3, port 35196 INFO asyncssh:logging.py:92 [conn=97] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=97] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=97] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=97, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:13:28 PM UTC INFO asyncssh:logging.py:92 [conn=97, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=97, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=97, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=97, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=97, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=97, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=97, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=97, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=6] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:13:28 PM UTC INFO asyncssh:logging.py:92 [conn=97, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=97, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=97, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=97, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev swp2 && ip address add 12.0.0.1/16 dev swp3 && ip address add 13.0.0.1/20 dev swp4 INFO asyncssh:logging.py:92 [conn=97, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev swp2 && ip address add 12.0.0.1/16 dev swp3 && ip address add 13.0.0.1/20 dev swp4 INFO asyncssh:logging.py:92 [conn=97, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=97, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=97, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=12] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=97, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=97, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=97, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=14] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=97, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=14] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=97, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=97, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=16] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=97, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e5aefb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 53571150 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 17857051 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 3 Rx 19642775 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 3 Rx 16071366
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_traffic_distribution[dynamic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=97, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=17] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=97, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=18] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=97, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=18] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=97, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=97, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=20] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:16:04 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=97, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=97, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:16:04 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=97, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=97, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=24] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=97, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=97, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=97, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=26] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=97, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=97, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=97, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=28] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=97, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=28] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ecmp/test_ecmp.py::test_ecmp_distribution_lags 159.93
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5730' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_distribution_lags">Starting testcase:test_ecmp_distribution_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=97, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=98] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=98] Local address: 172.17.0.3, port 45382 INFO asyncssh:logging.py:92 [conn=98] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=98] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=98] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:16:06 PM UTC INFO asyncssh:logging.py:92 [conn=98, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=98, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=98, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=98, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=98, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=98, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=6] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:16:06 PM UTC INFO asyncssh:logging.py:92 [conn=98, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add name bond1 type bond mode 802.3ad && ip link add name bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=98, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=8] Command: ip link add name bond1 type bond mode 802.3ad && ip link add name bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=98, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=98, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=10] Command: ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=98, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 master bond1 && ip link set dev swp3 master bond2 && ip link set dev swp4 master bond2 INFO asyncssh:logging.py:92 [conn=98, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=12] Command: ip link set dev swp2 master bond1 && ip link set dev swp3 master bond2 && ip link set dev swp4 master bond2 INFO asyncssh:logging.py:92 [conn=98, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev bond1 up && ip link set dev bond2 up INFO asyncssh:logging.py:92 [conn=98, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=14] Command: ip link set dev swp1 up && ip link set dev bond1 up && ip link set dev bond2 up INFO asyncssh:logging.py:92 [conn=98, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev bond1 && ip address add 12.0.0.1/16 dev bond2 INFO asyncssh:logging.py:92 [conn=98, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=16] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev bond1 && ip address add 12.0.0.1/16 dev bond2 INFO asyncssh:logging.py:92 [conn=98, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag bond1 with ports ['/api/v1/sessions/8/ixnetwork/vport/2'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'bond1_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:6']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag bond2 with ports ['/api/v1/sessions/8/ixnetwork/vport/3', '/api/v1/sessions/8/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'bond2_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:7', '10.36.118.199:1:8']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=98, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev bond1 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev bond2 INFO asyncssh:logging.py:92 [conn=98, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=18] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev bond1 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev bond2 INFO asyncssh:logging.py:92 [conn=98, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=98, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=20] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=98, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=21] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=98, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=22] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=98, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=22] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=98, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=98, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=24] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=98, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on bond1_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on bond2_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e63de70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 53556176 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 26778090 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 6 Rx 14281670 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 4 Rx 12496457
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_distribution_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=98, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=25] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=98, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=26] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=98, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=26] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=28] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:18:43 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=30] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:18:43 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=98, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=98, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=32] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=98, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=98, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=34] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=98, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0a"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":100,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":101,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=98, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=98, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=36] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=98, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=37] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=38] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:18:44 PM UTC INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=98, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=98, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=40] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=98, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":4,"perm_hwaddr":"34:ef:b6:ec:38:08","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":4,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":4,"perm_hwaddr":"34:ef:b6:ec:38:0a","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":100,"ifname":"bond1","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":101,"ifname":"bond2","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=98, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=98, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=42] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=98, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=98, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=44] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=98, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=44] Channel closed DEBUG agg1:Logger.py:156
Passed functional/hard_drop_counters/test_hard_drop_counters.py::test_hw_drop_l3[1] 616.94
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5786' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_hw_drop_l3[1]">Starting testcase:test_hw_drop_l3[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=99] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=99] Local address: 172.17.0.3, port 52976 INFO asyncssh:logging.py:92 [conn=99] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=99] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=99] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=99, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:18:46 PM UTC INFO asyncssh:logging.py:92 [conn=99, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=99, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=99, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=99, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=99, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=99, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=99, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=99, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=99, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=99, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=99, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:18:46 PM UTC INFO asyncssh:logging.py:92 [conn=99, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=99, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=99, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address add 2.2.2.1/24 broadcast 2.2.2.255 dev swp1 && ip address add 0.0.0.1/24 broadcast 0.0.0.255 dev swp2 INFO asyncssh:logging.py:92 [conn=99, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=12] Command: ip address add 2.2.2.1/24 broadcast 2.2.2.255 dev swp1 && ip address add 0.0.0.1/24 broadcast 0.0.0.255 dev swp2 INFO asyncssh:logging.py:92 [conn=99, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_0.0.0.0/24', 'count': 1, 'ip': '0.0.0.0', 'gw': '0.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=99, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 2.2.2.2 lladdr 02:11:c6:1a:c6:36 dev swp1 INFO asyncssh:logging.py:92 [conn=99, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=14] Command: ip neigh add 2.2.2.2 lladdr 02:11:c6:1a:c6:36 dev swp1 INFO asyncssh:logging.py:92 [conn=99, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=99, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=16] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=99, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=16] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=99, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=99, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=18] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=99, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"broadcast":"2.2.2.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"broadcast":"2.2.2.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=99, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=99, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=20] Command: bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=99, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=20] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp2 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=99, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=99, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=22] Command: ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=99, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"0.0.0.1","prefixlen":24,"broadcast":"0.0.0.255","scope":"global","label":"swp2","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp2 ', 'rc': 0, 'result': '[{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"0.0.0.1","prefixlen":24,"broadcast":"0.0.0.255","scope":"global","label":"swp2","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e8430d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 18593245 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 9 INFO asyncssh:logging.py:92 [conn=99, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=23] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 138 INFO asyncssh:logging.py:92 [conn=99, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=24] Command: get_drops_rate_code_avg 138 INFO asyncssh:logging.py:92 [conn=99, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=24] Channel closed DEBUG agg1:Logger.py:156 3656659 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_uc_dip_da_mismatch_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6c97e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 16647611 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 11 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 13 INFO asyncssh:logging.py:92 [conn=99, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=25] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=99, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=26] Command: get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=99, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=26] Channel closed DEBUG agg1:Logger.py:156 3658233 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_checksum_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e5af790>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 16748303 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 15 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 15 INFO asyncssh:logging.py:92 [conn=99, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=27] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=99, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=28] Command: get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=99, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=28] Channel closed DEBUG agg1:Logger.py:156 3657646 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_length_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6c8460>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 14938607 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 17 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 19 INFO asyncssh:logging.py:92 [conn=99, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=29] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=30] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=30] Channel closed DEBUG agg1:Logger.py:156 3657925 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_dip_zero_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e5ad690>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 18557477 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 21 INFO asyncssh:logging.py:92 [conn=99, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=31] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=32] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=32] Channel closed DEBUG agg1:Logger.py:156 3657400 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_sip_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e5ad360>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 18604699 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 23 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 24 INFO asyncssh:logging.py:92 [conn=99, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=33] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=34] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=34] Channel closed DEBUG agg1:Logger.py:156 3657118 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_dip_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e5aeec0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 24265666 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 26 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 27 INFO asyncssh:logging.py:92 [conn=99, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=35] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 145 INFO asyncssh:logging.py:92 [conn=99, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=36] Command: get_drops_rate_code_avg 145 INFO asyncssh:logging.py:92 [conn=99, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=36] Channel closed DEBUG agg1:Logger.py:156 3658939 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_sip_is_zero_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_hw_drop_l3[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=99, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=37] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=99, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=38] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:29:01 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=99, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=99, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=40] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=99, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=99, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=42] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=99, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=42] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=99, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=99, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=44] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=99, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=44] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=45] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=99, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=46] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=99, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=46] Channel closed DEBUG agg1:Logger.py:156
Passed functional/hard_drop_counters/test_hard_drop_counters.py::test_hw_drop_l3_exp_counters 157.21
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5902' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_hw_drop_l3_exp_counters">Starting testcase:test_hw_drop_l3_exp_counters from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=100, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=101] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=101] Local address: 172.17.0.3, port 34374 INFO asyncssh:logging.py:92 [conn=101] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=101] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=101] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=101, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:40:41 PM UTC INFO asyncssh:logging.py:92 [conn=101, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=101, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=101, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=101, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=101, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=101, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=101, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=101, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=101, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=101, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=101, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=8] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:40:42 PM UTC INFO asyncssh:logging.py:92 [conn=101, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=9] Channel closed DEBUG agg1:Logger.py:156 cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_stats INFO asyncssh:logging.py:92 [conn=101, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=10] Command: cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_stats INFO asyncssh:logging.py:92 [conn=101, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=10] Channel closed DEBUG agg1:Logger.py:156 62:90431795 136:1045955114 137:630137166 138:315089076 145:215919615 INFO asyncssh:logging.py:92 [conn=101, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=101, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=12] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=101, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip address add 3.3.3.3/24 broadcast 3.3.3.255 dev swp1 && ip address add 0.0.0.0/24 broadcast 0.0.0.255 dev swp2 INFO asyncssh:logging.py:92 [conn=101, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=14] Command: ip address add 3.3.3.3/24 broadcast 3.3.3.255 dev swp1 && ip address add 0.0.0.0/24 broadcast 0.0.0.255 dev swp2 INFO asyncssh:logging.py:92 [conn=101, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_3.3.3.1/24', 'count': 1, 'ip': '3.3.3.1', 'gw': '3.3.3.3', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_0.0.0.1/24', 'count': 1, 'ip': '0.0.0.1', 'gw': '0.0.0.0', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=101, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 3.3.3.1 lladdr 02:46:20:c7:af:e5 dev swp1 && ip neigh add 0.0.0.1 lladdr 02:9d:d5:46:2f:8e dev swp2 INFO asyncssh:logging.py:92 [conn=101, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=16] Command: ip neigh add 3.3.3.1 lladdr 02:46:20:c7:af:e5 dev swp1 && ip neigh add 0.0.0.1 lladdr 02:9d:d5:46:2f:8e dev swp2 INFO asyncssh:logging.py:92 [conn=101, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=17] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=101, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=18] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=101, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=18] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=101, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=101, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=20] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=101, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"3.3.3.3","prefixlen":24,"broadcast":"3.3.3.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"3.3.3.3","prefixlen":24,"broadcast":"3.3.3.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=101, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=21] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=101, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=22] Command: bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=101, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=22] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp2 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=101, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=101, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=24] Command: ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=101, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp2 ', 'rc': 0, 'result': '[{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Cannot find the Vlan GW IP address INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_3.3.3.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_0.0.0.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=101, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=25] Channel closed DEBUG agg1:Logger.py:156 cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_stats INFO asyncssh:logging.py:92 [conn=101, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=26] Command: cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_stats INFO asyncssh:logging.py:92 [conn=101, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=26] Channel closed DEBUG agg1:Logger.py:156 62:90431795 136:1048417588 137:631020696 138:315531298 145:216363438 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_hw_drop_l3_exp_counters from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=101, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=101, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=28] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:43:17 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=101, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=101, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=30] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=101, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=101, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=101, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=101, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=101, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=34] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=101, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=35] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=101, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=36] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=101, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=36] Channel closed DEBUG agg1:Logger.py:156
Passed functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[2-2] 449.88
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[2-2]">Starting testcase:test_igmp_snooping_mixed_ver[2-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-5949' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=101, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=102] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=102] Local address: 172.17.0.3, port 38658 INFO asyncssh:logging.py:92 [conn=102] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=102] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=102] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=102, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:43:19 PM UTC INFO asyncssh:logging.py:92 [conn=102, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=102, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=102, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=102, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=102, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=102, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=102, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=102, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=102, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp2 fastleave on INFO asyncssh:logging.py:92 [conn=102, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=10] Command: bridge link set dev swp2 fastleave on INFO asyncssh:logging.py:92 [conn=102, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=102, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=102, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=102, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":102,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.82"},{"index":102,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.82"},{"index":102,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 119.80"},{"index":102,"dev":"br0","port":"br0","grp":"ff02::1:ff80:e19b","state":"temp","flags":[],"vid":1,"timer":" 119.80"}],"router":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e615f30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 15477380 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 15472880 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 15472880 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 15472881 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_query INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=102, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=102, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=14] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=102, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":102,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.82"},{"index":102,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.82"},{"index":102,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 6.57"},{"index":102,"dev":"br0","port":"br0","grp":"ff02::1:ff80:e19b","state":"temp","flags":[],"vid":1,"timer":" 6.57"}],"router":{"br0":[{"port":"swp1","timer":" 252.82","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e786410>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 27960100 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 13983228 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 13969793 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 4383 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_leave INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=102, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=102, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=16] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=102, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":102,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.75"}],"router":{"br0":[{"port":"swp1","timer":" 252.75","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e616860>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 28204556 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 1433 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 14102278 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[2-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=102, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=102, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=18] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:50:48 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=102, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=102, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=102, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":102,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=102, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=102, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=102, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[3-3] 456.74
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[3-3]">Starting testcase:test_igmp_snooping_mixed_ver[3-3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-5979' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=102, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=103] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=103] Local address: 172.17.0.3, port 46524 INFO asyncssh:logging.py:92 [conn=103] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=103] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=103] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=103, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:50:48 PM UTC INFO asyncssh:logging.py:92 [conn=103, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=103, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=103, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=103, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=103, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=103, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=103, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=103, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=103, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=103, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=103, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=103, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=103, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp2 fastleave on INFO asyncssh:logging.py:92 [conn=103, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=10] Command: bridge link set dev swp2 fastleave on INFO asyncssh:logging.py:92 [conn=103, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=103, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=103, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=103, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":103,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","filter_mode":"include","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"},{"index":103,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","filter_mode":"include","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"},{"index":103,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 117.74"},{"index":103,"dev":"br0","port":"br0","grp":"ff02::1:ff28:745e","state":"temp","flags":[],"vid":1,"timer":" 117.74"}],"router":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e616290>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 15901496 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 15897429 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 15897429 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 15897430 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_query INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=103, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=103, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=14] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=103, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":103,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","filter_mode":"include","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"},{"index":103,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","filter_mode":"include","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"},{"index":103,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 3.92"},{"index":103,"dev":"br0","port":"br0","grp":"ff02::1:ff28:745e","state":"temp","flags":[],"vid":1,"timer":" 3.92"}],"router":{"br0":[{"port":"swp1","timer":" 252.80","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e616500>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 28113536 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 14060937 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 14047856 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 5927 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_leave INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=103, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=103, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=16] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=103, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":103,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","filter_mode":"include","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"}],"router":{"br0":[{"port":"swp1","timer":" 253.31","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e614820>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 27696940 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 1560 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 13848469 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[3-3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=103, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=103, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=18] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:58:25 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=103, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=103, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=103, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":103,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=103, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=103, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=103, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[2-1] 455.42
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[2-1]">Starting testcase:test_igmp_snooping_mixed_ver[2-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-6009' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=103, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=104] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=104] Local address: 172.17.0.3, port 34054 INFO asyncssh:logging.py:92 [conn=104] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=104] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=104] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=104, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 10:58:25 PM UTC INFO asyncssh:logging.py:92 [conn=104, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=104, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=104, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=104, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=104, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=104, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=104, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=104, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=104, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp2 fastleave on INFO asyncssh:logging.py:92 [conn=104, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=10] Command: bridge link set dev swp2 fastleave on INFO asyncssh:logging.py:92 [conn=104, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=104, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=104, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=104, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":104,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.84"},{"index":104,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.84"},{"index":104,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 116.76"},{"index":104,"dev":"br0","port":"br0","grp":"ff02::1:ffab:71bc","state":"temp","flags":[],"vid":1,"timer":" 116.76"}],"router":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e786b30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 10453164 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 10448670 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 10448670 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 10448671 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_query INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=104, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=104, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=14] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=104, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":104,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.79"},{"index":104,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.79"},{"index":104,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 2.46"},{"index":104,"dev":"br0","port":"br0","grp":"ff02::1:ffab:71bc","state":"temp","flags":[],"vid":1,"timer":" 2.46"}],"router":{"br0":[{"port":"swp1","timer":" 252.79","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e787610>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 25061368 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 12535399 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 12522310 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 7019 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_leave INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=104, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=104, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=16] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=104, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":104,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.81"}],"router":{"br0":[{"port":"swp1","timer":" 252.81","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6ca8f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 24910295 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 296 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 12455147 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[2-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=104, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=104, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=18] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:06:00 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=104, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=104, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=104, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":104,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=104, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=104, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=104, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[3-1] 458.40
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[3-1]">Starting testcase:test_igmp_snooping_mixed_ver[3-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-6039' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=104, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=105] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=105] Local address: 172.17.0.3, port 47958 INFO asyncssh:logging.py:92 [conn=105] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=105] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=105] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=105, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:06:01 PM UTC INFO asyncssh:logging.py:92 [conn=105, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=105, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=105, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=105, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=105, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=105, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=105, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=105, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=105, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=105, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=105, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=105, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=105, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp2 fastleave on INFO asyncssh:logging.py:92 [conn=105, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=10] Command: bridge link set dev swp2 fastleave on INFO asyncssh:logging.py:92 [conn=105, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=105, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=105, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=105, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":105,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.83"},{"index":105,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.83"},{"index":105,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 112.68"},{"index":105,"dev":"br0","port":"br0","grp":"ff02::1:ff55:810e","state":"temp","flags":[],"vid":1,"timer":" 112.68"}],"router":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e785300>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 9520838 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 9516375 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 9516375 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 9516376 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_query INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=105, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=105, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=14] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=105, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":105,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.82"},{"index":105,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.82"},{"index":105,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 0.00"},{"index":105,"dev":"br0","port":"br0","grp":"ff02::1:ff55:810e","state":"temp","flags":[],"vid":1,"timer":" 0.00"}],"router":{"br0":[{"port":"swp1","timer":" 252.82","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6174f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 25437036 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 12721282 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 12707850 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 3560 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_leave INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=105, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=105, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=16] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=105, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":105,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.91"}],"router":{"br0":[{"port":"swp1","timer":" 252.91","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e352c20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 25150956 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 1930 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 12575477 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[3-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=105, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=105, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=18] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:13:39 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=105, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=105, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=105, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":105,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=105, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=105, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=105, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[3-2] 455.20
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[3-2]">Starting testcase:test_igmp_snooping_mixed_ver[3-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-6069' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=105, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=106] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=106] Local address: 172.17.0.3, port 48346 INFO asyncssh:logging.py:92 [conn=106] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=106] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=106] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=106, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:13:39 PM UTC INFO asyncssh:logging.py:92 [conn=106, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=106, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=106, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=106, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=106, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=106, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=106, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=106, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=106, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=106, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=106, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=106, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=106, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp2 fastleave on INFO asyncssh:logging.py:92 [conn=106, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=10] Command: bridge link set dev swp2 fastleave on INFO asyncssh:logging.py:92 [conn=106, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=106, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=106, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=106, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":106,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.85"},{"index":106,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.85"},{"index":106,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 118.49"},{"index":106,"dev":"br0","port":"br0","grp":"ff02::1:ffdc:dd42","state":"temp","flags":[],"vid":1,"timer":" 118.49"}],"router":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e353850>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 11519117 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 11515044 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 11515044 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 11515045 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_query INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=106, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=106, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=14] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=106, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":106,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.78"},{"index":106,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.78"},{"index":106,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 4.79"},{"index":106,"dev":"br0","port":"br0","grp":"ff02::1:ffdc:dd42","state":"temp","flags":[],"vid":1,"timer":" 4.79"}],"router":{"br0":[{"port":"swp1","timer":" 252.78","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e785870>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 23301073 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 11654801 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 11641723 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 6134 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_leave INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=106, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=106, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=16] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=106, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":106,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.76"}],"router":{"br0":[{"port":"swp1","timer":" 252.76","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6149a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 23229219 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 422 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 11614609 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[3-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=106, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=106, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=18] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:21:14 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=106, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=106, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=106, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":106,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=106, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=106, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=106, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/igmp/test_igmp_snooping.py::test_igmp_snooping_diff_source_addrs 250.69
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_diff_source_addrs">Starting testcase:test_igmp_snooping_diff_source_addrs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-6099' coro=<test_igmp_snooping_diff_source_addrs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:363> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=106, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=107] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=107] Local address: 172.17.0.3, port 47752 INFO asyncssh:logging.py:92 [conn=107] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=107] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=107] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=107, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:21:14 PM UTC INFO asyncssh:logging.py:92 [conn=107, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=107, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=107, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=107, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=107, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=107, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=107, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=107, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=107, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=107, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=107, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=107, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_query INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=107, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=107, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=10] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=107, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":107,"dev":"br0","port":"swp2","grp":"226.1.1.1","src":"80.1.1.5","state":"temp","filter_mode":"include","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"},{"index":107,"dev":"br0","port":"swp2","grp":"226.1.1.1","state":"temp","filter_mode":"include","source_list":[{"address":"80.1.1.5","timer":"257.81"}],"protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"},{"index":107,"dev":"br0","port":"swp3","grp":"238.2.2.2","src":"70.1.1.5","state":"temp","filter_mode":"include","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"},{"index":107,"dev":"br0","port":"swp3","grp":"238.2.2.2","state":"temp","filter_mode":"include","source_list":[{"address":"70.1.1.5","timer":"257.81"}],"protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"},{"index":107,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 100.78"},{"index":107,"dev":"br0","port":"br0","grp":"ff02::1:ff12:bdbe","state":"temp","flags":[],"vid":1,"timer":" 100.78"}],"router":{"br0":[{"port":"swp1","timer":" 252.81","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e616fe0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 24316188 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 12170778 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 12157696 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 27073 INFO asyncssh:logging.py:92 [conn=107, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge mdb delete dev br0 port swp2 grp 226.1.1.1 temp vid 1 INFO asyncssh:logging.py:92 [conn=107, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=12] Command: bridge mdb delete dev br0 port swp2 grp 226.1.1.1 temp vid 1 INFO asyncssh:logging.py:92 [conn=107, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=107, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=107, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=14] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=107, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":107,"dev":"br0","port":"swp3","grp":"238.2.2.2","src":"70.1.1.5","state":"temp","filter_mode":"include","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"},{"index":107,"dev":"br0","port":"swp3","grp":"238.2.2.2","state":"temp","filter_mode":"include","source_list":[{"address":"70.1.1.5","timer":"234.56"}],"protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"},{"index":107,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 77.53"},{"index":107,"dev":"br0","port":"br0","grp":"ff02::1:ff12:bdbe","state":"temp","flags":[],"vid":1,"timer":" 77.53"}],"router":{"br0":[{"port":"swp1","timer":" 229.56","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e616380>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 39942560 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 19185690 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 19970882 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 27073 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_diff_source_addrs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=107, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=107, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=16] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:25:24 PM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=107, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=107, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=107, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":107,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=107, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=107, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=107, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=20] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_addr.py::test_ipv4_addr 153.19
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6156' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_addr">Starting testcase:test_ipv4_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_addr.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=108, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=109] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=109] Local address: 172.17.0.3, port 42076 INFO asyncssh:logging.py:92 [conn=109] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=109] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=109] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=109, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:28:50 PM UTC INFO asyncssh:logging.py:92 [conn=109, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=109, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=109, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=109, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=109, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=109, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=109, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=109, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=6] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:28:51 PM UTC INFO asyncssh:logging.py:92 [conn=109, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=109, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=8] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=109, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=109, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=109, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=109, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dummy INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=109, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=109, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=13] Received channel close DEBUG agg1:Logger.py:156 echo onl | sudo -S ping -c 10 1.1.1.2 INFO asyncssh:logging.py:92 [conn=109, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=109, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=109, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=14] Received channel close DEBUG agg1:Logger.py:156 echo onl | sudo -S ping -c 10 2.2.2.2 INFO asyncssh:logging.py:92 [conn=109, chan=16] Requesting new SSH session DEBUG agg1:Logger.py:156 echo onl | sudo -S ping -c 10 3.3.3.2 INFO asyncssh:logging.py:92 [conn=109, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=14] Channel closed INFO asyncssh:logging.py:92 [conn=109, chan=15] Command: echo onl | sudo -S ping -c 10 1.1.1.2 DEBUG agg1:Logger.py:156 echo onl | sudo -S ping -c 10 4.4.4.2 INFO asyncssh:logging.py:92 [conn=109, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=16] Command: echo onl | sudo -S ping -c 10 2.2.2.2 INFO asyncssh:logging.py:92 [conn=109, chan=17] Command: echo onl | sudo -S ping -c 10 3.3.3.2 INFO asyncssh:logging.py:92 [conn=109, chan=18] Command: echo onl | sudo -S ping -c 10 4.4.4.2 INFO asyncssh:logging.py:92 [conn=109, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=18] Channel closed INFO asyncssh:logging.py:92 [conn=109, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=16] Received channel close DEBUG agg1:Logger.py:156 PING 4.4.4.2 (4.4.4.2) 56(84) bytes of data. 64 bytes from 4.4.4.2: icmp_seq=1 ttl=64 time=0.458 ms 64 bytes from 4.4.4.2: icmp_seq=2 ttl=64 time=0.141 ms 64 bytes from 4.4.4.2: icmp_seq=3 ttl=64 time=0.163 ms 64 bytes from 4.4.4.2: icmp_seq=4 ttl=64 time=0.176 ms 64 bytes from 4.4.4.2: icmp_seq=5 ttl=64 time=0.187 ms 64 bytes from 4.4.4.2: icmp_seq=6 ttl=64 time=0.169 ms 64 bytes from 4.4.4.2: icmp_seq=7 ttl=64 time=0.182 ms 64 bytes from 4.4.4.2: icmp_seq=8 ttl=64 time=0.166 ms 64 bytes from 4.4.4.2: icmp_seq=9 ttl=64 time=0.191 ms 64 bytes from 4.4.4.2: icmp_seq=10 ttl=64 time=0.176 ms --- 4.4.4.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 208ms rtt min/avg/max/mdev = 0.141/0.200/0.458/0.088 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Ran ping -c 10 4.4.4.2 on agg1 with rc 0 and out PING 4.4.4.2 (4.4.4.2) 56(84) bytes of data. 64 bytes from 4.4.4.2: icmp_seq=1 ttl=64 time=0.458 ms 64 bytes from 4.4.4.2: icmp_seq=2 ttl=64 time=0.141 ms 64 bytes from 4.4.4.2: icmp_seq=3 ttl=64 time=0.163 ms 64 bytes from 4.4.4.2: icmp_seq=4 ttl=64 time=0.176 ms 64 bytes from 4.4.4.2: icmp_seq=5 ttl=64 time=0.187 ms 64 bytes from 4.4.4.2: icmp_seq=6 ttl=64 time=0.169 ms 64 bytes from 4.4.4.2: icmp_seq=7 ttl=64 time=0.182 ms 64 bytes from 4.4.4.2: icmp_seq=8 ttl=64 time=0.166 ms 64 bytes from 4.4.4.2: icmp_seq=9 ttl=64 time=0.191 ms 64 bytes from 4.4.4.2: icmp_seq=10 ttl=64 time=0.176 ms --- 4.4.4.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 208ms rtt min/avg/max/mdev = 0.141/0.200/0.458/0.088 ms INFO asyncssh:logging.py:92 [conn=109, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=109, chan=15] Channel closed INFO asyncssh:logging.py:92 [conn=109, chan=16] Channel closed DEBUG agg1:Logger.py:156 PING 3.3.3.2 (3.3.3.2) 56(84) bytes of data. 64 bytes from 3.3.3.2: icmp_seq=1 ttl=64 time=0.148 ms 64 bytes from 3.3.3.2: icmp_seq=2 ttl=64 time=0.130 ms 64 bytes from 3.3.3.2: icmp_seq=3 ttl=64 time=0.162 ms 64 bytes from 3.3.3.2: icmp_seq=4 ttl=64 time=0.177 ms 64 bytes from 3.3.3.2: icmp_seq=5 ttl=64 time=0.187 ms 64 bytes from 3.3.3.2: icmp_seq=6 ttl=64 time=0.161 ms 64 bytes from 3.3.3.2: icmp_seq=7 ttl=64 time=0.179 ms 64 bytes from 3.3.3.2: icmp_seq=8 ttl=64 time=0.162 ms 64 bytes from 3.3.3.2: icmp_seq=9 ttl=64 time=0.191 ms 64 bytes from 3.3.3.2: icmp_seq=10 ttl=64 time=0.139 ms --- 3.3.3.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 207ms rtt min/avg/max/mdev = 0.130/0.163/0.191/0.023 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Ran ping -c 10 3.3.3.2 on agg1 with rc 0 and out PING 3.3.3.2 (3.3.3.2) 56(84) bytes of data. 64 bytes from 3.3.3.2: icmp_seq=1 ttl=64 time=0.148 ms 64 bytes from 3.3.3.2: icmp_seq=2 ttl=64 time=0.130 ms 64 bytes from 3.3.3.2: icmp_seq=3 ttl=64 time=0.162 ms 64 bytes from 3.3.3.2: icmp_seq=4 ttl=64 time=0.177 ms 64 bytes from 3.3.3.2: icmp_seq=5 ttl=64 time=0.187 ms 64 bytes from 3.3.3.2: icmp_seq=6 ttl=64 time=0.161 ms 64 bytes from 3.3.3.2: icmp_seq=7 ttl=64 time=0.179 ms 64 bytes from 3.3.3.2: icmp_seq=8 ttl=64 time=0.162 ms 64 bytes from 3.3.3.2: icmp_seq=9 ttl=64 time=0.191 ms 64 bytes from 3.3.3.2: icmp_seq=10 ttl=64 time=0.139 ms --- 3.3.3.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 207ms rtt min/avg/max/mdev = 0.130/0.163/0.191/0.023 ms DEBUG agg1:Logger.py:156 PING 1.1.1.2 (1.1.1.2) 56(84) bytes of data. 64 bytes from 1.1.1.2: icmp_seq=1 ttl=64 time=0.189 ms 64 bytes from 1.1.1.2: icmp_seq=2 ttl=64 time=0.160 ms 64 bytes from 1.1.1.2: icmp_seq=3 ttl=64 time=0.161 ms 64 bytes from 1.1.1.2: icmp_seq=4 ttl=64 time=0.177 ms 64 bytes from 1.1.1.2: icmp_seq=5 ttl=64 time=0.187 ms 64 bytes from 1.1.1.2: icmp_seq=6 ttl=64 time=0.164 ms 64 bytes from 1.1.1.2: icmp_seq=7 ttl=64 time=0.180 ms 64 bytes from 1.1.1.2: icmp_seq=8 ttl=64 time=0.163 ms 64 bytes from 1.1.1.2: icmp_seq=9 ttl=64 time=0.188 ms 64 bytes from 1.1.1.2: icmp_seq=10 ttl=64 time=0.167 ms --- 1.1.1.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 210ms rtt min/avg/max/mdev = 0.160/0.173/0.189/0.018 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Ran ping -c 10 1.1.1.2 on agg1 with rc 0 and out PING 1.1.1.2 (1.1.1.2) 56(84) bytes of data. 64 bytes from 1.1.1.2: icmp_seq=1 ttl=64 time=0.189 ms 64 bytes from 1.1.1.2: icmp_seq=2 ttl=64 time=0.160 ms 64 bytes from 1.1.1.2: icmp_seq=3 ttl=64 time=0.161 ms 64 bytes from 1.1.1.2: icmp_seq=4 ttl=64 time=0.177 ms 64 bytes from 1.1.1.2: icmp_seq=5 ttl=64 time=0.187 ms 64 bytes from 1.1.1.2: icmp_seq=6 ttl=64 time=0.164 ms 64 bytes from 1.1.1.2: icmp_seq=7 ttl=64 time=0.180 ms 64 bytes from 1.1.1.2: icmp_seq=8 ttl=64 time=0.163 ms 64 bytes from 1.1.1.2: icmp_seq=9 ttl=64 time=0.188 ms 64 bytes from 1.1.1.2: icmp_seq=10 ttl=64 time=0.167 ms --- 1.1.1.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 210ms rtt min/avg/max/mdev = 0.160/0.173/0.189/0.018 ms DEBUG agg1:Logger.py:156 PING 2.2.2.2 (2.2.2.2) 56(84) bytes of data. 64 bytes from 2.2.2.2: icmp_seq=1 ttl=64 time=0.150 ms 64 bytes from 2.2.2.2: icmp_seq=2 ttl=64 time=0.141 ms 64 bytes from 2.2.2.2: icmp_seq=3 ttl=64 time=0.138 ms 64 bytes from 2.2.2.2: icmp_seq=4 ttl=64 time=0.177 ms 64 bytes from 2.2.2.2: icmp_seq=5 ttl=64 time=0.187 ms 64 bytes from 2.2.2.2: icmp_seq=6 ttl=64 time=0.166 ms 64 bytes from 2.2.2.2: icmp_seq=7 ttl=64 time=0.182 ms 64 bytes from 2.2.2.2: icmp_seq=8 ttl=64 time=0.166 ms 64 bytes from 2.2.2.2: icmp_seq=9 ttl=64 time=0.191 ms 64 bytes from 2.2.2.2: icmp_seq=10 ttl=64 time=0.175 ms --- 2.2.2.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 208ms rtt min/avg/max/mdev = 0.138/0.167/0.191/0.020 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Ran ping -c 10 2.2.2.2 on agg1 with rc 0 and out PING 2.2.2.2 (2.2.2.2) 56(84) bytes of data. 64 bytes from 2.2.2.2: icmp_seq=1 ttl=64 time=0.150 ms 64 bytes from 2.2.2.2: icmp_seq=2 ttl=64 time=0.141 ms 64 bytes from 2.2.2.2: icmp_seq=3 ttl=64 time=0.138 ms 64 bytes from 2.2.2.2: icmp_seq=4 ttl=64 time=0.177 ms 64 bytes from 2.2.2.2: icmp_seq=5 ttl=64 time=0.187 ms 64 bytes from 2.2.2.2: icmp_seq=6 ttl=64 time=0.166 ms 64 bytes from 2.2.2.2: icmp_seq=7 ttl=64 time=0.182 ms 64 bytes from 2.2.2.2: icmp_seq=8 ttl=64 time=0.166 ms 64 bytes from 2.2.2.2: icmp_seq=9 ttl=64 time=0.191 ms 64 bytes from 2.2.2.2: icmp_seq=10 ttl=64 time=0.175 ms --- 2.2.2.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 208ms rtt min/avg/max/mdev = 0.138/0.167/0.191/0.020 ms
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_addr.py INFO asyncssh:logging.py:92 [conn=109, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=19] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=109, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=109, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=20] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=109, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=109, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:31:22 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=109, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=109, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=24] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:31:22 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=109, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=109, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=26] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=109, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=109, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=109, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=109, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=109, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=109, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=30] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=109, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=30] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_arp.py::test_ipv4_dynamic_arp 136.74
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6202' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_dynamic_arp">Starting testcase:test_ipv4_dynamic_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=109, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=110] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=110] Local address: 172.17.0.3, port 38080 INFO asyncssh:logging.py:92 [conn=110] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=110] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=110] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=110, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:31:24 PM UTC INFO asyncssh:logging.py:92 [conn=110, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=110, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=110, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=110, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=110, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=110, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=110, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=110, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=6] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:31:24 PM UTC INFO asyncssh:logging.py:92 [conn=110, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=110, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=110, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=110, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=110, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=110, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 <-> 10.36.118.199:1:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_3.3.3.2/24 to 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e3cf2e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 <-> 10.36.118.199:1:6 Tx 8706 Rx 8706 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:7 <-> 10.36.118.199:1:8 Tx 8706 Rx 8706 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=110, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=110, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=12] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=110, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=110, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=110, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=110, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=110, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=110, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=16] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=110, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=110, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=110, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=18] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=110, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=110, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=110, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=20] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=110, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_dynamic_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=110, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=21] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=110, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=22] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=110, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=22] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=110, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=110, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=24] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:33:38 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=110, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=110, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=26] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:33:39 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=110, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=110, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=28] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=110, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=110, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=110, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=110, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=110, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=110, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=32] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=110, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=32] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_arp.py::test_ipv4_static_arp 2.72
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6246' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_static_arp">Starting testcase:test_ipv4_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=110, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=111] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=111] Local address: 172.17.0.3, port 34038 INFO asyncssh:logging.py:92 [conn=111] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=111] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=111] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=111, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:33:40 PM UTC INFO asyncssh:logging.py:92 [conn=111, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=111, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=111, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=111, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=111, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=111, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=111, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=111, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=6] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:33:41 PM UTC INFO asyncssh:logging.py:92 [conn=111, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=111, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=111, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=111, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=111, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp1 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp2 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp3 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp4 INFO asyncssh:logging.py:92 [conn=111, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=12] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp1 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp2 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp3 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp4 INFO asyncssh:logging.py:92 [conn=111, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=111, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=111, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=111, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=111, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=111, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=111, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=111, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=18] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=111, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=111, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=20] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=111, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=111, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=111, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=111, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=23] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=111, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=111, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=24] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=111, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=111, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=26] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:33:41 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=111, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=111, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=28] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:33:41 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=111, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=111, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=30] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=111, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=111, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=111, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=111, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=111, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=34] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=111, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=34] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_arp.py::test_ipv4_replace_dyn_stat_arp 143.43
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6292' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_replace_dyn_stat_arp">Starting testcase:test_ipv4_replace_dyn_stat_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=111, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=112] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=112] Local address: 172.17.0.3, port 49834 INFO asyncssh:logging.py:92 [conn=112] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=112] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=112] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=112, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:33:43 PM UTC INFO asyncssh:logging.py:92 [conn=112, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=112, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=112, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=112, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=112, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=112, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=112, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=112, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=6] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:33:43 PM UTC INFO asyncssh:logging.py:92 [conn=112, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=112, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=112, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=112, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=112, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=112, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp1 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp2 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp3 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp4 INFO asyncssh:logging.py:92 [conn=112, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=12] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp1 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp2 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp3 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp4 INFO asyncssh:logging.py:92 [conn=112, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=112, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=112, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=112, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=18] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=112, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=112, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=20] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=112, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 <-> 10.36.118.199:1:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_3.3.3.2/24 to 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e5ac040>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 <-> 10.36.118.199:1:6 Tx 8862 Rx 8862 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:7 <-> 10.36.118.199:1:8 Tx 8862 Rx 8862 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=112, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=24] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=112, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=26] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=112, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=112, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=28] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=112, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=112, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=30] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=112, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=32] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=112, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp1 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp2 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp3 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp4 INFO asyncssh:logging.py:92 [conn=112, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=34] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp1 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp2 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp3 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp4 INFO asyncssh:logging.py:92 [conn=112, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=36] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=112, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=38] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=112, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=112, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=40] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=112, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=112, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=42] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=112, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=44] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=44] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_replace_dyn_stat_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=112, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=45] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=112, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=46] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=112, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=46] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=112, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=47] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=112, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=48] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:36:05 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=112, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=49] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=112, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=50] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:36:05 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=112, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=112, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=52] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=112, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=52] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=53] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=112, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=54] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=112, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=54] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=112, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=55] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=112, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=56] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=112, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=56] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_arp.py::test_ipv4_static_arp_with_traffic 138.44
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6360' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_static_arp_with_traffic">Starting testcase:test_ipv4_static_arp_with_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=112, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=113] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=113] Local address: 172.17.0.3, port 35686 INFO asyncssh:logging.py:92 [conn=113] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=113] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=113] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=113, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:36:07 PM UTC INFO asyncssh:logging.py:92 [conn=113, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=113, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=113, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=113, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=113, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=113, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=113, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=113, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=6] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:36:07 PM UTC INFO asyncssh:logging.py:92 [conn=113, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=113, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=113, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=113, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=113, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=113, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=113, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp1 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp2 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp3 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp4 INFO asyncssh:logging.py:92 [conn=113, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=12] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp1 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp2 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp3 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp4 INFO asyncssh:logging.py:92 [conn=113, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=113, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=113, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=113, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 <-> 10.36.118.199:1:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_3.3.3.2/24 to 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e39b0d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 <-> 10.36.118.199:1:6 Tx 8878 Rx 8878 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:7 <-> 10.36.118.199:1:8 Tx 8878 Rx 8878 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=113, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=113, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=113, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=113, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=113, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=18] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=113, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=113, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=113, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=20] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=113, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=113, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=113, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=113, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_static_arp_with_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=113, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=23] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=113, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=113, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=24] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=113, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=113, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=26] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:38:23 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=113, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=113, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=28] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:38:23 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=113, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=113, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=30] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=113, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=113, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=113, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=113, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=113, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=113, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=34] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=113, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=34] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_arp.py::test_ipv4_static_route_over_static_arp 150.82
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6406' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_static_route_over_static_arp">Starting testcase:test_ipv4_static_route_over_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=113, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=114] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=114] Local address: 172.17.0.3, port 46182 INFO asyncssh:logging.py:92 [conn=114] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=114] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=114] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=114, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:38:25 PM UTC INFO asyncssh:logging.py:92 [conn=114, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=114, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=114, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=114, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=114, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=114, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=114, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=114, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=6] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:38:25 PM UTC INFO asyncssh:logging.py:92 [conn=114, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=114, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=114, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=114, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=114, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=114, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=114, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=12] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=114, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=12] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=114, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=114, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=14] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=114, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=114, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=114, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=16] Command: bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=114, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=16] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp2 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=114, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=114, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=18] Command: ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=114, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp2","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp2 ', 'rc': 0, 'result': '[{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp2","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=114, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp1 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp2 INFO asyncssh:logging.py:92 [conn=114, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=20] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp1 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp2 INFO asyncssh:logging.py:92 [conn=114, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=114, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip route add 20.0.0.1 nexthop via 1.1.1.2 dev swp1 && ip route add 21.0.0.1 nexthop via 2.2.2.2 dev swp2 INFO asyncssh:logging.py:92 [conn=114, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=24] Command: ip route add 20.0.0.1 nexthop via 1.1.1.2 dev swp1 && ip route add 21.0.0.1 nexthop via 2.2.2.2 dev swp2 INFO asyncssh:logging.py:92 [conn=114, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=114, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=26] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=114, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp2","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp3","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp4","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"dst":"20.0.0.1","gateway":"1.1.1.2","dev":"swp1","flags":["offload","rt_offload"]},{"dst":"21.0.0.1","gateway":"2.2.2.2","dev":"swp2","flags":["offload","rt_offload"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 21.0.0.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:6 -> 20.0.0.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 <-> 10.36.118.199:1:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_3.3.3.2/24 to 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e399120>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 -> 21.0.0.1 Tx 4362 Rx 4362 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:6 -> 20.0.0.1 Tx 4362 Rx 4362 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:7 <-> 10.36.118.199:1:8 Tx 8724 Rx 8724 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=114, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=28] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=114, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip route delete 20.0.0.1 nexthop via 1.1.1.2 dev swp1 && ip route delete 21.0.0.1 nexthop via 2.2.2.2 dev swp2 INFO asyncssh:logging.py:92 [conn=114, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=30] Command: ip route delete 20.0.0.1 nexthop via 1.1.1.2 dev swp1 && ip route delete 21.0.0.1 nexthop via 2.2.2.2 dev swp2 INFO asyncssh:logging.py:92 [conn=114, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=114, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=32] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=114, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp2","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp3","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp4","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=114, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=34] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=114, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=114, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=36] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=114, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=114, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=38] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=114, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=40] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_static_route_over_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=114, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=41] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=114, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=42] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=114, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=42] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=114, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=43] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=114, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=44] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:40:54 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=114, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=45] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=114, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=46] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:40:54 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=114, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=114, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=48] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=114, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=49] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=114, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=50] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=114, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=50] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=114, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=114, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=52] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=114, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=52] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_arp.py::test_ipv4_arp_reachable_timeout 156.87
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6470' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_arp_reachable_timeout">Starting testcase:test_ipv4_arp_reachable_timeout from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=114, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=115] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=115] Local address: 172.17.0.3, port 45782 INFO asyncssh:logging.py:92 [conn=115] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=115] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=115] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=115, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:40:56 PM UTC INFO asyncssh:logging.py:92 [conn=115, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=115, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=115, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=115, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=115, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=115, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=115, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=115, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=6] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:40:56 PM UTC INFO asyncssh:logging.py:92 [conn=115, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=115, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=115, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=115, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=115, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=115, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=115, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.neigh.swp1.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp2.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp3.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp4.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=115, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=12] Command: sysctl net.ipv4.neigh.swp1.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp2.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp3.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp4.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=115, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.neigh.swp1.base_reachable_time_ms = 30000 net.ipv4.neigh.swp2.base_reachable_time_ms = 30000 net.ipv4.neigh.swp3.base_reachable_time_ms = 30000 net.ipv4.neigh.swp4.base_reachable_time_ms = 30000 INFO asyncssh:logging.py:92 [conn=115, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=13] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.neigh.swp1.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp2.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp3.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp4.base_reachable_time_ms=1000 INFO asyncssh:logging.py:92 [conn=115, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=14] Command: sysctl net.ipv4.neigh.swp1.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp2.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp3.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp4.base_reachable_time_ms=1000 INFO asyncssh:logging.py:92 [conn=115, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=14] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.neigh.swp1.base_reachable_time_ms = 1000 net.ipv4.neigh.swp2.base_reachable_time_ms = 1000 net.ipv4.neigh.swp3.base_reachable_time_ms = 1000 net.ipv4.neigh.swp4.base_reachable_time_ms = 1000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 <-> 10.36.118.199:1:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_3.3.3.2/24 to 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e3986a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 <-> 10.36.118.199:1:6 Tx 8920 Rx 8920 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:7 <-> 10.36.118.199:1:8 Tx 8920 Rx 8920 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=115, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=115, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=115, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=115, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=17] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.neigh.swp1.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp2.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp3.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp4.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=115, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=18] Command: sysctl net.ipv4.neigh.swp1.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp2.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp3.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp4.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=115, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=18] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.neigh.swp1.base_reachable_time_ms = 30000 net.ipv4.neigh.swp2.base_reachable_time_ms = 30000 net.ipv4.neigh.swp3.base_reachable_time_ms = 30000 net.ipv4.neigh.swp4.base_reachable_time_ms = 30000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e784b50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 <-> 10.36.118.199:1:6 Tx 4920 Rx 4920 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:7 <-> 10.36.118.199:1:8 Tx 4920 Rx 4920 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=115, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=115, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=20] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=115, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_arp_reachable_timeout from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=115, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=21] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=115, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=22] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=115, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=22] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=115, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=115, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=24] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:43:28 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=115, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=115, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=26] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:43:31 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=115, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=115, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=28] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=115, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=115, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=115, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=115, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=115, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=115, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=32] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=115, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=32] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_arp.py::test_ipv4_arp_ageing 234.22
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6514' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_arp_ageing">Starting testcase:test_ipv4_arp_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=115, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=116] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=116] Local address: 172.17.0.3, port 39582 INFO asyncssh:logging.py:92 [conn=116] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=116] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=116] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=116, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:43:33 PM UTC INFO asyncssh:logging.py:92 [conn=116, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=116, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=116, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=116, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=116, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=116, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=116, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=116, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=6] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:43:33 PM UTC INFO asyncssh:logging.py:92 [conn=116, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=116, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=116, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=116, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=116, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=116, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=116, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.neigh.default.gc_thresh1&& sysctl net.ipv4.neigh.default.gc_stale_time INFO asyncssh:logging.py:92 [conn=116, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=12] Command: sysctl net.ipv4.neigh.default.gc_thresh1&& sysctl net.ipv4.neigh.default.gc_stale_time INFO asyncssh:logging.py:92 [conn=116, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.neigh.default.gc_thresh1 = 128 net.ipv4.neigh.default.gc_stale_time = 60 INFO asyncssh:logging.py:92 [conn=116, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=13] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.neigh.default.gc_thresh1=0&& sysctl net.ipv4.neigh.default.gc_stale_time=1 INFO asyncssh:logging.py:92 [conn=116, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=14] Command: sysctl net.ipv4.neigh.default.gc_thresh1=0&& sysctl net.ipv4.neigh.default.gc_stale_time=1 INFO asyncssh:logging.py:92 [conn=116, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=14] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.neigh.default.gc_thresh1 = 0 net.ipv4.neigh.default.gc_stale_time = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 <-> 10.36.118.199:1:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_3.3.3.2/24 to 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e3ce140>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 <-> 10.36.118.199:1:6 Tx 8868 Rx 8868 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:7 <-> 10.36.118.199:1:8 Tx 8868 Rx 8868 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=116, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=116, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=116, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=116, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=17] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.neigh.default.gc_thresh1=128&& sysctl net.ipv4.neigh.default.gc_stale_time=60 INFO asyncssh:logging.py:92 [conn=116, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=18] Command: sysctl net.ipv4.neigh.default.gc_thresh1=128&& sysctl net.ipv4.neigh.default.gc_stale_time=60 INFO asyncssh:logging.py:92 [conn=116, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=18] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.neigh.default.gc_thresh1 = 128 net.ipv4.neigh.default.gc_stale_time = 60
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_arp_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=116, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=19] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=116, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=116, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=20] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=116, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=116, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=22] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:47:25 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=116, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=116, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=24] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:47:25 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=116, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=116, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=26] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=116, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=116, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=116, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=116, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=116, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=116, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=30] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=116, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=30] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_best_match.py::test_ipv4_bm_traffic_forwarding 136.56
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6556' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_bm_traffic_forwarding">Starting testcase:test_ipv4_bm_traffic_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_best_match.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=116, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=117] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=117] Local address: 172.17.0.3, port 48866 INFO asyncssh:logging.py:92 [conn=117] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=117] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=117] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=117, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:47:27 PM UTC INFO asyncssh:logging.py:92 [conn=117, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=117, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=117, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=117, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=117, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=117, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=117, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=117, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=6] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:47:27 PM UTC INFO asyncssh:logging.py:92 [conn=117, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=117, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=8] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=117, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=8] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=117, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=117, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=10] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=117, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=117, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=117, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=12] Command: bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=117, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=12] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp2 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=117, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=117, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=14] Command: ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=117, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp2 ', 'rc': 0, 'result': '[{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=117, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=117, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=16] Command: ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=117, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=117, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address add 192.168.1.1/24 dev swp2 INFO asyncssh:logging.py:92 [conn=117, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=18] Command: ip address add 192.168.1.1/24 dev swp2 INFO asyncssh:logging.py:92 [conn=117, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_20.1.1.2/24', 'count': 1, 'ip': '20.1.1.2', 'gw': '20.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_192.168.1.3/24', 'count': 1, 'ip': '192.168.1.3', 'gw': '192.168.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=117, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip address add 20.1.1.1/24 dev swp1 metric 20 && ip address add 20.1.1.1/24 dev lo metric 10 INFO asyncssh:logging.py:92 [conn=117, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=20] Command: ip address add 20.1.1.1/24 dev swp1 metric 20 && ip address add 20.1.1.1/24 dev lo metric 10 INFO asyncssh:logging.py:92 [conn=117, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=117, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=117, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=22] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=117, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"dst":"20.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"20.1.1.1","metric":20,"flags":[]},{"dst":"192.168.1.0/24","dev":"swp2","protocol":"kernel","scope":"link","prefsrc":"192.168.1.1","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:6 -> 10.36.118.199:1:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_20.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_192.168.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e398fd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:6 -> 10.36.118.199:1:5 Tx 4418 Rx 0 Frames Delta 4418 Loss 100.000 INFO asyncssh:logging.py:92 [conn=117, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip address delete 20.1.1.1/24 dev lo INFO asyncssh:logging.py:92 [conn=117, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=24] Command: ip address delete 20.1.1.1/24 dev lo INFO asyncssh:logging.py:92 [conn=117, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=117, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=117, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=26] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=117, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"dst":"20.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"20.1.1.1","metric":20,"flags":["rt_trap"]},{"dst":"192.168.1.0/24","dev":"swp2","protocol":"kernel","scope":"link","prefsrc":"192.168.1.1","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e39b760>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:6 -> 10.36.118.199:1:5 Tx 8093 Rx 8093 Frames Delta 0 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_bm_traffic_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_best_match.py INFO asyncssh:logging.py:92 [conn=117, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=27] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=117, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=117, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=28] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=117, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=117, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=30] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:49:42 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=117, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=117, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=32] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:49:42 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=117, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=117, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=34] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=117, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=117, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=117, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=117, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=117, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=117, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=38] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=117, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=38] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_a_dis 120.82
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6606' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_a_dis">Starting testcase:test_ipv4_class_a_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=117, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=118] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=118] Local address: 172.17.0.3, port 54456 INFO asyncssh:logging.py:92 [conn=118] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=118] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=118] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=118, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:49:44 PM UTC INFO asyncssh:logging.py:92 [conn=118, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=118, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=118, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=118, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=118, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=118, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=118, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=118, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=6] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:49:44 PM UTC INFO asyncssh:logging.py:92 [conn=118, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=118, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=118, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=118, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/8 dev swp1 && ip address add 0.0.0.1/8 dev swp2 INFO asyncssh:logging.py:92 [conn=118, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=10] Command: ip address add 1.1.1.1/8 dev swp1 && ip address add 0.0.0.1/8 dev swp2 INFO asyncssh:logging.py:92 [conn=118, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/8', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_0.0.0.2/8', 'count': 1, 'ip': '0.0.0.2', 'gw': '0.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/8 to 10.36.118.199:1:6_0.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_0.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e39a830>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 -> 10.36.118.199:1:6 SIP-DIP 1.1.1.2-0.0.0.2 Tx 4428 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_a_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=118, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=118, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=118, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=118, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=118, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=14] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:51:42 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=118, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=118, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=16] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:51:42 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=118, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=118, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=18] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=118, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=118, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=118, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=118, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=118, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=118, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=22] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=118, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_b_dis 118.71
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6640' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_b_dis">Starting testcase:test_ipv4_class_b_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=118, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=119] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=119] Local address: 172.17.0.3, port 47452 INFO asyncssh:logging.py:92 [conn=119] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=119] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=119] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=119, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:51:44 PM UTC INFO asyncssh:logging.py:92 [conn=119, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=119, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=119, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=119, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=119, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=119, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=119, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=119, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=6] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:51:44 PM UTC INFO asyncssh:logging.py:92 [conn=119, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=119, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=119, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=119, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 128.1.1.1/16 dev swp1 && ip address add 191.255.1.1/16 dev swp2 INFO asyncssh:logging.py:92 [conn=119, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=10] Command: ip address add 128.1.1.1/16 dev swp1 && ip address add 191.255.1.1/16 dev swp2 INFO asyncssh:logging.py:92 [conn=119, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_128.1.1.2/16', 'count': 1, 'ip': '128.1.1.2', 'gw': '128.1.1.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_191.255.1.2/16', 'count': 1, 'ip': '191.255.1.2', 'gw': '191.255.1.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_128.1.1.2/16 to 10.36.118.199:1:6_191.255.1.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_128.1.1.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_191.255.1.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e39bc10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 -> 10.36.118.199:1:6 SIP-DIP 128.1.1.2-191.255.1.2 Tx 4477 Rx 4477 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_b_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=119, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=119, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=119, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=119, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=119, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=14] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:53:41 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=119, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=119, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=16] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:53:41 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=119, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=119, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=18] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=119, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=119, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=119, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=119, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=119, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=119, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=22] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=119, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_c_dis 119.40
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6674' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_c_dis">Starting testcase:test_ipv4_class_c_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=119, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=120] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=120] Local address: 172.17.0.3, port 59642 INFO asyncssh:logging.py:92 [conn=120] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=120] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=120] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:53:43 PM UTC INFO asyncssh:logging.py:92 [conn=120, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=120, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=120, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=120, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=120, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=120, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=120, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=6] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:53:43 PM UTC INFO asyncssh:logging.py:92 [conn=120, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=120, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=120, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=120, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 192.1.1.1/24 dev swp1 && ip address add 223.255.255.1/24 dev swp2 INFO asyncssh:logging.py:92 [conn=120, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=10] Command: ip address add 192.1.1.1/24 dev swp1 && ip address add 223.255.255.1/24 dev swp2 INFO asyncssh:logging.py:92 [conn=120, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_192.1.1.2/24', 'count': 1, 'ip': '192.1.1.2', 'gw': '192.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_223.255.255.2/24', 'count': 1, 'ip': '223.255.255.2', 'gw': '223.255.255.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_192.1.1.2/24 to 10.36.118.199:1:6_223.255.255.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_223.255.255.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e39a080>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 -> 10.36.118.199:1:6 SIP-DIP 192.1.1.2-223.255.255.2 Tx 4463 Rx 4463 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_c_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=120, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=120, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=120, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=120, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=14] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:55:40 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=120, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=16] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:55:41 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=120, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=120, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=18] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=120, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=120, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=120, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=120, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=120, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=120, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=22] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=120, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_d_dis 1.83
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6708' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_d_dis">Starting testcase:test_ipv4_class_d_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=120, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=121] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=121] Local address: 172.17.0.3, port 60032 INFO asyncssh:logging.py:92 [conn=121] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=121] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=121] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=121, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:55:42 PM UTC INFO asyncssh:logging.py:92 [conn=121, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=121, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=121, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=121, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=121, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=121, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=121, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=121, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=6] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:55:43 PM UTC INFO asyncssh:logging.py:92 [conn=121, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip address add 224.0.0.1/8 dev swp1 INFO asyncssh:logging.py:92 [conn=121, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=8] Command: ip address add 224.0.0.1/8 dev swp1 INFO asyncssh:logging.py:92 [conn=121, chan=8] Received exit status 2 INFO asyncssh:logging.py:92 [conn=121, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=8] Channel closed DEBUG agg1:Logger.py:156 RTNETLINK answers: Invalid argument
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_d_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=121, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=9] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=121, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=10] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=121, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=10] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=121, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=121, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=12] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:55:43 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=121, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=121, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=14] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:55:43 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=121, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=121, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=16] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=121, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=121, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=121, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=121, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=121, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=121, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=20] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=121, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=20] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_e_dis 117.64
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6740' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_e_dis">Starting testcase:test_ipv4_class_e_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=121, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=122] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=122] Local address: 172.17.0.3, port 60048 INFO asyncssh:logging.py:92 [conn=122] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=122] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=122] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=122, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:55:44 PM UTC INFO asyncssh:logging.py:92 [conn=122, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=122, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=122, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=122, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=122, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=122, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=122, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=122, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=6] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:55:44 PM UTC INFO asyncssh:logging.py:92 [conn=122, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=122, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=122, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=122, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 240.0.0.0/32 dev swp1 && ip address add 223.255.254.1/32 dev swp2 INFO asyncssh:logging.py:92 [conn=122, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=10] Command: ip address add 240.0.0.0/32 dev swp1 && ip address add 223.255.254.1/32 dev swp2 INFO asyncssh:logging.py:92 [conn=122, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_240.0.0.1/32', 'count': 1, 'ip': '240.0.0.1', 'gw': '240.0.0.0', 'plen': 32, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_223.255.254.2/32', 'count': 1, 'ip': '223.255.254.2', 'gw': '223.255.254.1', 'plen': 32, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_240.0.0.1/32 to 10.36.118.199:1:6_223.255.254.2/32 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_240.0.0.1/32 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_223.255.254.2/32 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e3cd930>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 -> 10.36.118.199:1:6 SIP-DIP 240.0.0.1-223.255.254.2 Tx 4491 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_e_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=122, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=122, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=122, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=122, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=122, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=14] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:57:40 PM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=122, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=122, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=16] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:57:40 PM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=122, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=122, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=18] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=122, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=122, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=122, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=122, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=122, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=122, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=22] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=122, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_crc.py::test_ipv4_checksum 143.15
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6774' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_checksum">Starting testcase:test_ipv4_checksum from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_crc.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=122, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=123] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=123] Local address: 172.17.0.3, port 42920 INFO asyncssh:logging.py:92 [conn=123] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=123] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=123] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=123, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=0] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:57:42 PM UTC INFO asyncssh:logging.py:92 [conn=123, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=123, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=123, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=123, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=123, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=123, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=123, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=123, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=6] Channel closed DEBUG agg1:Logger.py:156 Fri 23 Jun 2023 11:57:42 PM UTC INFO asyncssh:logging.py:92 [conn=123, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=123, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=123, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=123, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=123, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=123, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:6 bad crc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 <-> 10.36.118.199:1:8 good crc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_3.3.3.2/24 to 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=123, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=11] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=123, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=12] Command: ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=123, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=12] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 1751430009422 bad_octets_received: 24820648 mac_trans_error: 0 broadcast_frames_received: 12364627 multicast_frames_received: 596783391 frames_64_octets: 2803 frames_65_to_127_octets: 1907077 frames_128_to_255_octets: 1001940255 frames_256_to_511_octets: 1623371865 frames_512_to_1023_octets: 1473072127 frames_1024_to_max_octets: 101977287 excessive_collision: 0 multicast_frames_sent: 2796 broadcast_frames_sent: 1691 fc_sent: 0 fc_received: 0 buffer_overrun: 2963 undersize: 13024 fragments: 0 oversize: 14220 jabber: 0 rx_error_frame_received: 0 bad_crc: 4732 collisions: 0 late_collision: 0 unicast_frames_received: 3584961098 unicast_frames_sent: 8153079 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3609123792 INFO asyncssh:logging.py:92 [conn=123, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=123, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=14] Command: ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=123, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=14] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 347925805987 bad_octets_received: 24695484 mac_trans_error: 0 broadcast_frames_received: 3431688 multicast_frames_received: 4664130 frames_64_octets: 2403 frames_65_to_127_octets: 1160540 frames_128_to_255_octets: 82423721 frames_256_to_511_octets: 119324540 frames_512_to_1023_octets: 731032799 frames_1024_to_max_octets: 26320964 excessive_collision: 0 multicast_frames_sent: 253253408 broadcast_frames_sent: 8664 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13024 fragments: 0 oversize: 14220 jabber: 0 rx_error_frame_received: 0 bad_crc: 4487 collisions: 0 late_collision: 0 unicast_frames_received: 625467168 unicast_frames_sent: 73435422 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 146362607755 INFO asyncssh:logging.py:92 [conn=123, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=123, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=16] Command: ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=123, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=16] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 305680179969 bad_octets_received: 22398320 mac_trans_error: 0 broadcast_frames_received: 1794749 multicast_frames_received: 2439798 frames_64_octets: 1643 frames_65_to_127_octets: 1160277 frames_128_to_255_octets: 118882627 frames_256_to_511_octets: 882 frames_512_to_1023_octets: 826529066 frames_1024_to_max_octets: 25125693 excessive_collision: 0 multicast_frames_sent: 357564055 broadcast_frames_sent: 4689 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13024 fragments: 0 oversize: 14220 jabber: 0 rx_error_frame_received: 0 bad_crc: 1 collisions: 0 late_collision: 0 unicast_frames_received: 499531133 unicast_frames_sent: 110365763 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 205269851123 INFO asyncssh:logging.py:92 [conn=123, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=123, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=18] Command: ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=123, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=18] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 32830516382 bad_octets_received: 22398232 mac_trans_error: 0 broadcast_frames_received: 1794730 multicast_frames_received: 2439802 frames_64_octets: 1640 frames_65_to_127_octets: 1160301 frames_128_to_255_octets: 109960389 frames_256_to_511_octets: 882 frames_512_to_1023_octets: 139121526 frames_1024_to_max_octets: 25125693 excessive_collision: 0 multicast_frames_sent: 136988315 broadcast_frames_sent: 4705 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13024 fragments: 0 oversize: 14220 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 31358007 unicast_frames_sent: 102784872 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 91237386465 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=123, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=19] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=123, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=20] Command: ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=123, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=20] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 1751430009422 bad_octets_received: 27162536 mac_trans_error: 0 broadcast_frames_received: 12364627 multicast_frames_received: 596783391 frames_64_octets: 2803 frames_65_to_127_octets: 1907078 frames_128_to_255_octets: 1001940256 frames_256_to_511_octets: 1623371865 frames_512_to_1023_octets: 1473076701 frames_1024_to_max_octets: 101977287 excessive_collision: 0 multicast_frames_sent: 2798 broadcast_frames_sent: 1691 fc_sent: 0 fc_received: 0 buffer_overrun: 2963 undersize: 13024 fragments: 0 oversize: 14220 jabber: 0 rx_error_frame_received: 0 bad_crc: 9306 collisions: 0 late_collision: 0 unicast_frames_received: 3584961098 unicast_frames_sent: 8153079 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3609124103 INFO asyncssh:logging.py:92 [conn=123, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=21] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=123, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=22] Command: ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=123, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=22] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 347925805987 bad_octets_received: 27037372 mac_trans_error: 0 broadcast_frames_received: 3431688 multicast_frames_received: 4664130 frames_64_octets: 2403 frames_65_to_127_octets: 1160541 frames_128_to_255_octets: 82423722 frames_256_to_511_octets: 119324540 frames_512_to_1023_octets: 731037373 frames_1024_to_max_octets: 26320964 excessive_collision: 0 multicast_frames_sent: 253253410 broadcast_frames_sent: 8664 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13024 fragments: 0 oversize: 14220 jabber: 0 rx_error_frame_received: 0 bad_crc: 9061 collisions: 0 late_collision: 0 unicast_frames_received: 625467168 unicast_frames_sent: 73435422 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 146362608066 INFO asyncssh:logging.py:92 [conn=123, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=23] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=123, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=24] Command: ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=123, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=24] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 305682521921 bad_octets_received: 22398320 mac_trans_error: 0 broadcast_frames_received: 1794749 multicast_frames_received: 2439798 frames_64_octets: 1645 frames_65_to_127_octets: 1160278 frames_128_to_255_octets: 118882628 frames_256_to_511_octets: 882 frames_512_to_1023_octets: 826538214 frames_1024_to_max_octets: 25125693 excessive_collision: 0 multicast_frames_sent: 357564057 broadcast_frames_sent: 4689 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13024 fragments: 0 oversize: 14220 jabber: 0 rx_error_frame_received: 0 bad_crc: 1 collisions: 0 late_collision: 0 unicast_frames_received: 499535708 unicast_frames_sent: 110370338 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 205272193386 INFO asyncssh:logging.py:92 [conn=123, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=25] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=123, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=26] Command: ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=123, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=26] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 32832858334 bad_octets_received: 22398232 mac_trans_error: 0 broadcast_frames_received: 1794730 multicast_frames_received: 2439802 frames_64_octets: 1642 frames_65_to_127_octets: 1160302 frames_128_to_255_octets: 109960390 frames_256_to_511_octets: 882 frames_512_to_1023_octets: 139130674 frames_1024_to_max_octets: 25125693 excessive_collision: 0 multicast_frames_sent: 136988317 broadcast_frames_sent: 4705 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13024 fragments: 0 oversize: 14220 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 31362582 unicast_frames_sent: 102789447 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 91239728728 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e3b8400>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 bad crc SIP-DIP 1.1.1.2-2.2.2.2 Tx 4574 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 bad crc SIP-DIP 2.2.2.2-1.1.1.2 Tx 4574 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:7 <-> 10.36.118.199:1:8 good crc SIP-DIP 3.3.3.2-4.4.4.2 Tx 4574 Rx 4574 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:7 <-> 10.36.118.199:1:8 good crc SIP-DIP 4.4.4.2-3.3.3.2 Tx 4574 Rx 4574 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_checksum from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_crc.py INFO asyncssh:logging.py:92 [conn=123, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=27] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=123, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=123, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=28] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=123, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=123, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:00:03 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=123, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=123, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=32] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:00:03 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=123, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=123, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=34] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=123, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=123, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=123, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=123, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=123, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=123, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=38] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=123, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=38] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_en_dis_fwd.py::test_ipv4_en_dis_fwd 155.11
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6824' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_en_dis_fwd">Starting testcase:test_ipv4_en_dis_fwd from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_en_dis_fwd.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=123, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=124] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=124] Local address: 172.17.0.3, port 43038 INFO asyncssh:logging.py:92 [conn=124] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=124] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=124] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=124, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:00:05 AM UTC INFO asyncssh:logging.py:92 [conn=124, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=124, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=124, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=124, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=124, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=124, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=124, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=124, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:00:05 AM UTC INFO asyncssh:logging.py:92 [conn=124, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=124, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=124, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=124, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=124, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=124, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 <-> 10.36.118.199:1:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_3.3.3.2/24 to 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e3b8e20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 1.1.1.2-2.2.2.2 Tx 4035 Rx 4035 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2.2.2.2-1.1.1.2 Tx 4035 Rx 4035 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:7 <-> 10.36.118.199:1:8 SIP-DIP 3.3.3.2-4.4.4.2 Tx 4035 Rx 4035 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:7 <-> 10.36.118.199:1:8 SIP-DIP 4.4.4.2-3.3.3.2 Tx 4035 Rx 4035 Loss 0.000 INFO asyncssh:logging.py:92 [conn=124, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=124, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=12] Command: sysctl -n net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=124, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=12] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=124, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip neigh flush dev swp1 && ip neigh flush dev swp2 && ip neigh flush dev swp3 && ip neigh flush dev swp4 && ip neigh flush dev swp1 && ip neigh flush dev swp2 && ip neigh flush dev swp3 && ip neigh flush dev swp4 INFO asyncssh:logging.py:92 [conn=124, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=14] Command: ip neigh flush dev swp1 && ip neigh flush dev swp2 && ip neigh flush dev swp3 && ip neigh flush dev swp4 && ip neigh flush dev swp1 && ip neigh flush dev swp2 && ip neigh flush dev swp3 && ip neigh flush dev swp4 INFO asyncssh:logging.py:92 [conn=124, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e3bb070>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 1.1.1.2-2.2.2.2 Tx 8043 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2.2.2.2-1.1.1.2 Tx 8043 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:7 <-> 10.36.118.199:1:8 SIP-DIP 3.3.3.2-4.4.4.2 Tx 8043 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:7 <-> 10.36.118.199:1:8 SIP-DIP 4.4.4.2-3.3.3.2 Tx 8043 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_en_dis_fwd from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_en_dis_fwd.py INFO asyncssh:logging.py:92 [conn=124, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=15] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=124, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=16] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=124, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=16] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=124, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=124, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:02:38 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=124, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=124, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:02:38 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=124, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=124, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=22] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=124, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=124, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=124, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=24] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=124, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=124, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=124, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=26] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=124, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=26] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_gw.py::test_ipv4_default_gw 164.72
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6860' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_default_gw">Starting testcase:test_ipv4_default_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=124, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=125] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=125] Local address: 172.17.0.3, port 57838 INFO asyncssh:logging.py:92 [conn=125] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=125] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=125] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:02:40 AM UTC INFO asyncssh:logging.py:92 [conn=125, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=125, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=2] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=125, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=125, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=125, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=4] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=125, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=4] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=125, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=125, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=6] Command: ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=125, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:02:40 AM UTC INFO asyncssh:logging.py:92 [conn=125, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=9] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=125, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=10] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=125, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=10] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=125, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=125, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=12] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=125, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:02:40 AM UTC INFO asyncssh:logging.py:92 [conn=125, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=125, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=16] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=125, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=16] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=125, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=125, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=18] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=125, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=125, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=125, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=20] Command: bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=125, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=20] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp2 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=125, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=125, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=22] Command: ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=125, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp2 ', 'rc': 0, 'result': '[{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=125, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=23] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp3 INFO asyncssh:logging.py:92 [conn=125, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=24] Command: bridge -j vlan show dev swp3 INFO asyncssh:logging.py:92 [conn=125, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=24] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp3 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=125, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp3 INFO asyncssh:logging.py:92 [conn=125, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=26] Command: ip -j address show swp3 INFO asyncssh:logging.py:92 [conn=125, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp3 ', 'rc': 0, 'result': '[{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=125, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=27] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp4 INFO asyncssh:logging.py:92 [conn=125, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=28] Command: bridge -j vlan show dev swp4 INFO asyncssh:logging.py:92 [conn=125, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=28] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp4 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=125, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp4 INFO asyncssh:logging.py:92 [conn=125, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=30] Command: ip -j address show swp4 INFO asyncssh:logging.py:92 [conn=125, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp4 ', 'rc': 0, 'result': '[{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=125, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=125, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=32] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=125, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=125, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=125, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=34] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=125, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:8 -> 10.36.118.199:1:5 5.5.5.5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:8 -> 10.36.118.199:1:6 5.5.5.5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:8 -> 10.36.118.199:1:7 5.5.5.5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=125, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip route add default metric 100 via 1.1.1.2 dev swp1 && ip route add default metric 200 via 2.2.2.2 dev swp2 INFO asyncssh:logging.py:92 [conn=125, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=36] Command: ip route add default metric 100 via 1.1.1.2 dev swp1 && ip route add default metric 200 via 2.2.2.2 dev swp2 INFO asyncssh:logging.py:92 [conn=125, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e3bb400>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:8 -> 10.36.118.199:1:5 5.5.5.5 Tx 4452 Rx 4452 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:8 -> 10.36.118.199:1:6 5.5.5.5 Tx 4452 Rx 0 Frames Delta 4452 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:8 -> 10.36.118.199:1:7 5.5.5.5 Tx 4452 Rx 0 Frames Delta 4452 Loss 100.000 INFO asyncssh:logging.py:92 [conn=125, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=125, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=38] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=125, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"1.1.1.2","dev":"swp1","metric":100,"flags":["offload","rt_offload"]},{"dst":"default","gateway":"2.2.2.2","dev":"swp2","metric":200,"flags":[]},{"dst":"1.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp2","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp3","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp4","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=125, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip route add default via 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=125, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=40] Command: ip route add default via 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=125, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e39bee0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:8 -> 10.36.118.199:1:5 5.5.5.5 Tx 8071 Rx 0 Frames Delta 8071 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:8 -> 10.36.118.199:1:6 5.5.5.5 Tx 8071 Rx 0 Frames Delta 8071 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:8 -> 10.36.118.199:1:7 5.5.5.5 Tx 8071 Rx 8071 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=125, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=125, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=42] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=125, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=42] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"3.3.3.2","dev":"swp3","flags":["offload","rt_offload"]},{"dst":"default","gateway":"1.1.1.2","dev":"swp1","metric":100,"flags":["offload"]},{"dst":"default","gateway":"2.2.2.2","dev":"swp2","metric":200,"flags":[]},{"dst":"1.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp2","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp3","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp4","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_default_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py INFO asyncssh:logging.py:92 [conn=125, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=43] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=125, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=44] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=125, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=44] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=45] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=46] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:05:23 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=47] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=48] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:05:23 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=125, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=49] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=125, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=50] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=125, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=125, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=125, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=52] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=125, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=52] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=125, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=53] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=125, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=54] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=125, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=125, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=55] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=125, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=56] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=125, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=56] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=125, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=57] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=125, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=58] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=125, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=58] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=125, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=59] Channel closed DEBUG agg1:Logger.py:156 ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=125, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=60] Command: ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=125, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=60] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_gw.py::test_ipv4_not_connected_gw 2.39
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6936' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_not_connected_gw">Starting testcase:test_ipv4_not_connected_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=126] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=126] Local address: 172.17.0.3, port 47956 INFO asyncssh:logging.py:92 [conn=126] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=126] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=126] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=126, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:05:25 AM UTC INFO asyncssh:logging.py:92 [conn=126, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=126, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=126, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=126, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=126, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=126, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=126, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=126, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:05:25 AM UTC INFO asyncssh:logging.py:92 [conn=126, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 INFO asyncssh:logging.py:92 [conn=126, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=8] Command: ip address add 1.1.1.1/24 dev swp1 INFO asyncssh:logging.py:92 [conn=126, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip route add default via 5.5.5.5 dev swp1 INFO asyncssh:logging.py:92 [conn=126, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=10] Command: ip route add default via 5.5.5.5 dev swp1 INFO asyncssh:logging.py:92 [conn=126, chan=10] Received exit status 2 INFO asyncssh:logging.py:92 [conn=126, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=10] Channel closed DEBUG agg1:Logger.py:156 Error: Nexthop has invalid gateway. INFO asyncssh:logging.py:92 [conn=126, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address add 2.2.2.2/24 dev swp2 INFO asyncssh:logging.py:92 [conn=126, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=12] Command: ip address add 2.2.2.2/24 dev swp2 INFO asyncssh:logging.py:92 [conn=126, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip route add default via 5.5.5.5 dev swp2 INFO asyncssh:logging.py:92 [conn=126, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=14] Command: ip route add default via 5.5.5.5 dev swp2 INFO asyncssh:logging.py:92 [conn=126, chan=14] Received exit status 2 INFO asyncssh:logging.py:92 [conn=126, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=14] Channel closed DEBUG agg1:Logger.py:156 Error: Nexthop has invalid gateway. INFO asyncssh:logging.py:92 [conn=126, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address add 3.3.3.3/24 dev swp3 INFO asyncssh:logging.py:92 [conn=126, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=16] Command: ip address add 3.3.3.3/24 dev swp3 INFO asyncssh:logging.py:92 [conn=126, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip route add default via 5.5.5.5 dev swp3 INFO asyncssh:logging.py:92 [conn=126, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=18] Command: ip route add default via 5.5.5.5 dev swp3 INFO asyncssh:logging.py:92 [conn=126, chan=18] Received exit status 2 INFO asyncssh:logging.py:92 [conn=126, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=18] Channel closed DEBUG agg1:Logger.py:156 Error: Nexthop has invalid gateway. INFO asyncssh:logging.py:92 [conn=126, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip address add 4.4.4.4/24 dev swp4 INFO asyncssh:logging.py:92 [conn=126, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=20] Command: ip address add 4.4.4.4/24 dev swp4 INFO asyncssh:logging.py:92 [conn=126, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip route add default via 5.5.5.5 dev swp4 INFO asyncssh:logging.py:92 [conn=126, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=22] Command: ip route add default via 5.5.5.5 dev swp4 INFO asyncssh:logging.py:92 [conn=126, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=126, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=22] Channel closed DEBUG agg1:Logger.py:156 Error: Nexthop has invalid gateway.
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_not_connected_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py INFO asyncssh:logging.py:92 [conn=126, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=23] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=126, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=126, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=24] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=126, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=126, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:05:25 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=126, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=126, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=28] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:05:26 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=126, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=126, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=30] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=126, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=126, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=126, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=126, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=126, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=34] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=126, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=34] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_icmp.py::test_ipv4_icmp_disabled 156.85
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6982' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_icmp_disabled">Starting testcase:test_ipv4_icmp_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=126, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=127] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=127] Local address: 172.17.0.3, port 47958 INFO asyncssh:logging.py:92 [conn=127] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=127] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=127] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=127, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:05:27 AM UTC INFO asyncssh:logging.py:92 [conn=127, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=127, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=127, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=127, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=127, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=127, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=127, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=127, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:05:27 AM UTC INFO asyncssh:logging.py:92 [conn=127, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=127, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=127, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=127, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=127, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=127, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=127, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.icmp_echo_ignore_all INFO asyncssh:logging.py:92 [conn=127, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=12] Command: sysctl -n net.ipv4.icmp_echo_ignore_all INFO asyncssh:logging.py:92 [conn=127, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=12] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=127, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=13] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.icmp_echo_ignore_all=1 INFO asyncssh:logging.py:92 [conn=127, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=14] Command: sysctl net.ipv4.icmp_echo_ignore_all=1 INFO asyncssh:logging.py:92 [conn=127, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=14] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.icmp_echo_ignore_all = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e3b8370>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI ipv4 SIP-DIP 1.1.1.2-2.2.2.2 Tx 446 Rx 446 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:5_1.1.1.2/24 to 1.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:6_2.2.2.2/24 to 2.2.2.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:7_3.3.3.2/24 to 3.3.3.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:8_4.4.4.2/24 to 4.4.4.1 WARNING DENT:Logger.py:111 [Ixia Traffic Generator] Some pings did not reach their destination [{'ixia': {'command': 'send_ping&& send_ping&& send_ping&& send_ping', 'rc': 1, 'result': [{'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 1.1.1.2 -> 1.1.1.1 failed - timeout', 'port': '10.36.118.199:1:5', 'src_ip': '1.1.1.2', 'dst_ip': '1.1.1.1'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 2.2.2.2 -> 2.2.2.1 failed - timeout', 'port': '10.36.118.199:1:6', 'src_ip': '2.2.2.2', 'dst_ip': '2.2.2.1'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 3.3.3.2 -> 3.3.3.1 failed - timeout', 'port': '10.36.118.199:1:7', 'src_ip': '3.3.3.2', 'dst_ip': '3.3.3.1'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 4.4.4.2 -> 4.4.4.1 failed - timeout', 'port': '10.36.118.199:1:8', 'src_ip': '4.4.4.2', 'dst_ip': '4.4.4.1'}]}}] INFO asyncssh:logging.py:92 [conn=127, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=15] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.icmp_echo_ignore_all=0 INFO asyncssh:logging.py:92 [conn=127, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=16] Command: sysctl net.ipv4.icmp_echo_ignore_all=0 INFO asyncssh:logging.py:92 [conn=127, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=16] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.icmp_echo_ignore_all = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:5_1.1.1.2/24 to 1.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:6_2.2.2.2/24 to 2.2.2.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:7_3.3.3.2/24 to 3.3.3.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:8_4.4.4.2/24 to 4.4.4.1
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_icmp_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=127, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=17] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=127, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=18] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=127, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=18] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=127, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=127, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:08:02 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=127, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=127, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:08:02 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=127, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=127, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=24] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=127, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=127, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=127, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=26] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=127, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=127, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=127, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=28] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=127, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=28] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_icmp.py::test_ipv4_ping_stability 240.52
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7022' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_ping_stability">Starting testcase:test_ipv4_ping_stability from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=127, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=128] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=128] Local address: 172.17.0.3, port 46180 INFO asyncssh:logging.py:92 [conn=128] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=128] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=128] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=128, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:08:04 AM UTC INFO asyncssh:logging.py:92 [conn=128, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=128, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=128, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=128, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=128, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=128, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=128, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=128, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:08:04 AM UTC INFO asyncssh:logging.py:92 [conn=128, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=128, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=128, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=128, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=128, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=128, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=128, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=128, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=13] Received channel close DEBUG agg1:Logger.py:156 ping -I swp1 -i 0.005 -w 120 1.1.1.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=128, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=128, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=14] Received channel close DEBUG agg1:Logger.py:156 ping -I swp2 -i 0.005 -w 120 2.2.2.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=16] Requesting new SSH session DEBUG agg1:Logger.py:156 ping -I swp3 -i 0.005 -w 120 3.3.3.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=14] Channel closed INFO asyncssh:logging.py:92 [conn=128, chan=15] Command: ping -I swp1 -i 0.005 -w 120 1.1.1.2 | grep "bytes from" | wc -l DEBUG agg1:Logger.py:156 ping -I swp4 -i 0.005 -w 120 4.4.4.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=16] Command: ping -I swp2 -i 0.005 -w 120 2.2.2.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=17] Command: ping -I swp3 -i 0.005 -w 120 3.3.3.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=18] Command: ping -I swp4 -i 0.005 -w 120 4.4.4.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=15] Channel closed DEBUG agg1:Logger.py:156 2937 INFO asyncssh:logging.py:92 [conn=128, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=16] Channel closed DEBUG agg1:Logger.py:156 3060 INFO asyncssh:logging.py:92 [conn=128, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=128, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=18] Received channel close DEBUG agg1:Logger.py:156 2976 INFO asyncssh:logging.py:92 [conn=128, chan=18] Channel closed DEBUG agg1:Logger.py:156 3027 INFO DENT:Logger.py:84 [DENT aggregation 1] Total run time: 120.07s, pings received: 12000 INFO DENT:Logger.py:84 [DENT aggregation 1] Actual icmp rate: 99.94pps, expected: 100pps
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_ping_stability from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=128, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=19] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=128, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=128, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=20] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=128, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=128, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:12:03 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=128, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=128, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:12:03 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=128, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=128, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=26] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=128, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=128, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=128, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=128, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=128, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=128, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=30] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=128, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=30] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_icmp.py::test_ipv4_ping_static_ip 118.79
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7126' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_ping_static_ip">Starting testcase:test_ipv4_ping_static_ip from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=129, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=130] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=130] Local address: 172.17.0.3, port 57038 INFO asyncssh:logging.py:92 [conn=130] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=130] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=130] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=130, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:14:17 AM UTC INFO asyncssh:logging.py:92 [conn=130, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=130, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=130, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=130, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=130, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=130, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=130, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=130, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:14:17 AM UTC INFO asyncssh:logging.py:92 [conn=130, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=130, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=130, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=130, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=130, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=130, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:5_1.1.1.2/24 to 1.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:6_2.2.2.2/24 to 2.2.2.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:7_3.3.3.2/24 to 3.3.3.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:8_4.4.4.2/24 to 4.4.4.1 INFO asyncssh:logging.py:92 [conn=130, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=130, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=13] Received channel close DEBUG agg1:Logger.py:156 ping -I swp1 -c 1 -i 0.1 -s 0 -w 120 1.1.1.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=130, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=130, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=14] Received channel close DEBUG agg1:Logger.py:156 ping -I swp2 -c 1 -i 0.1 -s 0 -w 120 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=16] Requesting new SSH session DEBUG agg1:Logger.py:156 ping -I swp3 -c 1 -i 0.1 -s 0 -w 120 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=14] Channel closed INFO asyncssh:logging.py:92 [conn=130, chan=15] Command: ping -I swp1 -c 1 -i 0.1 -s 0 -w 120 1.1.1.2 | grep "ping statistics" -A 2 DEBUG agg1:Logger.py:156 ping -I swp4 -c 1 -i 0.1 -s 0 -w 120 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=16] Command: ping -I swp2 -c 1 -i 0.1 -s 0 -w 120 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=17] Command: ping -I swp3 -c 1 -i 0.1 -s 0 -w 120 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=18] Command: ping -I swp4 -c 1 -i 0.1 -s 0 -w 120 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=15] Channel closed DEBUG agg1:Logger.py:156 --- 1.1.1.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms INFO asyncssh:logging.py:92 [conn=130, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=130, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=18] Received channel close DEBUG agg1:Logger.py:156 --- 3.3.3.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms INFO asyncssh:logging.py:92 [conn=130, chan=16] Channel closed INFO asyncssh:logging.py:92 [conn=130, chan=18] Channel closed DEBUG agg1:Logger.py:156 --- 2.2.2.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms DEBUG agg1:Logger.py:156 --- 4.4.4.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_ping_static_ip from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=130, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=19] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=130, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=130, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=20] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=130, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=130, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:16:14 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=130, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=130, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:16:14 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=130, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=130, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=26] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=130, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=130, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=130, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=130, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=130, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=130, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=30] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=130, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=30] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_icmp.py::test_ipv4_fwd_disable 129.68
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7172' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_fwd_disable">Starting testcase:test_ipv4_fwd_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=130, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=131] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=131] Local address: 172.17.0.3, port 49188 INFO asyncssh:logging.py:92 [conn=131] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=131] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=131] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=131, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:16:16 AM UTC INFO asyncssh:logging.py:92 [conn=131, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=131, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=131, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=131, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=131, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=131, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=131, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=131, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:16:16 AM UTC INFO asyncssh:logging.py:92 [conn=131, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=131, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=131, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=131, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=131, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=131, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=131, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip neigh flush dev swp1 && ip neigh flush dev swp2 && ip neigh flush dev swp3 && ip neigh flush dev swp4 INFO asyncssh:logging.py:92 [conn=131, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=12] Command: ip neigh flush dev swp1 && ip neigh flush dev swp2 && ip neigh flush dev swp3 && ip neigh flush dev swp4 INFO asyncssh:logging.py:92 [conn=131, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=131, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=13] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=131, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=14] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=131, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=14] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP from 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP from 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:5_1.1.1.2/24 to 4.4.4.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:6_2.2.2.2/24 to 3.3.3.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:7_3.3.3.2/24 to 2.2.2.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:8_4.4.4.2/24 to 1.1.1.2 WARNING DENT:Logger.py:111 [Ixia Traffic Generator] Some pings did not reach their destination [{'ixia': {'command': 'send_ping&& send_ping&& send_ping&& send_ping', 'rc': 1, 'result': [{'success': True, 'info': '1 requests sent, 1 replies received., \nPing: 1.1.1.2 -> 4.4.4.2 succeeded - reply received (sequence number = 0)', 'port': '10.36.118.199:1:5', 'src_ip': None, 'dst_ip': '4.4.4.2'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 2.2.2.2 -> 3.3.3.2 failed - timeout', 'port': '10.36.118.199:1:6', 'src_ip': None, 'dst_ip': '3.3.3.2'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 3.3.3.2 -> 2.2.2.2 failed - timeout', 'port': '10.36.118.199:1:7', 'src_ip': None, 'dst_ip': '2.2.2.2'}, {'success': True, 'info': '1 requests sent, 1 replies received., \nPing: 4.4.4.2 -> 1.1.1.2 succeeded - reply received (sequence number = 0)', 'port': '10.36.118.199:1:8', 'src_ip': None, 'dst_ip': '1.1.1.2'}]}}] INFO asyncssh:logging.py:92 [conn=131, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=15] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=131, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=16] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=131, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=16] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 INFO asyncssh:logging.py:92 [conn=131, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip neigh flush dev swp1 && ip neigh flush dev swp2 && ip neigh flush dev swp3 && ip neigh flush dev swp4 INFO asyncssh:logging.py:92 [conn=131, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=18] Command: ip neigh flush dev swp1 && ip neigh flush dev swp2 && ip neigh flush dev swp3 && ip neigh flush dev swp4 INFO asyncssh:logging.py:92 [conn=131, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:5_1.1.1.2/24 to 4.4.4.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:6_2.2.2.2/24 to 3.3.3.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:7_3.3.3.2/24 to 2.2.2.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:8_4.4.4.2/24 to 1.1.1.2
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_fwd_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=131, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=19] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=131, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=131, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=20] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=131, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=131, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:18:23 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=131, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=131, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:18:24 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=131, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=131, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=26] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=131, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=131, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=131, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=131, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=131, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=131, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=30] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=131, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=30] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_mtu.py::test_ipv4_oversized_mtu 152.33
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7212' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_oversized_mtu">Starting testcase:test_ipv4_oversized_mtu from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=131, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=132] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=132] Local address: 172.17.0.3, port 52900 INFO asyncssh:logging.py:92 [conn=132] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=132] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=132] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:18:26 AM UTC INFO asyncssh:logging.py:92 [conn=132, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=132, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=132, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=132, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=3] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=4] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:18:26 AM UTC INFO asyncssh:logging.py:92 [conn=132, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=5] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=132, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=6] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=132, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=6] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=132, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=7] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=132, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=8] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=132, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=8] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=132, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=9] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=10] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:18:26 AM UTC INFO asyncssh:logging.py:92 [conn=132, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=132, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=12] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=132, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=132, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=132, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=14] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=132, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:6 <-> 10.36.118.199:1:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2.2.2.2/24 to 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 <-> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_3.3.3.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:8 <-> 10.36.118.199:1:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:8_4.4.4.2/24 to 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=132, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 mtu 1000 && ip link set dev swp2 mtu 1000 && ip link set dev swp3 mtu 1000 && ip link set dev swp4 mtu 1000 INFO asyncssh:logging.py:92 [conn=132, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=16] Command: ip link set dev swp1 mtu 1000 && ip link set dev swp2 mtu 1000 && ip link set dev swp3 mtu 1000 && ip link set dev swp4 mtu 1000 INFO asyncssh:logging.py:92 [conn=132, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=132, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=132, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=18] Command: ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=132, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=18] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 1751437788068 bad_octets_received: 27162536 mac_trans_error: 0 broadcast_frames_received: 12364652 multicast_frames_received: 596783391 frames_64_octets: 3037 frames_65_to_127_octets: 1933938 frames_128_to_255_octets: 1001940299 frames_256_to_511_octets: 1623371865 frames_512_to_1023_octets: 1473106616 frames_1024_to_max_octets: 101977432 excessive_collision: 0 multicast_frames_sent: 2967 broadcast_frames_sent: 1692 fc_sent: 0 fc_received: 0 buffer_overrun: 2963 undersize: 13024 fragments: 0 oversize: 14220 jabber: 0 rx_error_frame_received: 0 bad_crc: 9306 collisions: 0 late_collision: 0 unicast_frames_received: 3584987009 unicast_frames_sent: 8184170 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3619644808 INFO asyncssh:logging.py:92 [conn=132, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=19] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=132, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=20] Command: ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=132, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=20] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 347933362323 bad_octets_received: 27037372 mac_trans_error: 0 broadcast_frames_received: 3431712 multicast_frames_received: 4664130 frames_64_octets: 2624 frames_65_to_127_octets: 1187529 frames_128_to_255_octets: 82423763 frames_256_to_511_octets: 119324540 frames_512_to_1023_octets: 731053932 frames_1024_to_max_octets: 26321109 excessive_collision: 0 multicast_frames_sent: 253253579 broadcast_frames_sent: 8665 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13024 fragments: 0 oversize: 14220 jabber: 0 rx_error_frame_received: 0 bad_crc: 9061 collisions: 0 late_collision: 0 unicast_frames_received: 625492691 unicast_frames_sent: 73453659 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 146366524595 INFO asyncssh:logging.py:92 [conn=132, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=21] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=132, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=22] Command: ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=132, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=22] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 305690073757 bad_octets_received: 22398320 mac_trans_error: 0 broadcast_frames_received: 1794773 multicast_frames_received: 2439798 frames_64_octets: 1872 frames_65_to_127_octets: 1187162 frames_128_to_255_octets: 118882667 frames_256_to_511_octets: 882 frames_512_to_1023_octets: 826578540 frames_1024_to_max_octets: 25125838 excessive_collision: 0 multicast_frames_sent: 357564212 broadcast_frames_sent: 4690 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13024 fragments: 0 oversize: 14220 jabber: 0 rx_error_frame_received: 0 bad_crc: 1 collisions: 0 late_collision: 0 unicast_frames_received: 499561188 unicast_frames_sent: 110412299 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 205288272581 INFO asyncssh:logging.py:92 [conn=132, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=23] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=132, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=24] Command: ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=132, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=24] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 32859648316 bad_octets_received: 22398232 mac_trans_error: 0 broadcast_frames_received: 1794755 multicast_frames_received: 2439802 frames_64_octets: 1872 frames_65_to_127_octets: 1187252 frames_128_to_255_octets: 109960429 frames_256_to_511_octets: 882 frames_512_to_1023_octets: 139184356 frames_1024_to_max_octets: 25125838 excessive_collision: 0 multicast_frames_sent: 136988484 broadcast_frames_sent: 4706 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13024 fragments: 0 oversize: 14220 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 31425658 unicast_frames_sent: 102807224 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 91243414837 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=132, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=25] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=132, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=26] Command: ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=132, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=26] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 1751437788068 bad_octets_received: 31853516 mac_trans_error: 0 broadcast_frames_received: 12364652 multicast_frames_received: 596783391 frames_64_octets: 3037 frames_65_to_127_octets: 1933938 frames_128_to_255_octets: 1001940299 frames_256_to_511_octets: 1623371865 frames_512_to_1023_octets: 1473106616 frames_1024_to_max_octets: 101977432 excessive_collision: 0 multicast_frames_sent: 2967 broadcast_frames_sent: 1692 fc_sent: 0 fc_received: 0 buffer_overrun: 2963 undersize: 13024 fragments: 0 oversize: 18810 jabber: 0 rx_error_frame_received: 0 bad_crc: 9306 collisions: 0 late_collision: 0 unicast_frames_received: 3584987009 unicast_frames_sent: 8184170 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3619644808 INFO asyncssh:logging.py:92 [conn=132, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=27] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=132, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=28] Command: ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=132, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=28] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 347933362323 bad_octets_received: 31728352 mac_trans_error: 0 broadcast_frames_received: 3431712 multicast_frames_received: 4664130 frames_64_octets: 2624 frames_65_to_127_octets: 1187529 frames_128_to_255_octets: 82423763 frames_256_to_511_octets: 119324540 frames_512_to_1023_octets: 731053932 frames_1024_to_max_octets: 26321109 excessive_collision: 0 multicast_frames_sent: 253253579 broadcast_frames_sent: 8665 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13024 fragments: 0 oversize: 18810 jabber: 0 rx_error_frame_received: 0 bad_crc: 9061 collisions: 0 late_collision: 0 unicast_frames_received: 625492691 unicast_frames_sent: 73453659 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 146366524595 INFO asyncssh:logging.py:92 [conn=132, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=29] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=132, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=30] Command: ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=132, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=30] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 305690073757 bad_octets_received: 27089300 mac_trans_error: 0 broadcast_frames_received: 1794773 multicast_frames_received: 2439798 frames_64_octets: 1872 frames_65_to_127_octets: 1187162 frames_128_to_255_octets: 118882668 frames_256_to_511_octets: 882 frames_512_to_1023_octets: 826578540 frames_1024_to_max_octets: 25125838 excessive_collision: 0 multicast_frames_sent: 357564213 broadcast_frames_sent: 4690 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13024 fragments: 0 oversize: 18810 jabber: 0 rx_error_frame_received: 0 bad_crc: 1 collisions: 0 late_collision: 0 unicast_frames_received: 499561188 unicast_frames_sent: 110412299 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 205288272818 INFO asyncssh:logging.py:92 [conn=132, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=31] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=132, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=32] Command: ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=132, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=32] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 32859648316 bad_octets_received: 27089212 mac_trans_error: 0 broadcast_frames_received: 1794755 multicast_frames_received: 2439802 frames_64_octets: 1872 frames_65_to_127_octets: 1187252 frames_128_to_255_octets: 109960430 frames_256_to_511_octets: 882 frames_512_to_1023_octets: 139184356 frames_1024_to_max_octets: 25125838 excessive_collision: 0 multicast_frames_sent: 136988485 broadcast_frames_sent: 4706 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13024 fragments: 0 oversize: 18810 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 31425658 unicast_frames_sent: 102807224 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 91243415074 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e3cca30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:8 SIP-DIP 1.1.1.2-4.4.4.2 Tx 4590 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 SIP-DIP 2.2.2.2-3.3.3.2 Tx 4590 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:7 <-> 10.36.118.199:1:6 SIP-DIP 3.3.3.2-2.2.2.2 Tx 4590 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:8 <-> 10.36.118.199:1:5 SIP-DIP 4.4.4.2-1.1.1.2 Tx 4590 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_oversized_mtu from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py INFO asyncssh:logging.py:92 [conn=132, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=33] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=132, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=34] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=132, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=34] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=132, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=35] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=36] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:20:56 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=132, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=37] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=38] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:20:56 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=132, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=132, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=40] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=132, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=132, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=132, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=42] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=132, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=42] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=132, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=132, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=44] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=132, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=44] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=132, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 mtu 1500 && ip link set dev swp2 mtu 1500 && ip link set dev swp3 mtu 1500 && ip link set dev swp4 mtu 1500 INFO asyncssh:logging.py:92 [conn=132, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=46] Command: ip link set dev swp1 mtu 1500 && ip link set dev swp2 mtu 1500 && ip link set dev swp3 mtu 1500 && ip link set dev swp4 mtu 1500 INFO asyncssh:logging.py:92 [conn=132, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=46] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_routing.py::test_ipv4_random_routing 162.24
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7308' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_random_routing">Starting testcase:test_ipv4_random_routing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=133, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=134] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=134] Local address: 172.17.0.3, port 45510 INFO asyncssh:logging.py:92 [conn=134] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=134] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=134] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=134, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:23:18 AM UTC INFO asyncssh:logging.py:92 [conn=134, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=134, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=134, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=134, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=134, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=134, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=134, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=134, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:23:18 AM UTC INFO asyncssh:logging.py:92 [conn=134, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=134, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=134, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=134, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 28.65.19.41/15 dev swp1 && ip address add 92.214.47.130/14 dev swp2 && ip address add 98.114.236.35/9 dev swp3 && ip address add 23.245.22.86/8 dev swp4 INFO asyncssh:logging.py:92 [conn=134, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=10] Command: ip address add 28.65.19.41/15 dev swp1 && ip address add 92.214.47.130/14 dev swp2 && ip address add 98.114.236.35/9 dev swp3 && ip address add 23.245.22.86/8 dev swp4 INFO asyncssh:logging.py:92 [conn=134, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_28.65.19.40/15', 'count': 1, 'ip': '28.65.19.40', 'gw': '28.65.19.41', 'plen': 15, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_92.214.47.131/14', 'count': 1, 'ip': '92.214.47.131', 'gw': '92.214.47.130', 'plen': 14, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_98.114.236.34/9', 'count': 1, 'ip': '98.114.236.34', 'gw': '98.114.236.35', 'plen': 9, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_23.245.22.87/8', 'count': 1, 'ip': '23.245.22.87', 'gw': '23.245.22.86', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_28.65.19.40/15 to 10.36.118.199:1:6_92.214.47.131/14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_28.65.19.40/15 to 10.36.118.199:1:7_98.114.236.34/9 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_28.65.19.40/15 to 10.36.118.199:1:8_23.245.22.87/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_92.214.47.131/14 to 10.36.118.199:1:5_28.65.19.40/15 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_92.214.47.131/14 to 10.36.118.199:1:7_98.114.236.34/9 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_92.214.47.131/14 to 10.36.118.199:1:8_23.245.22.87/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_98.114.236.34/9 to 10.36.118.199:1:5_28.65.19.40/15 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_98.114.236.34/9 to 10.36.118.199:1:6_92.214.47.131/14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_98.114.236.34/9 to 10.36.118.199:1:8_23.245.22.87/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:8_23.245.22.87/8 to 10.36.118.199:1:5_28.65.19.40/15 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:8_23.245.22.87/8 to 10.36.118.199:1:6_92.214.47.131/14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:8_23.245.22.87/8 to 10.36.118.199:1:7_98.114.236.34/9 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_28.65.19.40/15 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_92.214.47.131/14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_98.114.236.34/9 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_23.245.22.87/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e39a080>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI ipv4 SIP-DIP 28.65.19.40-23.245.22.87 Tx 4487 Rx 4487 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI ipv4 SIP-DIP 28.65.19.40-92.214.47.131 Tx 4488 Rx 4488 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI ipv4 SIP-DIP 28.65.19.40-98.114.236.34 Tx 4488 Rx 4488 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:8 TI ipv4 #1 SIP-DIP 92.214.47.131-23.245.22.87 Tx 4487 Rx 4487 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI ipv4 #1 SIP-DIP 92.214.47.131-28.65.19.40 Tx 4488 Rx 4488 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI ipv4 #1 SIP-DIP 92.214.47.131-98.114.236.34 Tx 4488 Rx 4488 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:8 TI ipv4 #2 SIP-DIP 98.114.236.34-23.245.22.87 Tx 4487 Rx 4487 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI ipv4 #2 SIP-DIP 98.114.236.34-28.65.19.40 Tx 4488 Rx 4488 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI ipv4 #2 SIP-DIP 98.114.236.34-92.214.47.131 Tx 4488 Rx 4488 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI ipv4 #3 SIP-DIP 23.245.22.87-28.65.19.40 Tx 4488 Rx 4488 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:6 TI ipv4 #3 SIP-DIP 23.245.22.87-92.214.47.131 Tx 4488 Rx 4488 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:7 TI ipv4 #3 SIP-DIP 23.245.22.87-98.114.236.34 Tx 4487 Rx 4487 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_random_routing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=134, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=134, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=134, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=134, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=134, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:25:58 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=134, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=134, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:25:59 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=134, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=134, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=18] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=134, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=134, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=134, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=134, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=134, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=134, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=22] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=134, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_routing.py::test_ipv4_nexthop_route 125.52
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7342' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_nexthop_route">Starting testcase:test_ipv4_nexthop_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=134, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=135] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=135] Local address: 172.17.0.3, port 36376 INFO asyncssh:logging.py:92 [conn=135] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=135] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=135] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=135, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:26:00 AM UTC INFO asyncssh:logging.py:92 [conn=135, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=135, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=135, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=135, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=135, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=135, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=135, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=135, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:26:01 AM UTC INFO asyncssh:logging.py:92 [conn=135, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=135, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=135, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 INFO asyncssh:logging.py:92 [conn=135, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 INFO asyncssh:logging.py:92 [conn=135, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=135, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 1.1.1.5 lladdr aa:bb:cc:dd:ee:01 dev swp1 && ip neigh add 2.2.2.5 lladdr aa:bb:cc:dd:ee:02 dev swp2 INFO asyncssh:logging.py:92 [conn=135, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=12] Command: ip neigh add 1.1.1.5 lladdr aa:bb:cc:dd:ee:01 dev swp1 && ip neigh add 2.2.2.5 lladdr aa:bb:cc:dd:ee:02 dev swp2 INFO asyncssh:logging.py:92 [conn=135, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 16.0.0.0/24 nexthop via 2.2.2.5 INFO asyncssh:logging.py:92 [conn=135, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=14] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 16.0.0.0/24 nexthop via 2.2.2.5 INFO asyncssh:logging.py:92 [conn=135, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=135, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=16] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=135, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=16] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=135, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=135, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=18] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=135, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=135, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=135, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=20] Command: bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=135, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=20] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp2 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=135, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=135, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=22] Command: ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=135, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp2","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp2 ', 'rc': 0, 'result': '[{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp2","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:6 -> 10.36.118.199:1:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e616ef0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 -> 10.36.118.199:1:6 Tx 4511 Rx 4511 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:6 -> 10.36.118.199:1:5 Tx 4511 Rx 4511 Frames Delta 0 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_nexthop_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=135, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=23] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=135, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=135, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=24] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=135, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=135, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:28:04 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=135, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=135, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=28] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:28:04 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=135, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=135, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=30] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=135, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=135, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=135, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=135, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=135, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=34] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=135, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=34] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_routing.py::test_ipv4_route_between_vlan_devs 139.98
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7389' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_route_between_vlan_devs">Starting testcase:test_ipv4_route_between_vlan_devs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=135, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=136] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=136] Local address: 172.17.0.3, port 46234 INFO asyncssh:logging.py:92 [conn=136] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=136] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=136] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:28:06 AM UTC INFO asyncssh:logging.py:92 [conn=136, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=136, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=136, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=136, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=136, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=136, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:28:06 AM UTC INFO asyncssh:logging.py:92 [conn=136, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=136, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=8] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=136, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master br0 && ip link set dev swp2 master br0 INFO asyncssh:logging.py:92 [conn=136, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=10] Command: ip link set dev swp1 master br0 && ip link set dev swp2 master br0 INFO asyncssh:logging.py:92 [conn=136, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 10 && bridge vlan add dev swp2 vid 20 && bridge vlan add dev br0 vid 10 self && bridge vlan add dev br0 vid 20 self INFO asyncssh:logging.py:92 [conn=136, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=12] Command: bridge vlan add dev swp1 vid 10 && bridge vlan add dev swp2 vid 20 && bridge vlan add dev br0 vid 10 self && bridge vlan add dev br0 vid 20 self INFO asyncssh:logging.py:92 [conn=136, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link add link br0 name br0.10 type vlan id 10 && ip link add link br0 name br0.20 type vlan id 20 INFO asyncssh:logging.py:92 [conn=136, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=14] Command: ip link add link br0 name br0.10 type vlan id 10 && ip link add link br0 name br0.20 type vlan id 20 INFO asyncssh:logging.py:92 [conn=136, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev br0 up && ip link set dev br0.10 up && ip link set dev br0.20 up INFO asyncssh:logging.py:92 [conn=136, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=16] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev br0 up && ip link set dev br0.10 up && ip link set dev br0.20 up INFO asyncssh:logging.py:92 [conn=136, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=136, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=18] Command: ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=136, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 10, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': 20, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=136, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=136, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=20] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=136, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"br0.10","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"br0.20","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2.2.2.2/24 to 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e761de0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 1.1.1.2-2.2.2.2 Tx 4502 Rx 4502 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI traffic #1 SIP-DIP 2.2.2.2-1.1.1.2 Tx 4502 Rx 4502 Loss 0.000 INFO asyncssh:logging.py:92 [conn=136, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip address flush br0.10 && ip address flush br0.20 INFO asyncssh:logging.py:92 [conn=136, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=22] Command: ip address flush br0.10 && ip address flush br0.20 INFO asyncssh:logging.py:92 [conn=136, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=136, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=24] Command: ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=136, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=136, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=136, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=26] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=136, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"br0.10","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"br0.20","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6ebee0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 1.1.1.2-2.2.2.2 Tx 8091 Rx 8091 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI traffic #1 SIP-DIP 2.2.2.2-1.1.1.2 Tx 8091 Rx 8091 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_route_between_vlan_devs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=136, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=27] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=136, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=136, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=28] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:30:24 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=32] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:30:24 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=136, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=136, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=34] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=136, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=136, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=136, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":109,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":110,"link":"br0","ifname":"br0.10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":111,"link":"br0","ifname":"br0.20","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=136, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=136, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=38] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=136, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=39] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=40] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:30:25 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=136, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=136, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=42] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=136, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=42] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":109,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=136, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=136, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=44] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=136, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=44] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_routing.py::test_ipv4_nexthop_static_route 148.14
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7447' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_nexthop_static_route">Starting testcase:test_ipv4_nexthop_static_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=137] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=137] Local address: 172.17.0.3, port 42530 INFO asyncssh:logging.py:92 [conn=137] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=137] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=137] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=137, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:30:26 AM UTC INFO asyncssh:logging.py:92 [conn=137, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=137, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=137, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=137, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=137, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=137, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=137, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=137, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:30:26 AM UTC INFO asyncssh:logging.py:92 [conn=137, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=137, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=8] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=137, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=8] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=137, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=137, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=10] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=137, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=137, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=137, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=12] Command: bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=137, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=12] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp2 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=137, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=137, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=14] Command: ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=137, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp2 ', 'rc': 0, 'result': '[{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=137, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp3 INFO asyncssh:logging.py:92 [conn=137, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=16] Command: bridge -j vlan show dev swp3 INFO asyncssh:logging.py:92 [conn=137, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=16] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp3 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=137, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp3 INFO asyncssh:logging.py:92 [conn=137, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=18] Command: ip -j address show swp3 INFO asyncssh:logging.py:92 [conn=137, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp3 ', 'rc': 0, 'result': '[{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=137, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp4 INFO asyncssh:logging.py:92 [conn=137, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=20] Command: bridge -j vlan show dev swp4 INFO asyncssh:logging.py:92 [conn=137, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=20] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp4 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=137, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp4 INFO asyncssh:logging.py:92 [conn=137, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=22] Command: ip -j address show swp4 INFO asyncssh:logging.py:92 [conn=137, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp4 ', 'rc': 0, 'result': '[{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=137, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=137, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=24] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=137, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=137, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=26] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=137, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=137, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip route add 100.0.0.1 nexthop via 1.1.1.2 dev swp1 && ip route add 101.0.0.1 nexthop via 2.2.2.2 dev swp2 INFO asyncssh:logging.py:92 [conn=137, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=28] Command: ip route add 100.0.0.1 nexthop via 1.1.1.2 dev swp1 && ip route add 101.0.0.1 nexthop via 2.2.2.2 dev swp2 INFO asyncssh:logging.py:92 [conn=137, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=137, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=30] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=137, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp2","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp3","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp4","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"dst":"100.0.0.1","gateway":"1.1.1.2","dev":"swp1","flags":["trap","rt_offload"]},{"dst":"101.0.0.1","gateway":"2.2.2.2","dev":"swp2","flags":["trap","rt_offload"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:8 -> 10.36.118.199:1:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 -> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=137, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=32] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip route delete 100.0.0.1 dev swp1 && ip route delete 101.0.0.1 dev swp2 INFO asyncssh:logging.py:92 [conn=137, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=34] Command: ip route delete 100.0.0.1 dev swp1 && ip route delete 101.0.0.1 dev swp2 INFO asyncssh:logging.py:92 [conn=137, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=137, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=36] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=137, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp2","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp3","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp4","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=137, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 4.4.4.2 dev swp4 INFO asyncssh:logging.py:92 [conn=137, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=38] Command: ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 4.4.4.2 dev swp4 INFO asyncssh:logging.py:92 [conn=137, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=40] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"4.4.4.2","dev":"swp4","state":["FAILED"]},{"dst":"2.2.2.2","dev":"swp2","state":["FAILED"]},{"dst":"3.3.3.2","dev":"swp3","state":["FAILED"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.1.1.2","dev":"swp1","state":["FAILED"]}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_nexthop_static_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=137, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=41] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=137, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=42] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=137, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=42] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=137, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=43] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=137, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=44] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:32:47 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=137, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=45] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=137, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=46] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:32:52 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=137, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=137, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=48] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=137, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=49] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=137, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=50] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=137, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=50] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=137, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=137, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=52] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=137, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=52] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv4/test_ipv4_routing.py::test_ipv4_two_routes_to_same_net 136.08
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7511' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_two_routes_to_same_net">Starting testcase:test_ipv4_two_routes_to_same_net from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=137, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=138] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=138] Local address: 172.17.0.3, port 56498 INFO asyncssh:logging.py:92 [conn=138] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=138] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=138] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=138, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:32:54 AM UTC INFO asyncssh:logging.py:92 [conn=138, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=138, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=138, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=138, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=138, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=138, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=138, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=138, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:32:54 AM UTC INFO asyncssh:logging.py:92 [conn=138, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=138, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=138, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=138, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 INFO asyncssh:logging.py:92 [conn=138, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 INFO asyncssh:logging.py:92 [conn=138, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip route add 2.2.2.0/24 nexthop via 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=138, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=12] Command: ip route add 2.2.2.0/24 nexthop via 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=138, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip address add 2.2.2.1/24 dev swp2 INFO asyncssh:logging.py:92 [conn=138, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=14] Command: ip address add 2.2.2.1/24 dev swp2 INFO asyncssh:logging.py:92 [conn=138, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=138, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=16] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=138, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","gateway":"1.1.1.2","dev":"swp1","flags":["trap","rt_offload"]},{"dst":"2.2.2.0/24","dev":"swp2","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":[]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file /tmp/ixia/tgen_ipv4_two_routes_to_same_net_config.ixncfg INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e7327d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 -> 10.36.118.199:1:6 Tx 7991 Rx 0 Frames Delta 7991 Loss 100.000 INFO asyncssh:logging.py:92 [conn=138, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address delete 2.2.2.1/24 dev swp2 INFO asyncssh:logging.py:92 [conn=138, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=18] Command: ip address delete 2.2.2.1/24 dev swp2 INFO asyncssh:logging.py:92 [conn=138, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=138, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=20] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=138, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","gateway":"1.1.1.2","dev":"swp1","flags":["offload","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e3bb220>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 21806 Rx 21808 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 2
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_two_routes_to_same_net from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=138, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=21] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=138, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=22] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=138, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=22] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=138, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=138, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:35:08 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=138, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=138, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:35:08 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=138, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=138, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=28] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=138, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=138, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=138, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=138, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=138, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=32] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=138, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=32] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv6/test_ipv6.py::test_ipv6_basic_config 141.30
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7554' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_basic_config">Starting testcase:test_ipv6_basic_config from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=138, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=139] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=139] Local address: 172.17.0.3, port 49708 INFO asyncssh:logging.py:92 [conn=139] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=139] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=139] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=139, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:35:10 AM UTC INFO asyncssh:logging.py:92 [conn=139, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=139, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=139, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=139, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=139, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=139, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=139, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=139, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:35:10 AM UTC INFO asyncssh:logging.py:92 [conn=139, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=139, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=139, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1111:10:1::1/64 dev swp1 && ip address add 2001:2222:20:2::1/64 dev swp1 && ip address add 2001:3333:30:3::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=139, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=10] Command: ip address add 2001:1111:10:1::1/64 dev swp1 && ip address add 2001:2222:20:2::1/64 dev swp1 && ip address add 2001:3333:30:3::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=139, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111:10:1::2/64', 'count': 1, 'ip': '2001:1111:10:1::2', 'gw': '2001:1111:10:1::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:2222:20:2::2/64', 'count': 1, 'ip': '2001:2222:20:2::2', 'gw': '2001:2222:20:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:3333:30:3::2/64', 'count': 1, 'ip': '2001:3333:30:3::2', 'gw': '2001:3333:30:3::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=139, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=139, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=12] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=139, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.44","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","dynamic":true,"label":"ma1","valid_life_time":406,"preferred_life_time":406},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3804","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222:20:2::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111:10:1::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333:30:3::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=139, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=139, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=14] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=139, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=139, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=139, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=16] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=139, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"2001:1111:10:1::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222:20:2::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333:30:3::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:3333:30:3::2/64 to 10.36.118.199:1:5_2001:1111:10:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:3333:30:3::2/64 to 10.36.118.199:1:5_2001:2222:20:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111:10:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:2222:20:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:3333:30:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e760520>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:1111:10:1:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 44600 Rx 44600 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:2222:20:2:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 44600 Rx 44600 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:1111:10:1:0:0:0:2 Tx 44600 Rx 44600 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:2222:20:2:0:0:0:2 Tx 44600 Rx 44600 Loss 0.000 INFO asyncssh:logging.py:92 [conn=139, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=139, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=18] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=139, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=139, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=139, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=20] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=139, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:2222:20:2::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111:10:1::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2001:3333:30:3::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=139, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip address delete 2001:1111:10:1::1/64 dev swp1 && ip address delete 2001:2222:20:2::1/64 dev swp1 && ip address delete 2001:3333:30:3::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=139, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=22] Command: ip address delete 2001:1111:10:1::1/64 dev swp1 && ip address delete 2001:2222:20:2::1/64 dev swp1 && ip address delete 2001:3333:30:3::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=139, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e7601f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:1111:10:1:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 80234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:2222:20:2:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 80233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:1111:10:1:0:0:0:2 Tx 80234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:2222:20:2:0:0:0:2 Tx 80233 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_basic_config from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=139, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=23] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=139, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=24] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=139, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=24] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=139, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=139, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:37:30 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=139, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=139, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=28] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=139, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=139, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=139, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=139, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=139, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=32] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=139, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=32] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv6/test_ipv6.py::test_ipv6_flags 167.16
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7598' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_flags">Starting testcase:test_ipv6_flags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=139, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=140] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=140] Local address: 172.17.0.3, port 47726 INFO asyncssh:logging.py:92 [conn=140] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=140] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=140] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=140, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:37:32 AM UTC INFO asyncssh:logging.py:92 [conn=140, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=140, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=140, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=140, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=140, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=140, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=140, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=140, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:37:32 AM UTC INFO asyncssh:logging.py:92 [conn=140, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=140, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=140, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address change 2001:1111::1/64 dev swp1 valid_lft 960 preferred_lft 900 && ip address change 2001:2222::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=140, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=10] Command: ip address change 2001:1111::1/64 dev swp1 valid_lft 960 preferred_lft 900 && ip address change 2001:2222::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=140, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address replace 2001:3333::1/64 dev swp1 && ip address replace 2001:4444::1/64 dev swp2 valid_lft 960 preferred_lft 900 INFO asyncssh:logging.py:92 [conn=140, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=12] Command: ip address replace 2001:3333::1/64 dev swp1 && ip address replace 2001:4444::1/64 dev swp2 valid_lft 960 preferred_lft 900 INFO asyncssh:logging.py:92 [conn=140, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=14] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.44","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","dynamic":true,"label":"ma1","valid_life_time":595,"preferred_life_time":595},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3804","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","tentative":true,"dynamic":true,"valid_life_time":960,"preferred_life_time":900},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:4444::1","prefixlen":64,"scope":"global","tentative":true,"dynamic":true,"valid_life_time":960,"preferred_life_time":900},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1111::2/64 to 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1111::2/64 to 10.36.118.199:1:6_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:3333::2/64 to 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:3333::2/64 to 10.36.118.199:1:6_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e760520>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 44169 Rx 44169 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 44169 Rx 44169 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 44169 Rx 44169 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 44169 Rx 44169 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 44169 Rx 44169 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 44169 Rx 44169 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 44169 Rx 44169 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 44169 Rx 44169 Loss 0.000 INFO asyncssh:logging.py:92 [conn=140, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=16] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.44","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","dynamic":true,"label":"ma1","valid_life_time":471,"preferred_life_time":471},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3804","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","dynamic":true,"valid_life_time":836,"preferred_life_time":776},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:4444::1","prefixlen":64,"scope":"global","dynamic":true,"valid_life_time":836,"preferred_life_time":776},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=140, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address change 2001:1111::1/64 dev swp1 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=18] Command: ip address change 2001:1111::1/64 dev swp1 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip address replace 2001:4444::1/64 dev swp2 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=20] Command: ip address replace 2001:4444::1/64 dev swp2 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e617c10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 80855 Rx 80855 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 80855 Rx 80855 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 80855 Rx 80855 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 80855 Rx 80855 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 80855 Rx 80855 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 80855 Rx 80855 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 80855 Rx 80855 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 80855 Rx 80855 Loss 0.000 INFO asyncssh:logging.py:92 [conn=140, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=22] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.44","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","dynamic":true,"label":"ma1","valid_life_time":453,"preferred_life_time":453},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3804","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","deprecated":true,"dynamic":true,"valid_life_time":103,"preferred_life_time":0},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:4444::1","prefixlen":64,"scope":"global","deprecated":true,"dynamic":true,"valid_life_time":103,"preferred_life_time":0},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=140, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip address change 2001:1111::1/64 dev swp1 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=24] Command: ip address change 2001:1111::1/64 dev swp1 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip address replace 2001:4444::1/64 dev swp2 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=26] Command: ip address replace 2001:4444::1/64 dev swp2 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=28] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.44","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","dynamic":true,"label":"ma1","valid_life_time":448,"preferred_life_time":448},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3804","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=140, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip neigh flush dev swp1 && ip neigh flush dev swp2 && ip neigh flush dev swp1 && ip neigh flush dev swp2 INFO asyncssh:logging.py:92 [conn=140, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=30] Command: ip neigh flush dev swp1 && ip neigh flush dev swp2 && ip neigh flush dev swp1 && ip neigh flush dev swp2 INFO asyncssh:logging.py:92 [conn=140, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e616770>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 79801 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 79800 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 79801 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 79800 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 79801 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 79801 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 79800 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 79800 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_flags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=140, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=31] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=140, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=32] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=140, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=32] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=140, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=33] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=140, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=34] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:40:17 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=140, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=140, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=36] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=140, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=140, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=140, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=140, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=140, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=40] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=140, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=40] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv6/test_ipv6.py::test_ipv6_secondary_addr 194.08
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7650' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_secondary_addr">Starting testcase:test_ipv6_secondary_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=140, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=141] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=141] Local address: 172.17.0.3, port 55780 INFO asyncssh:logging.py:92 [conn=141] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=141] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=141] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=141, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:40:19 AM UTC INFO asyncssh:logging.py:92 [conn=141, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=141, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=141, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=141, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=141, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=141, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=141, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=141, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:40:19 AM UTC INFO asyncssh:logging.py:92 [conn=141, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=7] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.neigh.swp1.base_reachable_time_ms&& sysctl net.ipv6.neigh.swp2.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=141, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=8] Command: sysctl net.ipv6.neigh.swp1.base_reachable_time_ms&& sysctl net.ipv6.neigh.swp2.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=141, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=8] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.neigh.swp1.base_reachable_time_ms = 30000 net.ipv6.neigh.swp2.base_reachable_time_ms = 30000 INFO asyncssh:logging.py:92 [conn=141, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=9] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.neigh.swp1.base_reachable_time_ms=150000&& sysctl net.ipv6.neigh.swp2.base_reachable_time_ms=150000 INFO asyncssh:logging.py:92 [conn=141, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=10] Command: sysctl net.ipv6.neigh.swp1.base_reachable_time_ms=150000&& sysctl net.ipv6.neigh.swp2.base_reachable_time_ms=150000 INFO asyncssh:logging.py:92 [conn=141, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=10] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.neigh.swp1.base_reachable_time_ms = 150000 net.ipv6.neigh.swp2.base_reachable_time_ms = 150000 INFO asyncssh:logging.py:92 [conn=141, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=141, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=12] Command: ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=141, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=141, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 && ip address add 2001:1111::3/64 dev swp1 && ip address add 2001:2222::3/64 dev swp2 && ip address add 2001:1111::5/64 dev swp1 && ip address add 2001:2222::5/64 dev swp2 INFO asyncssh:logging.py:92 [conn=141, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=14] Command: ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 && ip address add 2001:1111::3/64 dev swp1 && ip address add 2001:2222::3/64 dev swp2 && ip address add 2001:1111::5/64 dev swp1 && ip address add 2001:2222::5/64 dev swp2 INFO asyncssh:logging.py:92 [conn=141, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::4/64', 'count': 1, 'ip': '2001:1111::4', 'gw': '2001:1111::3', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::6/64', 'count': 1, 'ip': '2001:1111::6', 'gw': '2001:1111::5', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2222::4/64', 'count': 1, 'ip': '2001:2222::4', 'gw': '2001:2222::3', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2222::6/64', 'count': 1, 'ip': '2001:2222::6', 'gw': '2001:2222::5', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=141, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=16] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.44","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","dynamic":true,"label":"ma1","valid_life_time":350,"preferred_life_time":350},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3804","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::3","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::3","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=141, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=141, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=18] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=141, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=141, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=141, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=20] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=141, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5_2001:1111::2/64 <-> 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1111::2/64 to 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5_2001:1111::4/64 <-> 10.36.118.199:1:6_2001:2222::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1111::4/64 to 10.36.118.199:1:6_2001:2222::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5_2001:1111::6/64 <-> 10.36.118.199:1:6_2001:2222::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1111::6/64 to 10.36.118.199:1:6_2001:2222::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6eb8e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5_2001:1111::2/64 <-> 10.36.118.199:1:6_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 44570 Rx 44570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5_2001:1111::2/64 <-> 10.36.118.199:1:6_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 44570 Rx 44570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5_2001:1111::4/64 <-> 10.36.118.199:1:6_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 44570 Rx 44570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5_2001:1111::4/64 <-> 10.36.118.199:1:6_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 44570 Rx 44570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5_2001:1111::6/64 <-> 10.36.118.199:1:6_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 44570 Rx 44570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5_2001:1111::6/64 <-> 10.36.118.199:1:6_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 44570 Rx 44570 Loss 0.000 INFO asyncssh:logging.py:92 [conn=141, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=141, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=22] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=141, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=141, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=141, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=24] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=141, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:1111::4","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::6","dev":"swp1","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp1","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::215:1ff:fe00:1","dev":"swp2","lladdr":"00:15:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::4","dev":"swp2","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::6","dev":"swp2","lladdr":"00:16:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::216:1ff:fe00:1","dev":"swp2","lladdr":"00:16:01:00:00:01","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=141, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip address delete 2001:1111::3/64 dev swp1 && ip address delete 2001:2222::3/64 dev swp2 INFO asyncssh:logging.py:92 [conn=141, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=26] Command: ip address delete 2001:1111::3/64 dev swp1 && ip address delete 2001:2222::3/64 dev swp2 INFO asyncssh:logging.py:92 [conn=141, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=141, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=28] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.44","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","dynamic":true,"label":"ma1","valid_life_time":545,"preferred_life_time":545},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3804","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e3b88e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5_2001:1111::2/64 <-> 10.36.118.199:1:6_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 81127 Rx 81127 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5_2001:1111::2/64 <-> 10.36.118.199:1:6_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 81127 Rx 81127 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5_2001:1111::4/64 <-> 10.36.118.199:1:6_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 81127 Rx 81127 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5_2001:1111::4/64 <-> 10.36.118.199:1:6_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 81127 Rx 81127 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5_2001:1111::6/64 <-> 10.36.118.199:1:6_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 81127 Rx 81127 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5_2001:1111::6/64 <-> 10.36.118.199:1:6_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 81127 Rx 81127 Loss 0.000 INFO asyncssh:logging.py:92 [conn=141, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip address delete 2001:1111::5/64 dev swp1 && ip address delete 2001:2222::5/64 dev swp2 && ip address delete 2001:1111::1/64 dev swp1 && ip address delete 2001:2222::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=141, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=30] Command: ip address delete 2001:1111::5/64 dev swp1 && ip address delete 2001:2222::5/64 dev swp2 && ip address delete 2001:1111::1/64 dev swp1 && ip address delete 2001:2222::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=141, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=141, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=32] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.44","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","dynamic":true,"label":"ma1","valid_life_time":527,"preferred_life_time":527},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3804","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e7638b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5_2001:1111::2/64 <-> 10.36.118.199:1:6_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 80825 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5_2001:1111::2/64 <-> 10.36.118.199:1:6_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 80825 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5_2001:1111::4/64 <-> 10.36.118.199:1:6_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 80825 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5_2001:1111::4/64 <-> 10.36.118.199:1:6_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 80825 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5_2001:1111::6/64 <-> 10.36.118.199:1:6_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 80825 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5_2001:1111::6/64 <-> 10.36.118.199:1:6_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 80825 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=141, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 && ip address add 2001:1111::3/64 dev swp1 && ip address add 2001:2222::3/64 dev swp2 && ip address add 2001:1111::5/64 dev swp1 && ip address add 2001:2222::5/64 dev swp2 INFO asyncssh:logging.py:92 [conn=141, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=34] Command: ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 && ip address add 2001:1111::3/64 dev swp1 && ip address add 2001:2222::3/64 dev swp2 && ip address add 2001:1111::5/64 dev swp1 && ip address add 2001:2222::5/64 dev swp2 INFO asyncssh:logging.py:92 [conn=141, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=141, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=36] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.44","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","dynamic":true,"label":"ma1","valid_life_time":519,"preferred_life_time":519},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3804","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::5","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::3","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::5","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::3","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e3b89a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5_2001:1111::2/64 <-> 10.36.118.199:1:6_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 80779 Rx 80779 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5_2001:1111::2/64 <-> 10.36.118.199:1:6_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 80779 Rx 80779 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5_2001:1111::4/64 <-> 10.36.118.199:1:6_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 80779 Rx 80779 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5_2001:1111::4/64 <-> 10.36.118.199:1:6_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 80779 Rx 80779 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5_2001:1111::6/64 <-> 10.36.118.199:1:6_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 80779 Rx 80779 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5_2001:1111::6/64 <-> 10.36.118.199:1:6_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 80779 Rx 80779 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_secondary_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=141, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=37] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.swp1.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.swp2.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=141, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=38] Command: sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.swp1.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.swp2.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=141, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=38] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 net.ipv6.neigh.swp1.base_reachable_time_ms = 30000 net.ipv6.neigh.swp2.base_reachable_time_ms = 30000 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=141, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=39] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=141, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=40] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:43:31 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=141, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=141, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=42] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=141, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=141, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=141, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=44] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=141, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=44] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=141, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=141, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=46] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=141, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=46] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv6/test_ipv6_bridge.py::test_ipv6_on_bridge 170.22
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7708' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_on_bridge">Starting testcase:test_ipv6_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=141, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=142] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=142] Local address: 172.17.0.3, port 33712 INFO asyncssh:logging.py:92 [conn=142] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=142] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=142] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=142, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:43:33 AM UTC INFO asyncssh:logging.py:92 [conn=142, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=142, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=142, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=142, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=142, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=142, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=142, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=142, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:43:33 AM UTC INFO asyncssh:logging.py:92 [conn=142, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 0 && ip link add br1 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=142, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=8] Command: ip link add br0 type bridge vlan_filtering 0 && ip link add br1 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=142, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=142, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br1 && ip link set dev br0 up && ip link set dev br1 up INFO asyncssh:logging.py:92 [conn=142, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br1 && ip link set dev br0 up && ip link set dev br1 up INFO asyncssh:logging.py:92 [conn=142, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=142, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev br0 && ip address add 2001:3333::1/64 dev br1 && ip address add 2001:4444::1/64 dev swp1 && ip address add 2001:5555::1/64 dev br0 && ip address add 2001:6666::1/64 dev br1 INFO asyncssh:logging.py:92 [conn=142, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=12] Command: ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev br0 && ip address add 2001:3333::1/64 dev br1 && ip address add 2001:4444::1/64 dev swp1 && ip address add 2001:5555::1/64 dev br0 && ip address add 2001:6666::1/64 dev br1 INFO asyncssh:logging.py:92 [conn=142, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:5555::2/64', 'count': 1, 'ip': '2001:5555::2', 'gw': '2001:5555::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_2001:6666::2/64', 'count': 1, 'ip': '2001:6666::2', 'gw': '2001:6666::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1111::2/64 to 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1111::2/64 to 10.36.118.199:1:6_2001:5555::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:4444::2/64 to 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:4444::2/64 to 10.36.118.199:1:6_2001:5555::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1111::2/64 to 10.36.118.199:1:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1111::2/64 to 10.36.118.199:1:7_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:4444::2/64 to 10.36.118.199:1:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:4444::2/64 to 10.36.118.199:1:7_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:6 <-> 10.36.118.199:1:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:2222::2/64 to 10.36.118.199:1:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:2222::2/64 to 10.36.118.199:1:7_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:5555::2/64 to 10.36.118.199:1:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:5555::2/64 to 10.36.118.199:1:7_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:5555::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=142, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=142, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=14] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=142, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=142, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=142, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=16] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=142, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"br1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:5555::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:6666::/64","dev":"br1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"br0","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"br1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e3ba950>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 45060 Rx 45060 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 45059 Rx 45059 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 45060 Rx 45060 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 45059 Rx 45059 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 45060 Rx 45060 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 45060 Rx 45060 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 45059 Rx 45059 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 45059 Rx 45059 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 45060 Rx 45060 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 45059 Rx 45059 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 45060 Rx 45060 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 45059 Rx 45059 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 45060 Rx 45060 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 45060 Rx 45060 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 45059 Rx 45059 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 #1 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 45059 Rx 45059 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 45060 Rx 45060 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 45059 Rx 45059 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 45060 Rx 45060 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 45059 Rx 45059 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 45060 Rx 45060 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 #1 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 45060 Rx 45060 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 #1 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 45059 Rx 45059 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 #1 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 45059 Rx 45059 Loss 0.000 INFO asyncssh:logging.py:92 [conn=142, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=142, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=18] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=142, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=142, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=142, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=20] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=142, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:6666::2","dev":"br1","lladdr":"00:16:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::215:1ff:fe00:1","dev":"br1","lladdr":"00:15:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"br0","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::214:1ff:fe00:1","dev":"br0","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"2001:3333::2","dev":"br1","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::ae1f:6bff:fe0a:e7bb","dev":"ma1","lladdr":"ac:1f:6b:0a:e7:bb","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:5555::2","dev":"br0","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::213:1ff:fe00:1","dev":"br0","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::216:1ff:fe00:1","dev":"br1","lladdr":"00:16:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py INFO asyncssh:logging.py:92 [conn=142, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=142, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:46:21 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=142, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=142, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=142, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":112,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":113,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=142, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 && ip link delete br1 INFO asyncssh:logging.py:92 [conn=142, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=26] Command: ip link delete br0 && ip link delete br1 INFO asyncssh:logging.py:92 [conn=142, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=142, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=27] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=142, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=28] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=142, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=28] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=142, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=142, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:46:21 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=142, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=142, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=32] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=142, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=142, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=142, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=34] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=142, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=142, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=142, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=36] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=142, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=36] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv6/test_ipv6_bridge.py::test_ipv6_on_bridge_vlan 161.45
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7757' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_on_bridge_vlan">Starting testcase:test_ipv6_on_bridge_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=142, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=143] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=143] Local address: 172.17.0.3, port 58508 INFO asyncssh:logging.py:92 [conn=143] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=143] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=143] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=143, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:46:23 AM UTC INFO asyncssh:logging.py:92 [conn=143, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=143, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=143, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=143, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=143, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=143, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=143, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=143, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:46:24 AM UTC INFO asyncssh:logging.py:92 [conn=143, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=143, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=8] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=143, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 master br0 && ip link set dev swp3 master br0 INFO asyncssh:logging.py:92 [conn=143, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=10] Command: ip link set dev swp2 master br0 && ip link set dev swp3 master br0 INFO asyncssh:logging.py:92 [conn=143, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev br0 vid 2517 self && bridge vlan add dev br0 vid 920 self && bridge vlan add dev br0 vid 1746 self && bridge vlan add dev br0 vid 3250 self && bridge vlan add dev swp2 vid 2517 && bridge vlan add dev swp3 vid 920 && bridge vlan add dev swp2 vid 1746 && bridge vlan add dev swp3 vid 3250 INFO asyncssh:logging.py:92 [conn=143, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=12] Command: bridge vlan add dev br0 vid 2517 self && bridge vlan add dev br0 vid 920 self && bridge vlan add dev br0 vid 1746 self && bridge vlan add dev br0 vid 3250 self && bridge vlan add dev swp2 vid 2517 && bridge vlan add dev swp3 vid 920 && bridge vlan add dev swp2 vid 1746 && bridge vlan add dev swp3 vid 3250 INFO asyncssh:logging.py:92 [conn=143, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link add link br0 name br0.2517 type vlan id 2517 && ip link add link br0 name br0.920 type vlan id 920 && ip link add link br0 name br0.1746 type vlan id 1746 && ip link add link br0 name br0.3250 type vlan id 3250 INFO asyncssh:logging.py:92 [conn=143, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=14] Command: ip link add link br0 name br0.2517 type vlan id 2517 && ip link add link br0 name br0.920 type vlan id 920 && ip link add link br0 name br0.1746 type vlan id 1746 && ip link add link br0 name br0.3250 type vlan id 3250 INFO asyncssh:logging.py:92 [conn=143, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev br0.2517 up && ip link set dev br0.920 up && ip link set dev br0.1746 up && ip link set dev br0.3250 up INFO asyncssh:logging.py:92 [conn=143, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=16] Command: ip link set dev br0 up && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev br0.2517 up && ip link set dev br0.920 up && ip link set dev br0.1746 up && ip link set dev br0.3250 up INFO asyncssh:logging.py:92 [conn=143, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:10::1/64 dev br0.2517 && ip address add 2001:20::1/64 dev br0.920 && ip address add 2001:30::1/64 dev br0.1746 && ip address add 2001:40::1/64 dev br0.3250 && ip address add 2001:100::1/64 dev swp1 INFO asyncssh:logging.py:92 [conn=143, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=18] Command: ip address add 2001:10::1/64 dev br0.2517 && ip address add 2001:20::1/64 dev br0.920 && ip address add 2001:30::1/64 dev br0.1746 && ip address add 2001:40::1/64 dev br0.3250 && ip address add 2001:100::1/64 dev swp1 INFO asyncssh:logging.py:92 [conn=143, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:100::2/64', 'count': 1, 'ip': '2001:100::2', 'gw': '2001:100::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:10::2/64', 'count': 1, 'ip': '2001:10::2', 'gw': '2001:10::1', 'plen': 64, 'vlan': 2517, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:30::2/64', 'count': 1, 'ip': '2001:30::2', 'gw': '2001:30::1', 'plen': 64, 'vlan': 1746, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_2001:20::2/64', 'count': 1, 'ip': '2001:20::2', 'gw': '2001:20::1', 'plen': 64, 'vlan': 920, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_2001:40::2/64', 'count': 1, 'ip': '2001:40::2', 'gw': '2001:40::1', 'plen': 64, 'vlan': 3250, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:100::2/64 to 10.36.118.199:1:6_2001:10::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:100::2/64 to 10.36.118.199:1:6_2001:30::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:100::2/64 to 10.36.118.199:1:7_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:100::2/64 to 10.36.118.199:1:7_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:6 <-> 10.36.118.199:1:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:10::2/64 to 10.36.118.199:1:7_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:10::2/64 to 10.36.118.199:1:7_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:30::2/64 to 10.36.118.199:1:7_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:30::2/64 to 10.36.118.199:1:7_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:100::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:10::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:30::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e5df1f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:10:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 5036218 Rx 5036218 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:30:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 5036218 Rx 5036218 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:100:0:0:0:0:0:2-2001:10:0:0:0:0:0:2 Tx 44319 Rx 44319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:100:0:0:0:0:0:2-2001:30:0:0:0:0:0:2 Tx 44319 Rx 44319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 SIP-DIP 2001:20:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 5036218 Rx 5036218 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 SIP-DIP 2001:40:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 5036218 Rx 5036218 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 SIP-DIP 2001:100:0:0:0:0:0:2-2001:20:0:0:0:0:0:2 Tx 44319 Rx 44319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 SIP-DIP 2001:100:0:0:0:0:0:2-2001:40:0:0:0:0:0:2 Tx 44319 Rx 44319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 SIP-DIP 2001:10:0:0:0:0:0:2-2001:20:0:0:0:0:0:2 Tx 44319 Rx 44319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 SIP-DIP 2001:10:0:0:0:0:0:2-2001:40:0:0:0:0:0:2 Tx 44319 Rx 44319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 SIP-DIP 2001:20:0:0:0:0:0:2-2001:10:0:0:0:0:0:2 Tx 44319 Rx 44319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 SIP-DIP 2001:40:0:0:0:0:0:2-2001:10:0:0:0:0:0:2 Tx 44319 Rx 44319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 #1 SIP-DIP 2001:20:0:0:0:0:0:2-2001:30:0:0:0:0:0:2 Tx 44319 Rx 44319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 #1 SIP-DIP 2001:30:0:0:0:0:0:2-2001:20:0:0:0:0:0:2 Tx 44319 Rx 44319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 #1 SIP-DIP 2001:30:0:0:0:0:0:2-2001:40:0:0:0:0:0:2 Tx 44319 Rx 44319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 #1 SIP-DIP 2001:40:0:0:0:0:0:2-2001:30:0:0:0:0:0:2 Tx 44319 Rx 44319 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_on_bridge_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py INFO asyncssh:logging.py:92 [conn=143, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=143, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:49:02 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=143, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=143, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=143, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":114,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=143, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=143, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=143, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=143, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=25] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=143, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=26] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=143, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=26] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=143, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=143, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=28] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:49:03 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=143, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=143, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=30] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=143, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=143, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=143, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=143, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=143, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=34] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=143, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=34] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv6/test_ipv6_bridge.py::test_ipv6_move_host_on_bridge 249.57
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7804' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_move_host_on_bridge">Starting testcase:test_ipv6_move_host_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=143, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=144] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=144] Local address: 172.17.0.3, port 42856 INFO asyncssh:logging.py:92 [conn=144] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=144] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=144] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:49:04 AM UTC INFO asyncssh:logging.py:92 [conn=144, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=144, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=144, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=144, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=144, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=144, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=144, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:49:05 AM UTC INFO asyncssh:logging.py:92 [conn=144, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=144, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=8] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=144, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=144, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=144, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=10] Command: ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=144, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=144, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev br0 INFO asyncssh:logging.py:92 [conn=144, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=12] Command: ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev br0 INFO asyncssh:logging.py:92 [conn=144, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp br0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1111::2/64 to 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=144, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=144, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=14] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=144, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=144, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=144, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=16] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=144, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"br0","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e3ba950>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 45294 Rx 45294 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 45294 Rx 45294 Loss 0.000 INFO asyncssh:logging.py:92 [conn=144, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=18] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=144, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=20] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::212:1ff:fe00:1","dev":"br0","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::ae1f:6bff:fe0a:e7bb","dev":"ma1","lladdr":"ac:1f:6b:0a:e7:bb","state":["STALE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"2001:2222::2","dev":"br0","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_::/64', 'count': 1, 'ip': '::', 'gw': '::', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1111::2/64 to 10.36.118.199:1:7_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_::/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e5df820>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 44493 Rx 44493 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 44493 Rx 44493 Loss 0.000 INFO asyncssh:logging.py:92 [conn=144, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=144, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=22] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=144, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=144, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=144, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=24] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=144, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"br0","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=144, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=26] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=144, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=28] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::ae1f:6bff:fe0a:e7bb","dev":"ma1","lladdr":"ac:1f:6b:0a:e7:bb","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"br0","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"2001:2222::2","dev":"br0","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_move_host_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py INFO asyncssh:logging.py:92 [conn=144, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:53:12 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=144, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=144, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=144, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":119,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=144, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=144, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=144, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=144, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=35] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=144, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=36] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=144, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=36] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=144, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=37] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=38] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:53:12 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=144, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=144, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=40] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=144, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=144, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=144, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=42] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=144, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=42] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=144, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=144, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=44] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=144, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=44] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv6/test_ipv6_ipv4.py::test_ipv64_nh_reconfig 386.00
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7861' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv64_nh_reconfig">Starting testcase:test_ipv64_nh_reconfig from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=144, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=145] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=145] Local address: 172.17.0.3, port 41388 INFO asyncssh:logging.py:92 [conn=145] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=145] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=145] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:53:14 AM UTC INFO asyncssh:logging.py:92 [conn=145, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=145, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=145, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=145, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=145, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=145, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=145, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:53:14 AM UTC INFO asyncssh:logging.py:92 [conn=145, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=7] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=145, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=145, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=8] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=145, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=9] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=145, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=145, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=10] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=145, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:53:14 AM UTC INFO asyncssh:logging.py:92 [conn=145, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=145, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=145, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1::2/64', 'count': 1, 'ip': '2001:1::2', 'gw': '2001:1::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.2.1.2/24', 'count': 1, 'ip': '1.2.1.2', 'gw': '1.2.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2::2/64', 'count': 1, 'ip': '2001:2::2', 'gw': '2001:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.3.1.2/24', 'count': 1, 'ip': '1.3.1.2', 'gw': '1.3.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_2001:3::2/64', 'count': 1, 'ip': '2001:3::2', 'gw': '2001:3::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.4.1.2/24', 'count': 1, 'ip': '1.4.1.2', 'gw': '1.4.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_2001:4::2/64', 'count': 1, 'ip': '2001:4::2', 'gw': '2001:4::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=145, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=145, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=16] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=145, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 1.2.1.1/24 dev swp2 && ip address add 1.3.1.1/24 dev swp3 && ip address add 1.4.1.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=145, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=18] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 1.2.1.1/24 dev swp2 && ip address add 1.3.1.1/24 dev swp3 && ip address add 1.4.1.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=145, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp1 INFO asyncssh:logging.py:92 [conn=145, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=20] Command: ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp1 INFO asyncssh:logging.py:92 [conn=145, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=145, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=22] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=145, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> ['10.36.118.199:1:6', '10.36.118.199:1:7', '10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:6 <-> ['10.36.118.199:1:7', '10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_1.2.1.2/24 to 10.36.118.199:1:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_1.2.1.2/24 to 10.36.118.199:1:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 <-> ['10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_1.3.1.2/24 to 10.36.118.199:1:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:8 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e730100>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.1.1.2-1.2.1.2 Tx 44662 Rx 44662 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.1.1.2-1.3.1.2 Tx 44661 Rx 44661 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.1.1.2-1.4.1.2 Tx 44661 Rx 44661 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.2.1.2-1.1.1.2 Tx 44662 Rx 44662 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.3.1.2-1.1.1.2 Tx 44662 Rx 44662 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.4.1.2-1.1.1.2 Tx 44662 Rx 44662 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:6 <-> ['10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.2.1.2-1.3.1.2 Tx 44662 Rx 44662 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:6 <-> ['10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.2.1.2-1.4.1.2 Tx 44661 Rx 44661 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> ['10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.3.1.2-1.2.1.2 Tx 44662 Rx 44662 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> ['10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.4.1.2-1.2.1.2 Tx 44662 Rx 44662 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:7 <-> ['10.36.118.199:1:8'] SIP-DIP 1.3.1.2-1.4.1.2 Tx 44662 Rx 44662 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:7 <-> ['10.36.118.199:1:8'] SIP-DIP 1.4.1.2-1.3.1.2 Tx 44662 Rx 44662 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:8 -> nexthop SIP-DIP Tx 44662 Rx 44662 Loss 0.000 INFO asyncssh:logging.py:92 [conn=145, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=24] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"1.4.1.2","dev":"swp4","lladdr":"00:17:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.2.1.2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.3.1.2","dev":"swp3","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.5","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=26] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"1.4.1.2","dev":"swp4","lladdr":"00:17:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.2.1.2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.3.1.2","dev":"swp3","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.5","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=28] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::ae1f:6bff:fe0a:e7bb","dev":"ma1","lladdr":"ac:1f:6b:0a:e7:bb","state":["STALE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=30] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp2","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp3","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp4","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp1","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=145, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=32] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp2","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp3","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp4","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp1","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=145, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=34] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:1:5 <-> ['10.36.118.199:1:6', '10.36.118.199:1:7', '10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:1:6 <-> ['10.36.118.199:1:7', '10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:1:7 <-> ['10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:1:8 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=145, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip address delete 1.1.1.1/24 dev swp1 && ip address delete 1.2.1.1/24 dev swp2 && ip address delete 1.3.1.1/24 dev swp3 && ip address delete 1.4.1.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=145, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=36] Command: ip address delete 1.1.1.1/24 dev swp1 && ip address delete 1.2.1.1/24 dev swp2 && ip address delete 1.3.1.1/24 dev swp3 && ip address delete 1.4.1.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=145, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1::1/64 dev swp1 && ip address add 2001:2::1/64 dev swp2 && ip address add 2001:3::1/64 dev swp3 && ip address add 2001:4::1/64 dev swp4 INFO asyncssh:logging.py:92 [conn=145, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=38] Command: ip address add 2001:1::1/64 dev swp1 && ip address add 2001:2::1/64 dev swp2 && ip address add 2001:3::1/64 dev swp3 && ip address add 2001:4::1/64 dev swp4 INFO asyncssh:logging.py:92 [conn=145, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 2001:1::5 lladdr 02:00:00:00:00:02 dev swp1 INFO asyncssh:logging.py:92 [conn=145, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=40] Command: ip neigh add 2001:1::5 lladdr 02:00:00:00:00:02 dev swp1 INFO asyncssh:logging.py:92 [conn=145, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip route add 2001:1234::/64 nexthop via 2001:1::5 INFO asyncssh:logging.py:92 [conn=145, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=42] Command: ip route add 2001:1234::/64 nexthop via 2001:1::5 INFO asyncssh:logging.py:92 [conn=145, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> ['10.36.118.199:1:6', '10.36.118.199:1:7', '10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1::2/64 to 10.36.118.199:1:6_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1::2/64 to 10.36.118.199:1:7_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1::2/64 to 10.36.118.199:1:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:6 <-> ['10.36.118.199:1:7', '10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:2::2/64 to 10.36.118.199:1:7_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:2::2/64 to 10.36.118.199:1:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 <-> ['10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_2001:3::2/64 to 10.36.118.199:1:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:8 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp 4 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e200340>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 2001:1:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 43832 Rx 43832 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 2001:1:0:0:0:0:0:2-2001:3:0:0:0:0:0:2 Tx 43832 Rx 43832 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 2001:1:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 43831 Rx 43831 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 2001:2:0:0:0:0:0:2-2001:1:0:0:0:0:0:2 Tx 43832 Rx 43832 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 2001:3:0:0:0:0:0:2-2001:1:0:0:0:0:0:2 Tx 43832 Rx 43832 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 2001:4:0:0:0:0:0:2-2001:1:0:0:0:0:0:2 Tx 43832 Rx 43832 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:6 <-> ['10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 2001:2:0:0:0:0:0:2-2001:3:0:0:0:0:0:2 Tx 43832 Rx 43832 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:6 <-> ['10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 2001:2:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 43831 Rx 43831 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> ['10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 2001:3:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 43832 Rx 43832 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> ['10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 2001:4:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 43832 Rx 43832 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:7 <-> ['10.36.118.199:1:8'] SIP-DIP 2001:3:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 43832 Rx 43832 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:7 <-> ['10.36.118.199:1:8'] SIP-DIP 2001:4:0:0:0:0:0:2-2001:3:0:0:0:0:0:2 Tx 43832 Rx 43832 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:8 -> nexthop SIP-DIP Tx 43832 Rx 43832 Loss 0.000 INFO asyncssh:logging.py:92 [conn=145, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=44] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=44] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::216:1ff:fe00:1","dev":"swp3","lladdr":"00:16:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:1::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3::2","dev":"swp3","lladdr":"00:16:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:2::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::ae1f:6bff:fe0a:e7bb","dev":"ma1","lladdr":"ac:1f:6b:0a:e7:bb","state":["STALE"]},{"dst":"2001:1::5","dev":"swp1","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::218:1ff:fe00:1","dev":"swp4","lladdr":"00:18:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["DELAY"]},{"dst":"2001:4::2","dev":"swp4","lladdr":"00:18:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=46] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=46] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=48] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=48] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::216:1ff:fe00:1","dev":"swp3","lladdr":"00:16:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:1::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3::2","dev":"swp3","lladdr":"00:16:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:2::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::ae1f:6bff:fe0a:e7bb","dev":"ma1","lladdr":"ac:1f:6b:0a:e7:bb","state":["STALE"]},{"dst":"2001:1::5","dev":"swp1","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::218:1ff:fe00:1","dev":"swp4","lladdr":"00:18:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["DELAY"]},{"dst":"2001:4::2","dev":"swp4","lladdr":"00:18:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=49] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=50] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=50] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"2001:1::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:1234::/64","gateway":"2001:1::5","dev":"swp1","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=145, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=52] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=52] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=145, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=53] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=54] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=54] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"2001:1::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:1234::/64","gateway":"2001:1::5","dev":"swp1","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:1:5 <-> ['10.36.118.199:1:6', '10.36.118.199:1:7', '10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:1:6 <-> ['10.36.118.199:1:7', '10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:1:7 <-> ['10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:1:8 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=145, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=55] Channel closed DEBUG agg1:Logger.py:156 ip address delete 2001:1::1/64 dev swp1 && ip address delete 2001:2::1/64 dev swp2 && ip address delete 2001:3::1/64 dev swp3 && ip address delete 2001:4::1/64 dev swp4 INFO asyncssh:logging.py:92 [conn=145, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=56] Command: ip address delete 2001:1::1/64 dev swp1 && ip address delete 2001:2::1/64 dev swp2 && ip address delete 2001:3::1/64 dev swp3 && ip address delete 2001:4::1/64 dev swp4 INFO asyncssh:logging.py:92 [conn=145, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=57] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 1.2.1.1/24 dev swp2 && ip address add 1.3.1.1/24 dev swp3 && ip address add 1.4.1.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=145, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=58] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 1.2.1.1/24 dev swp2 && ip address add 1.3.1.1/24 dev swp3 && ip address add 1.4.1.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=145, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=59] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp1 INFO asyncssh:logging.py:92 [conn=145, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=60] Command: ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp1 INFO asyncssh:logging.py:92 [conn=145, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=60] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=61] Channel closed DEBUG agg1:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=145, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=62] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=145, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=62] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> ['10.36.118.199:1:6', '10.36.118.199:1:7', '10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:6 <-> ['10.36.118.199:1:7', '10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_1.2.1.2/24 to 10.36.118.199:1:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_1.2.1.2/24 to 10.36.118.199:1:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 <-> ['10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_1.3.1.2/24 to 10.36.118.199:1:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:8 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e200880>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.1.1.2-1.2.1.2 Tx 44623 Rx 44623 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.1.1.2-1.3.1.2 Tx 44623 Rx 44623 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.1.1.2-1.4.1.2 Tx 44623 Rx 44623 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.2.1.2-1.1.1.2 Tx 44623 Rx 44623 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.3.1.2-1.1.1.2 Tx 44623 Rx 44623 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.4.1.2-1.1.1.2 Tx 44623 Rx 44623 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:6 <-> ['10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.2.1.2-1.3.1.2 Tx 44623 Rx 44623 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:6 <-> ['10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.2.1.2-1.4.1.2 Tx 44623 Rx 44623 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> ['10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.3.1.2-1.2.1.2 Tx 44623 Rx 44623 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> ['10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.4.1.2-1.2.1.2 Tx 44623 Rx 44623 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:7 <-> ['10.36.118.199:1:8'] SIP-DIP 1.3.1.2-1.4.1.2 Tx 44623 Rx 44623 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:7 <-> ['10.36.118.199:1:8'] SIP-DIP 1.4.1.2-1.3.1.2 Tx 44623 Rx 44623 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:8 -> nexthop SIP-DIP Tx 44623 Rx 44623 Loss 0.000 INFO asyncssh:logging.py:92 [conn=145, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=63] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=64] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=64] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"1.4.1.2","dev":"swp4","lladdr":"00:17:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.2.1.2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.3.1.2","dev":"swp3","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.5","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=65] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=66] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=66] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"1.4.1.2","dev":"swp4","lladdr":"00:17:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.2.1.2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.3.1.2","dev":"swp3","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.5","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=67] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=68] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=68] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::216:1ff:fe00:1","dev":"swp3","lladdr":"00:16:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:1::2","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:3::2","dev":"swp3","lladdr":"00:16:01:00:00:01","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:2::2","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::ae1f:6bff:fe0a:e7bb","dev":"ma1","lladdr":"ac:1f:6b:0a:e7:bb","state":["STALE"]},{"dst":"2001:1::5","dev":"swp1","lladdr":"02:00:00:00:00:02","state":["PERMANENT"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::218:1ff:fe00:1","dev":"swp4","lladdr":"00:18:01:00:00:01","state":["STALE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"2001:4::2","dev":"swp4","lladdr":"00:18:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=69] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=70] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=70] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp2","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp3","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp4","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp1","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=145, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=71] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=72] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=72] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp2","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp3","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp4","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp1","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=145, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=73] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=74] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=74] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"2001:1234::/64","gateway":"2001:1::5","dev":"swp1","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:1:5 <-> ['10.36.118.199:1:6', '10.36.118.199:1:7', '10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:1:6 <-> ['10.36.118.199:1:7', '10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:1:7 <-> ['10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:1:8 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=145, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=75] Channel closed DEBUG agg1:Logger.py:156 ip address delete 1.1.1.1/24 dev swp1 && ip address delete 1.2.1.1/24 dev swp2 && ip address delete 1.3.1.1/24 dev swp3 && ip address delete 1.4.1.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=145, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=76] Command: ip address delete 1.1.1.1/24 dev swp1 && ip address delete 1.2.1.1/24 dev swp2 && ip address delete 1.3.1.1/24 dev swp3 && ip address delete 1.4.1.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=145, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=76] Channel closed DEBUG agg1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv64_nh_reconfig from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py INFO asyncssh:logging.py:92 [conn=145, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=77] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=145, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=78] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=145, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=78] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=145, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=79] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=145, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=80] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=145, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=80] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=145, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=81] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=82] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=82] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:59:38 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=145, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=83] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=145, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=84] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=145, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=84] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=85] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=145, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=86] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=145, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=86] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=145, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=87] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=145, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=88] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=145, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=88] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv6/test_ipv6_ipv4.py::test_ipv64_nh_routes 154.93
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7961' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv64_nh_routes">Starting testcase:test_ipv64_nh_routes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=145, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=146] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=146] Local address: 172.17.0.3, port 59096 INFO asyncssh:logging.py:92 [conn=146] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=146] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=146] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:59:40 AM UTC INFO asyncssh:logging.py:92 [conn=146, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=146, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=146, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=146, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=146, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=146, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=146, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:59:40 AM UTC INFO asyncssh:logging.py:92 [conn=146, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=7] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=146, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=146, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=8] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=146, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=9] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=146, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=146, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=10] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=146, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 12:59:40 AM UTC INFO asyncssh:logging.py:92 [conn=146, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=146, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=146, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=146, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=146, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=16] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=146, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2::2/64', 'count': 1, 'ip': '2001:2::2', 'gw': '2001:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.3.1.2/24', 'count': 1, 'ip': '1.3.1.2', 'gw': '1.3.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_2001:4::2/64', 'count': 1, 'ip': '2001:4::2', 'gw': '2001:4::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=146, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2001:2::1/64 dev swp2 && ip address add 1.3.1.1/24 dev swp3 && ip address add 2001:4::1/64 dev swp4 INFO asyncssh:logging.py:92 [conn=146, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=18] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2001:2::1/64 dev swp2 && ip address add 1.3.1.1/24 dev swp3 && ip address add 2001:4::1/64 dev swp4 INFO asyncssh:logging.py:92 [conn=146, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=146, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp1 && ip neigh add 2001:2::5 lladdr 02:00:00:00:00:02 dev swp2 INFO asyncssh:logging.py:92 [conn=146, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=20] Command: ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp1 && ip neigh add 2001:2::5 lladdr 02:00:00:00:00:02 dev swp2 INFO asyncssh:logging.py:92 [conn=146, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=146, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 2001:1234::/64 nexthop via 2001:2::5 INFO asyncssh:logging.py:92 [conn=146, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=22] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 2001:1234::/64 nexthop via 2001:2::5 INFO asyncssh:logging.py:92 [conn=146, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4: 10.36.118.199:1:5 <-> 10.36.118.199:1:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv6: 10.36.118.199:1:6 <-> 10.36.118.199:1:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:2::2/64 to 10.36.118.199:1:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4: addr_info(swp='swp3', tg='10.36.118.199:1:7', swp_ip='1.3.1.1', tg_ip='1.3.1.2', plen=24) -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv6: addr_info(swp='swp4', tg='10.36.118.199:1:8', swp_ip='2001:4::1', tg_ip='2001:4::2', plen=64) -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e202bf0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI ipv4: 10.36.118.199:1:5 <-> 10.36.118.199:1:7 SIP-DIP 1.1.1.2-1.3.1.2 Tx 44772 Rx 44772 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI ipv4: 10.36.118.199:1:5 <-> 10.36.118.199:1:7 SIP-DIP 1.3.1.2-1.1.1.2 Tx 44772 Rx 44772 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:8 TI ipv6: 10.36.118.199:1:6 <-> 10.36.118.199:1:8 SIP-DIP 2001:2:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 44772 Rx 44772 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:6 TI ipv6: 10.36.118.199:1:6 <-> 10.36.118.199:1:8 SIP-DIP 2001:4:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 44772 Rx 44772 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI ipv4: addr_info(swp='swp3' tg='10.36.118.199:1:7' swp_ip='1.3.1.1' tg_ip='1.3.1.2' plen=24) -> nexthop SIP-DIP Tx 44772 Rx 44772 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:6 TI ipv6: addr_info(swp='swp4' tg='10.36.118.199:1:8' swp_ip='2001:4::1' tg_ip='2001:4::2' plen=64) -> nexthop SIP-DIP Tx 44772 Rx 44772 Loss 0.000 INFO asyncssh:logging.py:92 [conn=146, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=146, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=24] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=146, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.3.1.2","dev":"swp3","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"1.1.1.5","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=146, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=146, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=26] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=146, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp4","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:2::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::ae1f:6bff:fe0a:e7bb","dev":"ma1","lladdr":"ac:1f:6b:0a:e7:bb","state":["STALE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"2001:2::5","dev":"swp2","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"2001:4::2","dev":"swp4","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=146, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=146, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=28] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=146, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp3","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp1","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=146, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=146, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=30] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=146, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"2001:2::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:1234::/64","gateway":"2001:2::5","dev":"swp2","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv64_nh_routes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py INFO asyncssh:logging.py:92 [conn=146, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=31] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=146, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=32] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=146, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=32] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=146, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=33] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=146, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=34] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=146, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=34] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=146, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=35] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=36] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:02:13 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=146, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=146, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=38] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=146, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=146, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=146, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=40] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=146, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=146, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=146, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=42] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=146, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=42] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv6/test_ipv6_nei.py::test_ipv6_nei_ageing 329.67
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8015' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_nei_ageing">Starting testcase:test_ipv6_nei_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=146, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=147] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=147] Local address: 172.17.0.3, port 53092 INFO asyncssh:logging.py:92 [conn=147] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=147] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=147] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=147, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:02:15 AM UTC INFO asyncssh:logging.py:92 [conn=147, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=147, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=147, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=147, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=147, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=147, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=147, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=147, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:02:15 AM UTC INFO asyncssh:logging.py:92 [conn=147, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=147, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=147, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=147, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp1 && ip address add 2001:3333::1/64 dev swp2 && ip address add 2001:4444::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=147, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=10] Command: ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp1 && ip address add 2001:3333::1/64 dev swp2 && ip address add 2001:4444::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=147, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dummy INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=147, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=147, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=12] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=147, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=147, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=147, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=14] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=147, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=147, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=15] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp1.gc_stale_time&& sysctl net.ipv6.neigh.swp2.gc_stale_time&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=147, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=16] Command: sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp1.gc_stale_time&& sysctl net.ipv6.neigh.swp2.gc_stale_time&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=147, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=16] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.gc_stale_time = 60 net.ipv6.neigh.swp1.gc_stale_time = 60 net.ipv6.neigh.swp2.gc_stale_time = 60 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO asyncssh:logging.py:92 [conn=147, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=17] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_stale_time=30&& sysctl net.ipv6.neigh.swp1.gc_stale_time=30&& sysctl net.ipv6.neigh.swp2.gc_stale_time=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=147, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=18] Command: sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_stale_time=30&& sysctl net.ipv6.neigh.swp1.gc_stale_time=30&& sysctl net.ipv6.neigh.swp2.gc_stale_time=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=147, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=18] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 5 net.ipv6.neigh.default.gc_stale_time = 30 net.ipv6.neigh.swp1.gc_stale_time = 30 net.ipv6.neigh.swp2.gc_stale_time = 30 net.ipv6.neigh.default.base_reachable_time_ms = 15000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:1:6_2001:3333::2/64 INFO asyncssh:logging.py:92 [conn=147, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=21] Received channel close DEBUG agg1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:1111::2 INFO asyncssh:logging.py:92 [conn=147, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=20] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=21] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=22] Received channel close DEBUG agg1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=147, chan=24] Requesting new SSH session DEBUG agg1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=147, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=22] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=23] Command: echo onl | sudo -S ping -c 1 2001:1111::2 DEBUG agg1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=147, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=24] Command: echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=147, chan=25] Command: echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=147, chan=26] Command: echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=147, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=23] Channel closed DEBUG agg1:Logger.py:156 PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.212 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.212/0.212/0.212/0.000 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Ran ping -c 1 2001:1111::2 on agg1 with rc 0 and out PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.212 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.212/0.212/0.212/0.000 ms INFO asyncssh:logging.py:92 [conn=147, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=26] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=24] Received channel close DEBUG agg1:Logger.py:156 PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.983 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.983/0.983/0.983/0.000 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Ran ping -c 1 2001:3333::2 on agg1 with rc 0 and out PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.983 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.983/0.983/0.983/0.000 ms DEBUG agg1:Logger.py:156 PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.145 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.145/0.145/0.145/0.000 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Ran ping -c 1 2001:4444::2 on agg1 with rc 0 and out PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.145 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.145/0.145/0.145/0.000 ms INFO asyncssh:logging.py:92 [conn=147, chan=24] Channel closed DEBUG agg1:Logger.py:156 PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=0.164 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.164/0.164/0.164/0.000 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Ran ping -c 1 2001:2222::2 on agg1 with rc 0 and out PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=0.164 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.164/0.164/0.164/0.000 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=147, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=28] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=30] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::ae1f:6bff:fe0a:e7bb","dev":"ma1","lladdr":"ac:1f:6b:0a:e7:bb","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=32] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=34] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::ae1f:6bff:fe0a:e7bb","dev":"ma1","lladdr":"ac:1f:6b:0a:e7:bb","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=36] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=38] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::ae1f:6bff:fe0a:e7bb","dev":"ma1","lladdr":"ac:1f:6b:0a:e7:bb","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]}] INFO DENT:Logger.py:84 [DENT aggregation 1] Neighbors matched expectation after 20.0s INFO DENT:Logger.py:84 [DENT aggregation 1] Wait for a total of gc_stale_time_s * 3 = 90s to make sure that neighbors did not age INFO asyncssh:logging.py:92 [conn=147, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=40] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=42] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=42] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::ae1f:6bff:fe0a:e7bb","dev":"ma1","lladdr":"ac:1f:6b:0a:e7:bb","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=43] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_thresh1&& sysctl net.ipv6.neigh.default.gc_thresh2&& sysctl net.ipv6.neigh.default.gc_thresh3&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp1.gc_stale_time&& sysctl net.ipv6.neigh.swp2.gc_stale_time INFO asyncssh:logging.py:92 [conn=147, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=44] Command: sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_thresh1&& sysctl net.ipv6.neigh.default.gc_thresh2&& sysctl net.ipv6.neigh.default.gc_thresh3&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp1.gc_stale_time&& sysctl net.ipv6.neigh.swp2.gc_stale_time INFO asyncssh:logging.py:92 [conn=147, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=44] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 5 net.ipv6.neigh.default.gc_thresh1 = 128 net.ipv6.neigh.default.gc_thresh2 = 512 net.ipv6.neigh.default.gc_thresh3 = 1024 net.ipv6.neigh.default.base_reachable_time_ms = 15000 net.ipv6.neigh.default.delay_first_probe_time = 5 net.ipv6.neigh.default.gc_stale_time = 30 net.ipv6.neigh.swp1.gc_stale_time = 30 net.ipv6.neigh.swp2.gc_stale_time = 30 INFO asyncssh:logging.py:92 [conn=147, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=45] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_thresh1=1&& sysctl net.ipv6.neigh.default.gc_thresh2=20&& sysctl net.ipv6.neigh.default.gc_thresh3=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_stale_time=90&& sysctl net.ipv6.neigh.swp1.gc_stale_time=90&& sysctl net.ipv6.neigh.swp2.gc_stale_time=90 INFO asyncssh:logging.py:92 [conn=147, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=46] Command: sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_thresh1=1&& sysctl net.ipv6.neigh.default.gc_thresh2=20&& sysctl net.ipv6.neigh.default.gc_thresh3=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_stale_time=90&& sysctl net.ipv6.neigh.swp1.gc_stale_time=90&& sysctl net.ipv6.neigh.swp2.gc_stale_time=90 INFO asyncssh:logging.py:92 [conn=147, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=46] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 5 net.ipv6.neigh.default.gc_thresh1 = 1 net.ipv6.neigh.default.gc_thresh2 = 20 net.ipv6.neigh.default.gc_thresh3 = 30 net.ipv6.neigh.default.base_reachable_time_ms = 15000 net.ipv6.neigh.default.delay_first_probe_time = 5 net.ipv6.neigh.default.gc_stale_time = 90 net.ipv6.neigh.swp1.gc_stale_time = 90 net.ipv6.neigh.swp2.gc_stale_time = 90 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:1:6_2001:3333::2/64 INFO asyncssh:logging.py:92 [conn=147, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=47] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=49] Received channel close DEBUG agg1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:1111::2 INFO asyncssh:logging.py:92 [conn=147, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=48] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=49] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=50] Received channel close DEBUG agg1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=147, chan=52] Requesting new SSH session DEBUG agg1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=147, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=50] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=51] Command: echo onl | sudo -S ping -c 1 2001:1111::2 DEBUG agg1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=147, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=52] Command: echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=147, chan=53] Command: echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=147, chan=54] Command: echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=147, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=53] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=54] Received channel close DEBUG agg1:Logger.py:156 PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.181 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.181/0.181/0.181/0.000 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Ran ping -c 1 2001:1111::2 on agg1 with rc 0 and out PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.181 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.181/0.181/0.181/0.000 ms DEBUG agg1:Logger.py:156 PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.174 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.174/0.174/0.174/0.000 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Ran ping -c 1 2001:3333::2 on agg1 with rc 0 and out PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.174 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.174/0.174/0.174/0.000 ms INFO asyncssh:logging.py:92 [conn=147, chan=54] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=52] Received channel close DEBUG agg1:Logger.py:156 PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.147 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.147/0.147/0.147/0.000 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Ran ping -c 1 2001:4444::2 on agg1 with rc 0 and out PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.147 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.147/0.147/0.147/0.000 ms INFO asyncssh:logging.py:92 [conn=147, chan=52] Channel closed DEBUG agg1:Logger.py:156 PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=0.141 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.141/0.141/0.141/0.000 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Ran ping -c 1 2001:2222::2 on agg1 with rc 0 and out PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=0.141 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.141/0.141/0.141/0.000 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=147, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=55] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=56] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=56] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=57] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=58] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=58] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::ae1f:6bff:fe0a:e7bb","dev":"ma1","lladdr":"ac:1f:6b:0a:e7:bb","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=147, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=59] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=60] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=60] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=61] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=62] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=62] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=63] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=64] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=64] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=65] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=66] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=66] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["DELAY"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["DELAY"]},{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO DENT:Logger.py:84 [DENT aggregation 1] Neighbors matched expectation after 10.0s INFO DENT:Logger.py:84 [DENT aggregation 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=147, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=67] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=68] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=68] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=69] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=70] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=70] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["DELAY"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["DELAY"]},{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["DELAY"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["DELAY"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=71] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=72] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=72] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=73] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=74] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=74] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=75] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=76] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=76] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=77] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=78] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=78] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=79] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=80] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=80] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=81] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=82] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=82] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]}] INFO DENT:Logger.py:84 [DENT aggregation 1] Neighbors matched expectation after 30.0s INFO DENT:Logger.py:84 [DENT aggregation 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=147, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=83] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=84] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=84] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=85] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=86] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=86] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=87] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=88] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=88] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=89] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=90] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=90] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=91] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=92] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=92] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=93] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=94] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=94] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=95] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=96] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=96] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=97] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=98] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=98] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=99] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=100] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=100] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=101] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=102] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=102] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=103] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=104] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=104] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=105] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=106] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=106] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=107] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=108] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=108] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=108] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=109] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=110] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=110] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=111] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=112] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=112] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=113] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=114] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=114] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] Neighbors matched expectation after 70.0s
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_nei_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=147, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=115] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.gc_stale_time=60&& sysctl net.ipv6.neigh.swp1.gc_stale_time=60&& sysctl net.ipv6.neigh.swp2.gc_stale_time=60&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_thresh1=128&& sysctl net.ipv6.neigh.default.gc_thresh2=512&& sysctl net.ipv6.neigh.default.gc_thresh3=1024 INFO asyncssh:logging.py:92 [conn=147, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=116] Command: sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.gc_stale_time=60&& sysctl net.ipv6.neigh.swp1.gc_stale_time=60&& sysctl net.ipv6.neigh.swp2.gc_stale_time=60&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_thresh1=128&& sysctl net.ipv6.neigh.default.gc_thresh2=512&& sysctl net.ipv6.neigh.default.gc_thresh3=1024 INFO asyncssh:logging.py:92 [conn=147, chan=116] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=116] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.gc_stale_time = 60 net.ipv6.neigh.swp1.gc_stale_time = 60 net.ipv6.neigh.swp2.gc_stale_time = 60 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 net.ipv6.neigh.default.gc_thresh1 = 128 net.ipv6.neigh.default.gc_thresh2 = 512 net.ipv6.neigh.default.gc_thresh3 = 1024 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=147, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=117] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=147, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=118] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=118] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:07:43 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=147, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=119] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=147, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=120] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=147, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=120] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=147, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=121] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=147, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=122] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=147, chan=122] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=122] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=147, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=123] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=147, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=124] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=147, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=124] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv6/test_ipv6_nei.py::test_ipv6_nei_change 231.48
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8159' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_nei_change">Starting testcase:test_ipv6_nei_change from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=147, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=148] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=148] Local address: 172.17.0.3, port 48178 INFO asyncssh:logging.py:92 [conn=148] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=148] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=148] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=148, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:07:45 AM UTC INFO asyncssh:logging.py:92 [conn=148, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=148, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=148, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=148, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=148, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=148, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=148, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=148, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:07:45 AM UTC INFO asyncssh:logging.py:92 [conn=148, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=7] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=148, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=8] Command: sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=148, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=8] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO asyncssh:logging.py:92 [conn=148, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=9] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval=15&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=35000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=148, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=10] Command: sysctl net.ipv6.neigh.default.gc_interval=15&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=35000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=148, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=10] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 15 net.ipv6.neigh.default.base_reachable_time_ms = 35000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO asyncssh:logging.py:92 [conn=148, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=148, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=12] Command: ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=148, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=148, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=14] Command: ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=148, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=148, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=16] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=148, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.44","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","dynamic":true,"label":"ma1","valid_life_time":370,"preferred_life_time":370},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3804","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=148, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=148, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=18] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=148, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=148, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=148, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=20] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=148, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["linkdown","rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["linkdown","rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dummy INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1111::2/64 to 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:2222::2/64 to 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e262290>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI dummy SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 447 Rx 447 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI dummy #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 447 Rx 447 Loss 0.000 INFO DENT:Logger.py:84 [DENT aggregation 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=148, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=22] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=24] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]}] INFO DENT:Logger.py:84 [DENT aggregation 1] Neighbors matched expectation after 0.0s INFO asyncssh:logging.py:92 [conn=148, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=26] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud permanent dev swp2 && ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud permanent dev swp1 INFO asyncssh:logging.py:92 [conn=148, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=28] Command: ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud permanent dev swp2 && ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud permanent dev swp1 INFO asyncssh:logging.py:92 [conn=148, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=30] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=32] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["PERMANENT"]}] INFO DENT:Logger.py:84 [DENT aggregation 1] Waiting for neighbor state to change INFO asyncssh:logging.py:92 [conn=148, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=34] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=36] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=148, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud reachable dev swp2 && ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud reachable dev swp1 INFO asyncssh:logging.py:92 [conn=148, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=38] Command: ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud reachable dev swp2 && ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud reachable dev swp1 INFO asyncssh:logging.py:92 [conn=148, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=40] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=42] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=42] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO DENT:Logger.py:84 [DENT aggregation 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=148, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=44] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=44] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=46] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=46] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=48] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=48] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=49] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=50] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=50] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=52] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=52] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=53] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=54] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=54] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=55] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=56] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=56] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=57] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=58] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=58] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=59] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=60] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=60] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=61] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=62] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=62] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]}] INFO DENT:Logger.py:84 [DENT aggregation 1] Neighbors matched expectation after 40.0s INFO asyncssh:logging.py:92 [conn=148, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=63] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 2001:1111::1:4415 lladdr 02:00:00:00:00:51 nud permanent dev swp1 && ip neigh add 2001:2222::2:9166 lladdr 02:00:00:00:01:bb nud permanent dev swp2 && ip neigh add 2001:1111::3:23aa lladdr 02:00:00:00:02:9a nud stale dev swp1 && ip neigh add 2001:2222::4:2791 lladdr 02:00:00:00:03:07 nud stale dev swp2 INFO asyncssh:logging.py:92 [conn=148, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=64] Command: ip neigh add 2001:1111::1:4415 lladdr 02:00:00:00:00:51 nud permanent dev swp1 && ip neigh add 2001:2222::2:9166 lladdr 02:00:00:00:01:bb nud permanent dev swp2 && ip neigh add 2001:1111::3:23aa lladdr 02:00:00:00:02:9a nud stale dev swp1 && ip neigh add 2001:2222::4:2791 lladdr 02:00:00:00:03:07 nud stale dev swp2 INFO asyncssh:logging.py:92 [conn=148, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=64] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=65] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=66] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=66] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=67] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=68] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=68] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::1:4415","dev":"swp1","lladdr":"02:00:00:00:00:51","offload":null,"state":["PERMANENT"]},{"dst":"2001:2222::2:9166","dev":"swp2","lladdr":"02:00:00:00:01:bb","offload":null,"state":["PERMANENT"]},{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::3:23aa","dev":"swp1","lladdr":"02:00:00:00:02:9a","offload":null,"state":["STALE"]},{"dst":"2001:2222::4:2791","dev":"swp2","lladdr":"02:00:00:00:03:07","offload":null,"state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=69] Channel closed DEBUG agg1:Logger.py:156 ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 && ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 INFO asyncssh:logging.py:92 [conn=148, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=70] Command: ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 && ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 INFO asyncssh:logging.py:92 [conn=148, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=70] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=71] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=72] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=72] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=73] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=74] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=74] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::1:4415","dev":"swp1","state":["FAILED"]},{"dst":"2001:2222::2:9166","dev":"swp2","lladdr":"02:00:00:00:01:bb","offload":null,"state":["PERMANENT"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::3:23aa","dev":"swp1","lladdr":"02:00:00:00:02:9a","offload":null,"state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:1:6_2001:2222::2/64 INFO asyncssh:logging.py:92 [conn=148, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=75] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 2001:2222::2:9166 lladdr 02:00:00:00:01:bb nud permanent dev swp2 && ip neigh delete 2001:1111::3:23aa lladdr 02:00:00:00:02:9a nud stale dev swp1 INFO asyncssh:logging.py:92 [conn=148, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=76] Command: ip neigh delete 2001:2222::2:9166 lladdr 02:00:00:00:01:bb nud permanent dev swp2 && ip neigh delete 2001:1111::3:23aa lladdr 02:00:00:00:02:9a nud stale dev swp1 INFO asyncssh:logging.py:92 [conn=148, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=76] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=148, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=77] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=78] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=78] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=79] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=80] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=80] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::1:4415","dev":"swp1","state":["FAILED"]},{"dst":"2001:2222::2:9166","dev":"swp2","state":["FAILED"]},{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::3:23aa","dev":"swp1","state":["FAILED"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=148, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=81] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=82] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=82] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=83] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=84] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=84] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["DELAY"]},{"dst":"2001:1111::1:4415","dev":"swp1","state":["FAILED"]},{"dst":"2001:2222::2:9166","dev":"swp2","state":["FAILED"]},{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["DELAY"]},{"dst":"2001:1111::3:23aa","dev":"swp1","state":["FAILED"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO DENT:Logger.py:84 [DENT aggregation 1] Neighbors matched expectation after 10.0s
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_nei_change from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=148, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=85] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=148, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=86] Command: sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=148, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=86] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=148, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=87] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=148, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=88] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=88] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:11:34 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=148, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=89] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=148, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=90] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=148, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=90] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=91] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=148, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=92] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=148, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=92] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=148, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=93] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=148, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=94] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=148, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=94] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv6/test_ipv6_route.py::test_ipv6_route_default_offload 144.20
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8264' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_route_default_offload">Starting testcase:test_ipv6_route_default_offload from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=148, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=149] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=149] Local address: 172.17.0.3, port 59724 INFO asyncssh:logging.py:92 [conn=149] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=149] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=149] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:11:36 AM UTC INFO asyncssh:logging.py:92 [conn=149, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=2] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=149, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=4] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=4] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=149, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=149, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=6] Command: ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=149, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=149, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:11:36 AM UTC INFO asyncssh:logging.py:92 [conn=149, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=9] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=149, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=10] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=149, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=10] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=149, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=149, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=12] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=149, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=149, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:11:36 AM UTC INFO asyncssh:logging.py:92 [conn=149, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=149, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=16] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=149, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=149, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up INFO asyncssh:logging.py:92 [conn=149, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=18] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up INFO asyncssh:logging.py:92 [conn=149, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 && ip address add 2001:3333::1/64 dev swp3 INFO asyncssh:logging.py:92 [conn=149, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=20] Command: ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 && ip address add 2001:3333::1/64 dev swp3 INFO asyncssh:logging.py:92 [conn=149, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 2001:5555::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=149, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip route add default metric 200 via 2001:2222::2 dev swp2 && ip route add default metric 300 via 2001:3333::2 dev swp3 INFO asyncssh:logging.py:92 [conn=149, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=22] Command: ip route add default metric 200 via 2001:2222::2 dev swp2 && ip route add default metric 300 via 2001:3333::2 dev swp3 INFO asyncssh:logging.py:92 [conn=149, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=24] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=149, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=26] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"default","gateway":"2001:2222::2","dev":"swp2","metric":200,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"default","gateway":"2001:3333::2","dev":"swp3","metric":300,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e200400>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 -> 2001:5555::5 SIP-DIP N/A Tx 45104 Rx 45104 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 -> 2001:5555::5 SIP-DIP N/A Tx 45103 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=149, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip route add default metric 100 via 2001:3333::2 dev swp3 INFO asyncssh:logging.py:92 [conn=149, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=28] Command: ip route add default metric 100 via 2001:3333::2 dev swp3 INFO asyncssh:logging.py:92 [conn=149, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=30] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=149, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=32] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"default","gateway":"2001:3333::2","dev":"swp3","metric":100,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"default","gateway":"2001:2222::2","dev":"swp2","metric":200,"flags":["offload"],"pref":"medium"},{"dst":"default","gateway":"2001:3333::2","dev":"swp3","metric":300,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e760ca0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 -> 2001:5555::5 SIP-DIP N/A Tx 80668 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 -> 2001:5555::5 SIP-DIP N/A Tx 80667 Rx 80667 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_route_default_offload from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=149, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=33] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=149, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=34] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=149, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=34] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=149, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=35] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=36] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:13:59 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=149, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=149, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=38] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=149, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=149, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=40] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=149, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=149, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=149, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=42] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=149, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=44] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=44] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=149, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=46] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=46] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=149, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=149, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=48] Command: ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=149, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=48] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv6/test_ipv6_route.py::test_ipv6_route_lpm 179.82
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8325' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_route_lpm">Starting testcase:test_ipv6_route_lpm from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=149, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=150] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=150] Local address: 172.17.0.3, port 54872 INFO asyncssh:logging.py:92 [conn=150] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=150] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=150] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=150, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:14:00 AM UTC INFO asyncssh:logging.py:92 [conn=150, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=150, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=150, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=150, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=150, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=150, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=150, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=150, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:14:00 AM UTC INFO asyncssh:logging.py:92 [conn=150, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=150, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=150, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=8] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=150, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=150, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=150, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=150, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 && ip address add 2001:3333::1/64 dev swp3 && ip address add 2001:4444::1/64 dev swp4 INFO asyncssh:logging.py:92 [conn=150, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=12] Command: ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 && ip address add 2001:3333::1/64 dev swp3 && ip address add 2001:4444::1/64 dev swp4 INFO asyncssh:logging.py:92 [conn=150, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=150, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip route add 2002:1::/64 via 2001:2222::2 && ip route add 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=150, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=14] Command: ip route add 2002:1::/64 via 2001:2222::2 && ip route add 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=150, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e2622f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP N/A Tx 44803 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP N/A Tx 44802 Rx 44802 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP N/A Tx 44802 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=150, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=16] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=150, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=18] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2002:1::2","gateway":"2001:3333::2","dev":"swp3","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/64","gateway":"2001:2222::2","dev":"swp2","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=150, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip route delete 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=150, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=20] Command: ip route delete 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=150, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e262230>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP N/A Tx 75799 Rx 75799 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP N/A Tx 75798 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP N/A Tx 75798 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=150, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=22] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=150, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=24] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2002:1::/64","gateway":"2001:2222::2","dev":"swp2","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=150, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip route add 2002:1::/80 via 2001:2222::2 && ip route add 2002:1::/100 via 2001:3333::2 && ip route add 2002:1::/120 via 2001:4444::2 INFO asyncssh:logging.py:92 [conn=150, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=26] Command: ip route add 2002:1::/80 via 2001:2222::2 && ip route add 2002:1::/100 via 2001:3333::2 && ip route add 2002:1::/120 via 2001:4444::2 INFO asyncssh:logging.py:92 [conn=150, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e201810>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP N/A Tx 80430 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP N/A Tx 80430 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP N/A Tx 80430 Rx 80430 Loss 0.000 INFO asyncssh:logging.py:92 [conn=150, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=28] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=150, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=30] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2002:1::/120","gateway":"2001:4444::2","dev":"swp4","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/100","gateway":"2001:3333::2","dev":"swp3","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/80","gateway":"2001:2222::2","dev":"swp2","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/64","gateway":"2001:2222::2","dev":"swp2","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_route_lpm from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=150, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=31] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=150, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=32] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=150, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=32] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=150, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=33] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=150, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=34] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:16:58 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=150, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=150, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=36] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=150, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=150, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=150, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=150, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=150, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=150, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=40] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=150, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=40] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv6/test_ipv6_route.py::test_ipv6_nh_state 168.08
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8375' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_nh_state">Starting testcase:test_ipv6_nh_state from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=150, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=151] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=151] Local address: 172.17.0.3, port 41440 INFO asyncssh:logging.py:92 [conn=151] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=151] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=151] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=151, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:17:00 AM UTC INFO asyncssh:logging.py:92 [conn=151, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=151, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=151, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=151, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=151, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=151, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=151, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=151, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:17:00 AM UTC INFO asyncssh:logging.py:92 [conn=151, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=151, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=151, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=8] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=151, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up INFO asyncssh:logging.py:92 [conn=151, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up INFO asyncssh:logging.py:92 [conn=151, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 && ip address add 2001:3333::1/64 dev swp3 INFO asyncssh:logging.py:92 [conn=151, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=12] Command: ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 && ip address add 2001:3333::1/64 dev swp3 INFO asyncssh:logging.py:92 [conn=151, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:3::8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:3::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:2::8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:2::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:1::8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:1::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=151, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip route add 2001:1::/128 via 2001:2222::2 && ip route add 2001:1::/126 via 2001:2222::2 && ip route add 2001:2::/128 via 2001:2222::2 && ip route add 2001:2::/126 via 2001:2222::2 && ip route add 2001:2::/64 via 2001:3333::2 && ip route add 2001:3::/64 metric 10 via 2001:2222::2 && ip route add 2001:3::/64 metric 100 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=151, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=14] Command: ip route add 2001:1::/128 via 2001:2222::2 && ip route add 2001:1::/126 via 2001:2222::2 && ip route add 2001:2::/128 via 2001:2222::2 && ip route add 2001:2::/126 via 2001:2222::2 && ip route add 2001:2::/64 via 2001:3333::2 && ip route add 2001:3::/64 metric 10 via 2001:2222::2 && ip route add 2001:3::/64 metric 100 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=151, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 down INFO asyncssh:logging.py:92 [conn=151, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=16] Command: ip link set dev swp2 down INFO asyncssh:logging.py:92 [conn=151, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=151, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=18] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=151, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=151, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=151, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=20] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=151, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"2001:2::/64","gateway":"2001:3333::2","dev":"swp3","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:3::/64","gateway":"2001:3333::2","dev":"swp3","metric":100,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e260d30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic to 2001:3::8 SIP-DIP N/A Tx 942130 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic to 2001:3::8 SIP-DIP N/A Tx 942130 Rx 942130 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic to 2001:3::5 SIP-DIP N/A Tx 942130 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic to 2001:3::5 SIP-DIP N/A Tx 942130 Rx 942130 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic to 2001:2::8 SIP-DIP N/A Tx 942130 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic to 2001:2::8 SIP-DIP N/A Tx 942130 Rx 942130 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic to 2001:2::5 SIP-DIP N/A Tx 942130 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic to 2001:2::5 SIP-DIP N/A Tx 942130 Rx 942130 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic to 2001:1::8 SIP-DIP N/A Tx 942130 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic to 2001:1::8 SIP-DIP N/A Tx 942130 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic to 2001:1::5 SIP-DIP N/A Tx 942130 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic to 2001:1::5 SIP-DIP N/A Tx 942130 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_nh_state from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=151, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=21] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=151, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=22] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=151, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=22] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=151, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=151, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:19:47 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=151, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=151, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=26] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=151, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=151, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=151, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=151, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 down && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=151, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=30] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 down && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=151, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=30] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv6/test_ipv6_route.py::test_ipv6_route_metrics 174.54
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8415' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_route_metrics">Starting testcase:test_ipv6_route_metrics from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=151, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=152] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=152] Local address: 172.17.0.3, port 57852 INFO asyncssh:logging.py:92 [conn=152] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=152] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=152] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=152, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:19:48 AM UTC INFO asyncssh:logging.py:92 [conn=152, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=152, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=152, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=152, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=152, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=152, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=152, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=152, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:19:48 AM UTC INFO asyncssh:logging.py:92 [conn=152, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=152, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=152, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=8] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=152, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up INFO asyncssh:logging.py:92 [conn=152, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up INFO asyncssh:logging.py:92 [conn=152, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=152, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 && ip address add 2001:3333::1/64 dev swp3 && ip address add 2001:4444::1/64 dev swp3 INFO asyncssh:logging.py:92 [conn=152, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=12] Command: ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 && ip address add 2001:3333::1/64 dev swp3 && ip address add 2001:4444::1/64 dev swp3 INFO asyncssh:logging.py:92 [conn=152, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=152, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip route add 2001:4444::/64 metric 100 via 2001:2222::2 && ip route add 2001:4444::/64 metric 101 via 2001:2222::2 && ip route add 2001:4444::/64 metric 102 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=152, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=14] Command: ip route add 2001:4444::/64 metric 100 via 2001:2222::2 && ip route add 2001:4444::/64 metric 101 via 2001:2222::2 && ip route add 2001:4444::/64 metric 102 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=152, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e201bd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP N/A Tx 1053163 Rx 1053163 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP N/A Tx 2106325 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=152, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=16] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=152, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=18] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp2","metric":100,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp2","metric":101,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp3","metric":102,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=152, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip route delete 2001:4444::/64 metric 100 dev swp2 INFO asyncssh:logging.py:92 [conn=152, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=20] Command: ip route delete 2001:4444::/64 metric 100 dev swp2 INFO asyncssh:logging.py:92 [conn=152, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e202680>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP N/A Tx 1896322 Rx 1896322 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP N/A Tx 3792642 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=152, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=22] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=152, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=24] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp2","metric":101,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp3","metric":102,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=152, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip route add 2001:4444::/64 metric 99 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=152, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=26] Command: ip route add 2001:4444::/64 metric 99 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=152, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e731630>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP N/A Tx 1899820 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP N/A Tx 3799638 Rx 3799638 Loss 0.000 INFO asyncssh:logging.py:92 [conn=152, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=28] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=152, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=30] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp3","metric":99,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp2","metric":101,"flags":["offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp3","metric":102,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_route_metrics from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=152, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=31] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=152, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=32] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=152, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=32] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=152, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=33] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=152, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=34] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:22:41 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=152, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=152, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=36] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=152, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=152, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=152, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=152, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=152, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=152, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=40] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=152, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=40] Channel closed DEBUG agg1:Logger.py:156
Passed functional/ipv6/test_ipv6_route.py::test_ipv6_icmp 321.71
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8465' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_icmp">Starting testcase:test_ipv6_icmp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=152, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=153] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=153] Local address: 172.17.0.3, port 44074 INFO asyncssh:logging.py:92 [conn=153] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=153] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=153] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=153, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:22:43 AM UTC INFO asyncssh:logging.py:92 [conn=153, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=153, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=153, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=153, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=153, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=153, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=153, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=153, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:22:43 AM UTC INFO asyncssh:logging.py:92 [conn=153, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=153, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=153, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=8] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=153, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=153, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=153, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=153, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=153, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=12] Command: ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=153, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=153, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=153, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=14] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=153, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.44","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","dynamic":true,"label":"ma1","valid_life_time":403,"preferred_life_time":403},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3804","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=153, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=153, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=16] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=153, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=153, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=153, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=18] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=153, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"::1","dev":"lo","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmpv6 10.36.118.199:1:5 -> swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmpv6 10.36.118.199:1:6 -> swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 20 tcpdump -i swp1 -n -c 10 "icmp6 && ip6[40] == 129" on agg1... INFO asyncssh:logging.py:92 [conn=153, chan=19] Requesting new SSH session INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 20 tcpdump -i swp2 -n -c 10 "icmp6 && ip6[40] == 129" on agg1... INFO asyncssh:logging.py:92 [conn=153, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=153, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=20] Received channel close DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp1 -n -c 10 "icmp6 && ip6[40] == 129" INFO asyncssh:logging.py:92 [conn=153, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=20] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp2 -n -c 10 "icmp6 && ip6[40] == 129" INFO asyncssh:logging.py:92 [conn=153, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=21] Command: echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp1 -n -c 10 "icmp6 && ip6[40] == 129" INFO asyncssh:logging.py:92 [conn=153, chan=22] Command: echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp2 -n -c 10 "icmp6 && ip6[40] == 129" INFO asyncssh:logging.py:92 [conn=153, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=22] Channel closed DEBUG agg1:Logger.py:156 01:24:31.452637 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 01:24:31.785924 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 01:24:32.119298 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 01:24:32.452600 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 01:24:32.785925 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 01:24:33.119269 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 01:24:33.452576 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 01:24:33.785907 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 01:24:34.119258 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 01:24:34.452629 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp2, link-type EN10MB (Ethernet), capture size 262144 bytes 10 packets captured 11 packets received by filter 0 packets dropped by kernel INFO asyncssh:logging.py:92 [conn=153, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=21] Channel closed DEBUG agg1:Logger.py:156 01:24:31.452680 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 01:24:31.785956 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 01:24:32.119339 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 01:24:32.452634 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 01:24:32.785956 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 01:24:33.119309 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 01:24:33.452601 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 01:24:33.785933 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 01:24:34.119288 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 01:24:34.452670 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 10 packets captured 11 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: icmpv6 10.36.118.199:1:5 -> swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': -1, 'result': 'Unable to delete a started Taffic Item\n\tCurrent Server Errors/Warnings:\n\t06/23/2023 18:07:05 [ERROR] [Statistics are either not coming from all ports or their hardware timestamps are not synchronized] Statistics are either not coming from all ports or their hardware timestamps are not synchronized.'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmpv6 unknown ip INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 20 tcpdump -i swp1 -n -c 10 "icmp6 && ip6[40] == 1 && ip6[41] == 3" on agg1... INFO asyncssh:logging.py:92 [conn=153, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=23] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp1 -n -c 10 "icmp6 && ip6[40] == 1 && ip6[41] == 3" INFO asyncssh:logging.py:92 [conn=153, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=24] Command: echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp1 -n -c 10 "icmp6 && ip6[40] == 1 && ip6[41] == 3" INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=153, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=24] Channel closed DEBUG agg1:Logger.py:156 01:25:22.498254 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 01:25:22.498294 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 01:25:22.498320 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 01:25:22.498345 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 01:25:22.498368 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 01:25:22.498391 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 01:25:25.826288 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 01:25:25.826338 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 01:25:25.826366 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 01:25:25.826391 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 10 packets captured 10 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: icmpv6 10.36.118.199:1:5 -> swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: icmpv6 10.36.118.199:1:6 -> swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: icmpv6 unknown ip INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmpv6 hop limit 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 20 tcpdump -i swp1 -n -c 10 "icmp6 && ip6[40] == 3 && ip6[41] == 0" on agg1... INFO asyncssh:logging.py:92 [conn=153, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=25] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp1 -n -c 10 "icmp6 && ip6[40] == 3 && ip6[41] == 0" INFO asyncssh:logging.py:92 [conn=153, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=26] Command: echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp1 -n -c 10 "icmp6 && ip6[40] == 3 && ip6[41] == 0" INFO asyncssh:logging.py:92 [conn=153, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=26] Channel closed DEBUG agg1:Logger.py:156 01:26:09.310989 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 01:26:09.644284 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 01:26:09.977658 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 01:26:10.311011 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 01:26:10.644313 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 01:26:10.977604 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 01:26:11.311014 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 01:26:11.644269 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 01:26:11.977675 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 01:26:12.310960 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 10 packets captured 11 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=153, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp1 up && ip link set dev swp2 down && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=153, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=28] Command: ip link set dev swp1 down && ip link set dev swp1 up && ip link set dev swp2 down && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=153, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=153, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:1111::f/64 dev swp2 INFO asyncssh:logging.py:92 [conn=153, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=30] Command: ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:1111::f/64 dev swp2 INFO asyncssh:logging.py:92 [conn=153, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:1111::1f/64', 'count': 1, 'ip': '2001:1111::1f', 'gw': '2001:1111::f', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmpv6 10.36.118.199:1:5 -> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:1111::1f/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 20 tcpdump -i swp1 -n -c 10 "icmp6 && ip6[40] == 137" on agg1... INFO asyncssh:logging.py:92 [conn=153, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=31] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp1 -n -c 10 "icmp6 && ip6[40] == 137" INFO asyncssh:logging.py:92 [conn=153, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=32] Command: echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp1 -n -c 10 "icmp6 && ip6[40] == 137" INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=153, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=32] Channel closed DEBUG agg1:Logger.py:156 01:27:58.653627 IP6 fe80::36ef:b6ff:feec:3807 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 01:27:58.986916 IP6 fe80::36ef:b6ff:feec:3807 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 01:27:59.320226 IP6 fe80::36ef:b6ff:feec:3807 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 01:27:59.653565 IP6 fe80::36ef:b6ff:feec:3807 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 01:27:59.986888 IP6 fe80::36ef:b6ff:feec:3807 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 01:28:00.320267 IP6 fe80::36ef:b6ff:feec:3807 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 01:28:00.653548 IP6 fe80::36ef:b6ff:feec:3807 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 01:28:00.986932 IP6 fe80::36ef:b6ff:feec:3807 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 01:28:01.653587 IP6 fe80::36ef:b6ff:feec:3807 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 01:28:02.653558 IP6 fe80::36ef:b6ff:feec:3807 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 10 packets captured 10 packets received by filter 0 packets dropped by kernel
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_icmp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=153, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=33] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=153, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=34] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=153, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=34] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=153, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=35] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=153, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=36] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:28:03 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=153, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=153, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=38] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=153, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=153, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=153, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=40] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=153, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=153, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=153, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=42] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=153, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=42] Channel closed DEBUG agg1:Logger.py:156
Passed functional/lacp/test_lacp_distribution_over_ecmp.py::test_lacp_ecmp_distribution_over_lag 153.13
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8524' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_ecmp_distribution_over_lag">Starting testcase:test_lacp_ecmp_distribution_over_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_distribution_over_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=153, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=154] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=154] Local address: 172.17.0.3, port 60216 INFO asyncssh:logging.py:92 [conn=154] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=154] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=154] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:28:05 AM UTC INFO asyncssh:logging.py:92 [conn=154, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=154, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=154, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=154, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=154, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=154, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=154, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:28:05 AM UTC INFO asyncssh:logging.py:92 [conn=154, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=154, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=8] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=154, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=154, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=10] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=154, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=154, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=12] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=154, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=14] Command: ip link set dev swp1 master bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 master bond_2 INFO asyncssh:logging.py:92 [conn=154, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=16] Command: ip link set dev swp2 master bond_2 INFO asyncssh:logging.py:92 [conn=154, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp3 master bond_3 && ip link set dev swp4 master bond_3 INFO asyncssh:logging.py:92 [conn=154, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=18] Command: ip link set dev swp3 master bond_3 && ip link set dev swp4 master bond_3 INFO asyncssh:logging.py:92 [conn=154, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=154, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=20] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=154, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=22] Command: ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip address add 2.2.2.1/24 dev bond_2 INFO asyncssh:logging.py:92 [conn=154, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=24] Command: ip address add 2.2.2.1/24 dev bond_2 INFO asyncssh:logging.py:92 [conn=154, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip address add 3.3.3.1/24 dev bond_3 INFO asyncssh:logging.py:92 [conn=154, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=26] Command: ip address add 3.3.3.1/24 dev bond_3 INFO asyncssh:logging.py:92 [conn=154, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 2.2.2.3 lladdr 00:AD:20:B2:A7:75 dev bond_2 INFO asyncssh:logging.py:92 [conn=154, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=28] Command: ip neigh add 2.2.2.3 lladdr 00:AD:20:B2:A7:75 dev bond_2 INFO asyncssh:logging.py:92 [conn=154, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 3.3.3.4 lladdr 00:59:CD:1E:83:1B dev bond_3 INFO asyncssh:logging.py:92 [conn=154, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=30] Command: ip neigh add 3.3.3.4 lladdr 00:59:CD:1E:83:1B dev bond_3 INFO asyncssh:logging.py:92 [conn=154, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip route add 10.1.1.0/24 nexthop via 2.2.2.3 weight 1 nexthop via 3.3.3.4 weight 1 INFO asyncssh:logging.py:92 [conn=154, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=32] Command: ip route add 10.1.1.0/24 nexthop via 2.2.2.3 weight 1 nexthop via 3.3.3.4 weight 1 INFO asyncssh:logging.py:92 [conn=154, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_0 with ports ['/api/v1/sessions/8/ixnetwork/vport/1'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_0_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:5']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/8/ixnetwork/vport/2'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:6']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_2 with ports ['/api/v1/sessions/8/ixnetwork/vport/3', '/api/v1/sessions/8/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_2_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:7', '10.36.118.199:1:8']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=154, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=33] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=34] Command: bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=34] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev bond_1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=154, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=36] Command: ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":120,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show bond_1 ', 'rc': 0, 'result': '[{"ifindex":120,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 10.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_0_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_1_2.2.2.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_2_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e201330>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 48290 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 6 Rx 24647 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 12075 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 11591
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_ecmp_distribution_over_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_distribution_over_ecmp.py INFO asyncssh:logging.py:92 [conn=154, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=37] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=154, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=38] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=154, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=38] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO asyncssh:logging.py:92 [conn=154, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=39] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=40] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:30:36 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=154, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=154, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=42] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=154, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=42] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=154, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=43] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=44] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:30:36 AM UTC INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=154, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=154, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=46] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=154, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=46] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"34:ef:b6:ec:38:08","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"34:ef:b6:ec:38:0a","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":120,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:01"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":121,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:02"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":122,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":2,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:03"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=154, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=48] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=49] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=154, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=50] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=154, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=154, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=52] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=154, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=52] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=154, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=53] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=54] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:30:37 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Passed functional/lacp/test_lacp_negative_acl_over_lag.py::test_lacp_acl_negative 1.33
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_acl_negative">Starting testcase:test_lacp_acl_negative from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_negative_acl_over_lag.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-8593' coro=<test_lacp_acl_negative() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_negative_acl_over_lag.py:29> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=154, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=155] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=155] Local address: 172.17.0.3, port 36172 INFO asyncssh:logging.py:92 [conn=155] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=155] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=155] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:30:38 AM UTC INFO asyncssh:logging.py:92 [conn=155, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name bond_33 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=155, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=2] Command: ip link add name bond_33 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=155, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_33 up INFO asyncssh:logging.py:92 [conn=155, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=4] Command: ip link set dev bond_33 up INFO asyncssh:logging.py:92 [conn=155, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=5] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev bond_33 ingress INFO asyncssh:logging.py:92 [conn=155, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=6] Command: tc qdisc add dev bond_33 ingress INFO asyncssh:logging.py:92 [conn=155, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev bond_33 ingress flower action drop INFO asyncssh:logging.py:92 [conn=155, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=8] Command: tc filter add dev bond_33 ingress flower action drop INFO asyncssh:logging.py:92 [conn=155, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev bond_33 ingress INFO asyncssh:logging.py:92 [conn=155, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=10] Command: tc -j filter show dev bond_33 ingress INFO asyncssh:logging.py:92 [conn=155, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"all","pref":49152,"kind":"flower","chain":0},{"protocol":"all","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1}]}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_acl_negative from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_negative_acl_over_lag.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=155, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:30:38 AM UTC INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=155, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=155, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=14] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=155, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":123,"ifname":"bond_33","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"0e:20:f2:67:08:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=155, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_33 INFO asyncssh:logging.py:92 [conn=155, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=16] Command: ip link delete bond_33 INFO asyncssh:logging.py:92 [conn=155, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=155, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:30:38 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=155, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:30:38 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=155, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=155, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=22] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=155, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=155, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=155, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=24] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=155, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=24] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=155, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=155, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=26] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=155, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=155, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=155, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=155, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=155, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=155, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=155, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=155, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=155, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=155, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=155, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=44] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=155, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=155, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=155, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=46] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=155, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=155, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=155, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=48] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=155, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=155, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=155, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=50] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=155, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/lacp/test_lacp_no_traffic.py::test_lacp_max_lags 19.60
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_max_lags">Starting testcase:test_lacp_max_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-8685' coro=<test_lacp_max_lags() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py:66> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO asyncssh:logging.py:92 [conn=156, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=157] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=157] Local address: 172.17.0.3, port 36190 INFO asyncssh:logging.py:92 [conn=157] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=157] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=157] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=157, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:30:40 AM UTC INFO asyncssh:logging.py:92 [conn=157, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=157, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=157, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=157, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_0 type bond mode 802.3ad && ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad && ip link add bond_7 type bond mode 802.3ad && ip link add bond_8 type bond mode 802.3ad && ip link add bond_9 type bond mode 802.3ad && ip link add bond_10 type bond mode 802.3ad && ip link add bond_11 type bond mode 802.3ad && ip link add bond_12 type bond mode 802.3ad && ip link add bond_13 type bond mode 802.3ad && ip link add bond_14 type bond mode 802.3ad && ip link add bond_15 type bond mode 802.3ad && ip link add bond_16 type bond mode 802.3ad && ip link add bond_17 type bond mode 802.3ad && ip link add bond_18 type bond mode 802.3ad && ip link add bond_19 type bond mode 802.3ad && ip link add bond_20 type bond mode 802.3ad && ip link add bond_21 type bond mode 802.3ad && ip link add bond_22 type bond mode 802.3ad && ip link add bond_23 type bond mode 802.3ad && ip link add bond_24 type bond mode 802.3ad && ip link add bond_25 type bond mode 802.3ad && ip link add bond_26 type bond mode 802.3ad && ip link add bond_27 type bond mode 802.3ad && ip link add bond_28 type bond mode 802.3ad && ip link add bond_29 type bond mode 802.3ad && ip link add bond_30 type bond mode 802.3ad && ip link add bond_31 type bond mode 802.3ad && ip link add bond_32 type bond mode 802.3ad && ip link add bond_33 type bond mode 802.3ad && ip link add bond_34 type bond mode 802.3ad && ip link add bond_35 type bond mode 802.3ad && ip link add bond_36 type bond mode 802.3ad && ip link add bond_37 type bond mode 802.3ad && ip link add bond_38 type bond mode 802.3ad && ip link add bond_39 type bond mode 802.3ad && ip link add bond_40 type bond mode 802.3ad && ip link add bond_41 type bond mode 802.3ad && ip link add bond_42 type bond mode 802.3ad && ip link add bond_43 type bond mode 802.3ad && ip link add bond_44 type bond mode 802.3ad && ip link add bond_45 type bond mode 802.3ad && ip link add bond_46 type bond mode 802.3ad && ip link add bond_47 type bond mode 802.3ad && ip link add bond_48 type bond mode 802.3ad && ip link add bond_49 type bond mode 802.3ad && ip link add bond_50 type bond mode 802.3ad && ip link add bond_51 type bond mode 802.3ad && ip link add bond_52 type bond mode 802.3ad && ip link add bond_53 type bond mode 802.3ad && ip link add bond_54 type bond mode 802.3ad && ip link add bond_55 type bond mode 802.3ad && ip link add bond_56 type bond mode 802.3ad && ip link add bond_57 type bond mode 802.3ad && ip link add bond_58 type bond mode 802.3ad && ip link add bond_59 type bond mode 802.3ad && ip link add bond_60 type bond mode 802.3ad && ip link add bond_61 type bond mode 802.3ad && ip link add bond_62 type bond mode 802.3ad && ip link add bond_63 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=157, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=4] Command: ip link add bond_0 type bond mode 802.3ad && ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad && ip link add bond_7 type bond mode 802.3ad && ip link add bond_8 type bond mode 802.3ad && ip link add bond_9 type bond mode 802.3ad && ip link add bond_10 type bond mode 802.3ad && ip link add bond_11 type bond mode 802.3ad && ip link add bond_12 type bond mode 802.3ad && ip link add bond_13 type bond mode 802.3ad && ip link add bond_14 type bond mode 802.3ad && ip link add bond_15 type bond mode 802.3ad && ip link add bond_16 type bond mode 802.3ad && ip link add bond_17 type bond mode 802.3ad && ip link add bond_18 type bond mode 802.3ad && ip link add bond_19 type bond mode 802.3ad && ip link add bond_20 type bond mode 802.3ad && ip link add bond_21 type bond mode 802.3ad && ip link add bond_22 type bond mode 802.3ad && ip link add bond_23 type bond mode 802.3ad && ip link add bond_24 type bond mode 802.3ad && ip link add bond_25 type bond mode 802.3ad && ip link add bond_26 type bond mode 802.3ad && ip link add bond_27 type bond mode 802.3ad && ip link add bond_28 type bond mode 802.3ad && ip link add bond_29 type bond mode 802.3ad && ip link add bond_30 type bond mode 802.3ad && ip link add bond_31 type bond mode 802.3ad && ip link add bond_32 type bond mode 802.3ad && ip link add bond_33 type bond mode 802.3ad && ip link add bond_34 type bond mode 802.3ad && ip link add bond_35 type bond mode 802.3ad && ip link add bond_36 type bond mode 802.3ad && ip link add bond_37 type bond mode 802.3ad && ip link add bond_38 type bond mode 802.3ad && ip link add bond_39 type bond mode 802.3ad && ip link add bond_40 type bond mode 802.3ad && ip link add bond_41 type bond mode 802.3ad && ip link add bond_42 type bond mode 802.3ad && ip link add bond_43 type bond mode 802.3ad && ip link add bond_44 type bond mode 802.3ad && ip link add bond_45 type bond mode 802.3ad && ip link add bond_46 type bond mode 802.3ad && ip link add bond_47 type bond mode 802.3ad && ip link add bond_48 type bond mode 802.3ad && ip link add bond_49 type bond mode 802.3ad && ip link add bond_50 type bond mode 802.3ad && ip link add bond_51 type bond mode 802.3ad && ip link add bond_52 type bond mode 802.3ad && ip link add bond_53 type bond mode 802.3ad && ip link add bond_54 type bond mode 802.3ad && ip link add bond_55 type bond mode 802.3ad && ip link add bond_56 type bond mode 802.3ad && ip link add bond_57 type bond mode 802.3ad && ip link add bond_58 type bond mode 802.3ad && ip link add bond_59 type bond mode 802.3ad && ip link add bond_60 type bond mode 802.3ad && ip link add bond_61 type bond mode 802.3ad && ip link add bond_62 type bond mode 802.3ad && ip link add bond_63 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=157, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=5] Channel closed DEBUG agg1:Logger.py:156 ifconfig -a | grep -Eo "swp[0-9]+" | wc -l INFO asyncssh:logging.py:92 [conn=157, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=6] Command: ifconfig -a | grep -Eo "swp[0-9]+" | wc -l INFO asyncssh:logging.py:92 [conn=157, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=6] Channel closed DEBUG agg1:Logger.py:156 48 INFO asyncssh:logging.py:92 [conn=157, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp6 down && ip link set dev swp7 down && ip link set dev swp8 down && ip link set dev swp9 down && ip link set dev swp10 down && ip link set dev swp11 down && ip link set dev swp12 down && ip link set dev swp13 down && ip link set dev swp14 down && ip link set dev swp15 down && ip link set dev swp16 down && ip link set dev swp17 down && ip link set dev swp18 down && ip link set dev swp19 down && ip link set dev swp20 down && ip link set dev swp21 down && ip link set dev swp22 down && ip link set dev swp23 down && ip link set dev swp24 down && ip link set dev swp25 down && ip link set dev swp26 down && ip link set dev swp27 down && ip link set dev swp28 down && ip link set dev swp29 down && ip link set dev swp30 down && ip link set dev swp31 down && ip link set dev swp32 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp37 down && ip link set dev swp38 down && ip link set dev swp39 down && ip link set dev swp40 down && ip link set dev swp41 down && ip link set dev swp42 down && ip link set dev swp43 down && ip link set dev swp44 down && ip link set dev swp45 down && ip link set dev swp46 down && ip link set dev swp47 down && ip link set dev swp48 down INFO asyncssh:logging.py:92 [conn=157, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=8] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp6 down && ip link set dev swp7 down && ip link set dev swp8 down && ip link set dev swp9 down && ip link set dev swp10 down && ip link set dev swp11 down && ip link set dev swp12 down && ip link set dev swp13 down && ip link set dev swp14 down && ip link set dev swp15 down && ip link set dev swp16 down && ip link set dev swp17 down && ip link set dev swp18 down && ip link set dev swp19 down && ip link set dev swp20 down && ip link set dev swp21 down && ip link set dev swp22 down && ip link set dev swp23 down && ip link set dev swp24 down && ip link set dev swp25 down && ip link set dev swp26 down && ip link set dev swp27 down && ip link set dev swp28 down && ip link set dev swp29 down && ip link set dev swp30 down && ip link set dev swp31 down && ip link set dev swp32 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp37 down && ip link set dev swp38 down && ip link set dev swp39 down && ip link set dev swp40 down && ip link set dev swp41 down && ip link set dev swp42 down && ip link set dev swp43 down && ip link set dev swp44 down && ip link set dev swp45 down && ip link set dev swp46 down && ip link set dev swp47 down && ip link set dev swp48 down INFO asyncssh:logging.py:92 [conn=157, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master bond_0 && ip link set dev swp2 master bond_1 && ip link set dev swp3 master bond_2 && ip link set dev swp4 master bond_3 && ip link set dev swp5 master bond_4 && ip link set dev swp6 master bond_5 && ip link set dev swp7 master bond_6 && ip link set dev swp8 master bond_7 && ip link set dev swp9 master bond_8 && ip link set dev swp10 master bond_9 && ip link set dev swp11 master bond_10 && ip link set dev swp12 master bond_11 && ip link set dev swp13 master bond_12 && ip link set dev swp14 master bond_13 && ip link set dev swp15 master bond_14 && ip link set dev swp16 master bond_15 && ip link set dev swp17 master bond_16 && ip link set dev swp18 master bond_17 && ip link set dev swp19 master bond_18 && ip link set dev swp20 master bond_19 && ip link set dev swp21 master bond_20 && ip link set dev swp22 master bond_21 && ip link set dev swp23 master bond_22 && ip link set dev swp24 master bond_23 && ip link set dev swp25 master bond_24 && ip link set dev swp26 master bond_25 && ip link set dev swp27 master bond_26 && ip link set dev swp28 master bond_27 && ip link set dev swp29 master bond_28 && ip link set dev swp30 master bond_29 && ip link set dev swp31 master bond_30 && ip link set dev swp32 master bond_31 && ip link set dev swp33 master bond_32 && ip link set dev swp34 master bond_33 && ip link set dev swp35 master bond_34 && ip link set dev swp36 master bond_35 && ip link set dev swp37 master bond_36 && ip link set dev swp38 master bond_37 && ip link set dev swp39 master bond_38 && ip link set dev swp40 master bond_39 && ip link set dev swp41 master bond_40 && ip link set dev swp42 master bond_41 && ip link set dev swp43 master bond_42 && ip link set dev swp44 master bond_43 && ip link set dev swp45 master bond_44 && ip link set dev swp46 master bond_45 && ip link set dev swp47 master bond_46 && ip link set dev swp48 master bond_47 INFO asyncssh:logging.py:92 [conn=157, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=10] Command: ip link set dev swp1 master bond_0 && ip link set dev swp2 master bond_1 && ip link set dev swp3 master bond_2 && ip link set dev swp4 master bond_3 && ip link set dev swp5 master bond_4 && ip link set dev swp6 master bond_5 && ip link set dev swp7 master bond_6 && ip link set dev swp8 master bond_7 && ip link set dev swp9 master bond_8 && ip link set dev swp10 master bond_9 && ip link set dev swp11 master bond_10 && ip link set dev swp12 master bond_11 && ip link set dev swp13 master bond_12 && ip link set dev swp14 master bond_13 && ip link set dev swp15 master bond_14 && ip link set dev swp16 master bond_15 && ip link set dev swp17 master bond_16 && ip link set dev swp18 master bond_17 && ip link set dev swp19 master bond_18 && ip link set dev swp20 master bond_19 && ip link set dev swp21 master bond_20 && ip link set dev swp22 master bond_21 && ip link set dev swp23 master bond_22 && ip link set dev swp24 master bond_23 && ip link set dev swp25 master bond_24 && ip link set dev swp26 master bond_25 && ip link set dev swp27 master bond_26 && ip link set dev swp28 master bond_27 && ip link set dev swp29 master bond_28 && ip link set dev swp30 master bond_29 && ip link set dev swp31 master bond_30 && ip link set dev swp32 master bond_31 && ip link set dev swp33 master bond_32 && ip link set dev swp34 master bond_33 && ip link set dev swp35 master bond_34 && ip link set dev swp36 master bond_35 && ip link set dev swp37 master bond_36 && ip link set dev swp38 master bond_37 && ip link set dev swp39 master bond_38 && ip link set dev swp40 master bond_39 && ip link set dev swp41 master bond_40 && ip link set dev swp42 master bond_41 && ip link set dev swp43 master bond_42 && ip link set dev swp44 master bond_43 && ip link set dev swp45 master bond_44 && ip link set dev swp46 master bond_45 && ip link set dev swp47 master bond_46 && ip link set dev swp48 master bond_47 INFO asyncssh:logging.py:92 [conn=157, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 up && ip link set dev swp6 up && ip link set dev swp7 up && ip link set dev swp8 up && ip link set dev swp9 up && ip link set dev swp10 up && ip link set dev swp11 up && ip link set dev swp12 up && ip link set dev swp13 up && ip link set dev swp14 up && ip link set dev swp15 up && ip link set dev swp16 up && ip link set dev swp17 up && ip link set dev swp18 up && ip link set dev swp19 up && ip link set dev swp20 up && ip link set dev swp21 up && ip link set dev swp22 up && ip link set dev swp23 up && ip link set dev swp24 up && ip link set dev swp25 up && ip link set dev swp26 up && ip link set dev swp27 up && ip link set dev swp28 up && ip link set dev swp29 up && ip link set dev swp30 up && ip link set dev swp31 up && ip link set dev swp32 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev swp37 up && ip link set dev swp38 up && ip link set dev swp39 up && ip link set dev swp40 up && ip link set dev swp41 up && ip link set dev swp42 up && ip link set dev swp43 up && ip link set dev swp44 up && ip link set dev swp45 up && ip link set dev swp46 up && ip link set dev swp47 up && ip link set dev swp48 up INFO asyncssh:logging.py:92 [conn=157, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=12] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 up && ip link set dev swp6 up && ip link set dev swp7 up && ip link set dev swp8 up && ip link set dev swp9 up && ip link set dev swp10 up && ip link set dev swp11 up && ip link set dev swp12 up && ip link set dev swp13 up && ip link set dev swp14 up && ip link set dev swp15 up && ip link set dev swp16 up && ip link set dev swp17 up && ip link set dev swp18 up && ip link set dev swp19 up && ip link set dev swp20 up && ip link set dev swp21 up && ip link set dev swp22 up && ip link set dev swp23 up && ip link set dev swp24 up && ip link set dev swp25 up && ip link set dev swp26 up && ip link set dev swp27 up && ip link set dev swp28 up && ip link set dev swp29 up && ip link set dev swp30 up && ip link set dev swp31 up && ip link set dev swp32 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev swp37 up && ip link set dev swp38 up && ip link set dev swp39 up && ip link set dev swp40 up && ip link set dev swp41 up && ip link set dev swp42 up && ip link set dev swp43 up && ip link set dev swp44 up && ip link set dev swp45 up && ip link set dev swp46 up && ip link set dev swp47 up && ip link set dev swp48 up INFO asyncssh:logging.py:92 [conn=157, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=12] Channel closed DEBUG agg1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_max_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=157, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=157, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:30:48 AM UTC INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=157, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=157, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=16] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=157, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:08","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0a","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0b","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_5","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0c","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_6","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0d","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_7","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0e","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_8","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0f","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_9","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:10","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_10","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:11","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_11","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:12","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_12","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:13","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_13","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:14","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_14","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:15","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_15","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:16","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_16","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:17","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_17","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:18","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_18","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:19","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_19","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:1a","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_20","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:1b","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_21","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:1c","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_22","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:1d","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_23","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:1e","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_24","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:1f","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_25","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:20","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_26","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:21","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_27","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:22","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_28","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:23","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_29","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:24","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_30","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:25","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_31","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:26","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_32","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:27","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_33","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:28","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_34","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:29","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_35","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:2a","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_36","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:2b","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_37","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:2c","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_38","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:2d","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_39","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:2e","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_40","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:2f","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_41","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:30","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_42","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:31","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_43","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:32","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_44","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:33","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_45","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:34","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_46","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:35","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_47","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:36","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":128,"ifname":"bond_0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":129,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":130,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":131,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":132,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":133,"ifname":"bond_5","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":134,"ifname":"bond_6","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":135,"ifname":"bond_7","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":136,"ifname":"bond_8","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":137,"ifname":"bond_9","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":138,"ifname":"bond_10","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":139,"ifname":"bond_11","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":140,"ifname":"bond_12","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":141,"ifname":"bond_13","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":142,"ifname":"bond_14","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":143,"ifname":"bond_15","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":144,"ifname":"bond_16","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":145,"ifname":"bond_17","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":146,"ifname":"bond_18","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":147,"ifname":"bond_19","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":148,"ifname":"bond_20","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":149,"ifname":"bond_21","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":150,"ifname":"bond_22","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":151,"ifname":"bond_23","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":152,"ifname":"bond_24","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":153,"ifname":"bond_25","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":154,"ifname":"bond_26","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":155,"ifname":"bond_27","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":156,"ifname":"bond_28","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":157,"ifname":"bond_29","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":158,"ifname":"bond_30","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":159,"ifname":"bond_31","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":160,"ifname":"bond_32","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":161,"ifname":"bond_33","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":162,"ifname":"bond_34","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":163,"ifname":"bond_35","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":164,"ifname":"bond_36","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":165,"ifname":"bond_37","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":166,"ifname":"bond_38","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":167,"ifname":"bond_39","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":168,"ifname":"bond_40","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":169,"ifname":"bond_41","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":170,"ifname":"bond_42","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":171,"ifname":"bond_43","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":172,"ifname":"bond_44","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":173,"ifname":"bond_45","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":174,"ifname":"bond_46","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":175,"ifname":"bond_47","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":176,"ifname":"bond_48","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:9d:6d:0a:c9:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":177,"ifname":"bond_49","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7e:df:9d:58:1f:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":178,"ifname":"bond_50","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"62:8d:77:9b:7f:74","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":179,"ifname":"bond_51","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"76:e0:fe:05:82:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":180,"ifname":"bond_52","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"92:cf:9e:f4:e3:e7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":181,"ifname":"bond_53","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"06:1f:6e:e8:9e:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":182,"ifname":"bond_54","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"8e:de:5a:3e:e3:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":183,"ifname":"bond_55","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"12:0e:94:9d:8c:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":184,"ifname":"bond_56","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"1e:4e:ae:e9:ba:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":185,"ifname":"bond_57","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:2c:c4:92:b9:da","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":186,"ifname":"bond_58","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:fa:4e:5a:5d:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":187,"ifname":"bond_59","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"72:ff:2e:dc:d3:6e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":188,"ifname":"bond_60","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:f4:db:1e:25:c7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":189,"ifname":"bond_61","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:79:e5:3d:91:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":190,"ifname":"bond_62","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"06:88:82:e0:35:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":191,"ifname":"bond_63","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:15:94:dc:28:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=157, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_0 INFO asyncssh:logging.py:92 [conn=157, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=18] Command: ip link delete bond_0 INFO asyncssh:logging.py:92 [conn=157, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=157, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=20] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=157, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=157, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=22] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=157, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=157, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=24] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=157, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=157, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=26] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=157, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=157, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=28] Command: ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=157, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=157, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=30] Command: ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=157, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_7 INFO asyncssh:logging.py:92 [conn=157, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=32] Command: ip link delete bond_7 INFO asyncssh:logging.py:92 [conn=157, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_8 INFO asyncssh:logging.py:92 [conn=157, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=34] Command: ip link delete bond_8 INFO asyncssh:logging.py:92 [conn=157, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_9 INFO asyncssh:logging.py:92 [conn=157, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=36] Command: ip link delete bond_9 INFO asyncssh:logging.py:92 [conn=157, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_10 INFO asyncssh:logging.py:92 [conn=157, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=38] Command: ip link delete bond_10 INFO asyncssh:logging.py:92 [conn=157, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_11 INFO asyncssh:logging.py:92 [conn=157, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=40] Command: ip link delete bond_11 INFO asyncssh:logging.py:92 [conn=157, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_12 INFO asyncssh:logging.py:92 [conn=157, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=42] Command: ip link delete bond_12 INFO asyncssh:logging.py:92 [conn=157, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_13 INFO asyncssh:logging.py:92 [conn=157, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=44] Command: ip link delete bond_13 INFO asyncssh:logging.py:92 [conn=157, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=44] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_14 INFO asyncssh:logging.py:92 [conn=157, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=46] Command: ip link delete bond_14 INFO asyncssh:logging.py:92 [conn=157, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=46] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_15 INFO asyncssh:logging.py:92 [conn=157, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=48] Command: ip link delete bond_15 INFO asyncssh:logging.py:92 [conn=157, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=49] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_16 INFO asyncssh:logging.py:92 [conn=157, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=50] Command: ip link delete bond_16 INFO asyncssh:logging.py:92 [conn=157, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_17 INFO asyncssh:logging.py:92 [conn=157, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=52] Command: ip link delete bond_17 INFO asyncssh:logging.py:92 [conn=157, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=52] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=53] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_18 INFO asyncssh:logging.py:92 [conn=157, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=54] Command: ip link delete bond_18 INFO asyncssh:logging.py:92 [conn=157, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=55] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_19 INFO asyncssh:logging.py:92 [conn=157, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=56] Command: ip link delete bond_19 INFO asyncssh:logging.py:92 [conn=157, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=57] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_20 INFO asyncssh:logging.py:92 [conn=157, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=58] Command: ip link delete bond_20 INFO asyncssh:logging.py:92 [conn=157, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=59] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_21 INFO asyncssh:logging.py:92 [conn=157, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=60] Command: ip link delete bond_21 INFO asyncssh:logging.py:92 [conn=157, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=60] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=61] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_22 INFO asyncssh:logging.py:92 [conn=157, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=62] Command: ip link delete bond_22 INFO asyncssh:logging.py:92 [conn=157, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=62] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=63] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_23 INFO asyncssh:logging.py:92 [conn=157, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=64] Command: ip link delete bond_23 INFO asyncssh:logging.py:92 [conn=157, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=64] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=65] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_24 INFO asyncssh:logging.py:92 [conn=157, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=66] Command: ip link delete bond_24 INFO asyncssh:logging.py:92 [conn=157, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=66] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=67] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_25 INFO asyncssh:logging.py:92 [conn=157, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=68] Command: ip link delete bond_25 INFO asyncssh:logging.py:92 [conn=157, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=68] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=69] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_26 INFO asyncssh:logging.py:92 [conn=157, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=70] Command: ip link delete bond_26 INFO asyncssh:logging.py:92 [conn=157, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=70] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=71] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_27 INFO asyncssh:logging.py:92 [conn=157, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=72] Command: ip link delete bond_27 INFO asyncssh:logging.py:92 [conn=157, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=72] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=73] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_28 INFO asyncssh:logging.py:92 [conn=157, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=74] Command: ip link delete bond_28 INFO asyncssh:logging.py:92 [conn=157, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=74] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=75] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_29 INFO asyncssh:logging.py:92 [conn=157, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=76] Command: ip link delete bond_29 INFO asyncssh:logging.py:92 [conn=157, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=76] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=77] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_30 INFO asyncssh:logging.py:92 [conn=157, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=78] Command: ip link delete bond_30 INFO asyncssh:logging.py:92 [conn=157, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=78] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=79] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_31 INFO asyncssh:logging.py:92 [conn=157, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=80] Command: ip link delete bond_31 INFO asyncssh:logging.py:92 [conn=157, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=80] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=81] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_32 INFO asyncssh:logging.py:92 [conn=157, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=82] Command: ip link delete bond_32 INFO asyncssh:logging.py:92 [conn=157, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=82] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=83] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_33 INFO asyncssh:logging.py:92 [conn=157, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=84] Command: ip link delete bond_33 INFO asyncssh:logging.py:92 [conn=157, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=84] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=85] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_34 INFO asyncssh:logging.py:92 [conn=157, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=86] Command: ip link delete bond_34 INFO asyncssh:logging.py:92 [conn=157, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=86] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=87] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_35 INFO asyncssh:logging.py:92 [conn=157, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=88] Command: ip link delete bond_35 INFO asyncssh:logging.py:92 [conn=157, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=88] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=89] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_36 INFO asyncssh:logging.py:92 [conn=157, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=90] Command: ip link delete bond_36 INFO asyncssh:logging.py:92 [conn=157, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=90] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=91] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_37 INFO asyncssh:logging.py:92 [conn=157, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=92] Command: ip link delete bond_37 INFO asyncssh:logging.py:92 [conn=157, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=92] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=93] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_38 INFO asyncssh:logging.py:92 [conn=157, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=94] Command: ip link delete bond_38 INFO asyncssh:logging.py:92 [conn=157, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=94] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=95] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_39 INFO asyncssh:logging.py:92 [conn=157, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=96] Command: ip link delete bond_39 INFO asyncssh:logging.py:92 [conn=157, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=96] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=97] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_40 INFO asyncssh:logging.py:92 [conn=157, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=98] Command: ip link delete bond_40 INFO asyncssh:logging.py:92 [conn=157, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=98] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=99] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_41 INFO asyncssh:logging.py:92 [conn=157, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=100] Command: ip link delete bond_41 INFO asyncssh:logging.py:92 [conn=157, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=100] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=101] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_42 INFO asyncssh:logging.py:92 [conn=157, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=102] Command: ip link delete bond_42 INFO asyncssh:logging.py:92 [conn=157, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=102] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=103] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_43 INFO asyncssh:logging.py:92 [conn=157, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=104] Command: ip link delete bond_43 INFO asyncssh:logging.py:92 [conn=157, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=104] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=105] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_44 INFO asyncssh:logging.py:92 [conn=157, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=106] Command: ip link delete bond_44 INFO asyncssh:logging.py:92 [conn=157, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=106] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=107] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_45 INFO asyncssh:logging.py:92 [conn=157, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=108] Command: ip link delete bond_45 INFO asyncssh:logging.py:92 [conn=157, chan=108] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=108] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=109] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_46 INFO asyncssh:logging.py:92 [conn=157, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=110] Command: ip link delete bond_46 INFO asyncssh:logging.py:92 [conn=157, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=110] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=111] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_47 INFO asyncssh:logging.py:92 [conn=157, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=112] Command: ip link delete bond_47 INFO asyncssh:logging.py:92 [conn=157, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=112] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=113] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_48 INFO asyncssh:logging.py:92 [conn=157, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=114] Command: ip link delete bond_48 INFO asyncssh:logging.py:92 [conn=157, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=114] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=115] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_49 INFO asyncssh:logging.py:92 [conn=157, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=116] Command: ip link delete bond_49 INFO asyncssh:logging.py:92 [conn=157, chan=116] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=116] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=117] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_50 INFO asyncssh:logging.py:92 [conn=157, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=118] Command: ip link delete bond_50 INFO asyncssh:logging.py:92 [conn=157, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=118] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=119] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_51 INFO asyncssh:logging.py:92 [conn=157, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=120] Command: ip link delete bond_51 INFO asyncssh:logging.py:92 [conn=157, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=120] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=121] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_52 INFO asyncssh:logging.py:92 [conn=157, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=122] Command: ip link delete bond_52 INFO asyncssh:logging.py:92 [conn=157, chan=122] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=122] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=123] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_53 INFO asyncssh:logging.py:92 [conn=157, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=124] Command: ip link delete bond_53 INFO asyncssh:logging.py:92 [conn=157, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=124] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=125] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_54 INFO asyncssh:logging.py:92 [conn=157, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=126] Command: ip link delete bond_54 INFO asyncssh:logging.py:92 [conn=157, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=126] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=127] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_55 INFO asyncssh:logging.py:92 [conn=157, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=128] Command: ip link delete bond_55 INFO asyncssh:logging.py:92 [conn=157, chan=128] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=128] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=129] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_56 INFO asyncssh:logging.py:92 [conn=157, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=130] Command: ip link delete bond_56 INFO asyncssh:logging.py:92 [conn=157, chan=130] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=130] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=131] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_57 INFO asyncssh:logging.py:92 [conn=157, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=132] Command: ip link delete bond_57 INFO asyncssh:logging.py:92 [conn=157, chan=132] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=132] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=133] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_58 INFO asyncssh:logging.py:92 [conn=157, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=134] Command: ip link delete bond_58 INFO asyncssh:logging.py:92 [conn=157, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=134] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=135] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_59 INFO asyncssh:logging.py:92 [conn=157, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=136] Command: ip link delete bond_59 INFO asyncssh:logging.py:92 [conn=157, chan=136] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=136] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=137] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_60 INFO asyncssh:logging.py:92 [conn=157, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=138] Command: ip link delete bond_60 INFO asyncssh:logging.py:92 [conn=157, chan=138] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=138] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=139] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_61 INFO asyncssh:logging.py:92 [conn=157, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=140] Command: ip link delete bond_61 INFO asyncssh:logging.py:92 [conn=157, chan=140] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=140] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=141] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_62 INFO asyncssh:logging.py:92 [conn=157, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=142] Command: ip link delete bond_62 INFO asyncssh:logging.py:92 [conn=157, chan=142] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=142] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=143] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_63 INFO asyncssh:logging.py:92 [conn=157, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=144] Command: ip link delete bond_63 INFO asyncssh:logging.py:92 [conn=157, chan=144] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=144] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=157, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=145] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=157, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=146] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=146] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=146] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:30:59 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Passed functional/lacp/test_lacp_no_traffic.py::test_lacp_max_ports_in_lags 4.90
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_max_ports_in_lags">Starting testcase:test_lacp_max_ports_in_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-8841' coro=<test_lacp_max_ports_in_lags() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py:112> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO asyncssh:logging.py:92 [conn=157, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=158] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=158] Local address: 172.17.0.3, port 55126 INFO asyncssh:logging.py:92 [conn=158] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=158] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=158] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=158, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:31:00 AM UTC INFO asyncssh:logging.py:92 [conn=158, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=158, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=158, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=158, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=158, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=4] Command: ip link add bond_1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=158, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp6 down && ip link set dev swp7 down && ip link set dev swp8 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=158, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=6] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp6 down && ip link set dev swp7 down && ip link set dev swp8 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=158, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master bond_1 && ip link set dev swp2 master bond_1 && ip link set dev swp3 master bond_1 && ip link set dev swp4 master bond_1 && ip link set dev swp5 master bond_1 && ip link set dev swp6 master bond_1 && ip link set dev swp7 master bond_1 && ip link set dev swp8 master bond_1 && ip link set dev swp9 master bond_1 INFO asyncssh:logging.py:92 [conn=158, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=8] Command: ip link set dev swp1 master bond_1 && ip link set dev swp2 master bond_1 && ip link set dev swp3 master bond_1 && ip link set dev swp4 master bond_1 && ip link set dev swp5 master bond_1 && ip link set dev swp6 master bond_1 && ip link set dev swp7 master bond_1 && ip link set dev swp8 master bond_1 && ip link set dev swp9 master bond_1 INFO asyncssh:logging.py:92 [conn=158, chan=8] Received exit status 2 INFO asyncssh:logging.py:92 [conn=158, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=8] Channel closed DEBUG agg1:Logger.py:156 RTNETLINK answers: No space left on device INFO asyncssh:logging.py:92 [conn=158, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 up && ip link set dev swp6 up && ip link set dev swp7 up && ip link set dev swp8 up && ip link set dev swp9 up INFO asyncssh:logging.py:92 [conn=158, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 up && ip link set dev swp6 up && ip link set dev swp7 up && ip link set dev swp8 up && ip link set dev swp9 up INFO asyncssh:logging.py:92 [conn=158, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=10] Channel closed DEBUG agg1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_max_ports_in_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=158, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=158, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:31:02 AM UTC INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=158, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=158, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=14] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=158, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:08","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:08","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:09","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0a","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0b","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0b","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0c","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0c","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0d","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0d","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0e","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0e","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":192,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=158, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=158, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=16] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=158, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=158, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=158, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:31:04 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Passed functional/lacp/test_lacp_routing_over_bridge.py::test_lacp_routing_over_bridge 168.83
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8870' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_routing_over_bridge">Starting testcase:test_lacp_routing_over_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=158, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=159] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=159] Local address: 172.17.0.3, port 36436 INFO asyncssh:logging.py:92 [conn=159] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=159] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=159] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:31:04 AM UTC INFO asyncssh:logging.py:92 [conn=159, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=159, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=159, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=159, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=159, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=159, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=159, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:31:05 AM UTC INFO asyncssh:logging.py:92 [conn=159, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add bridge0 type bridge INFO asyncssh:logging.py:92 [conn=159, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=8] Command: ip link add bridge0 type bridge INFO asyncssh:logging.py:92 [conn=159, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=159, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=10] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=159, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=159, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=12] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=159, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=159, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=14] Command: ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=159, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=159, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=16] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=159, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master bond_1 INFO asyncssh:logging.py:92 [conn=159, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=18] Command: ip link set dev swp1 master bond_1 INFO asyncssh:logging.py:92 [conn=159, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 master bond_2 && ip link set dev swp3 master bond_2 && ip link set dev swp4 master bond_2 INFO asyncssh:logging.py:92 [conn=159, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=20] Command: ip link set dev swp2 master bond_2 && ip link set dev swp3 master bond_2 && ip link set dev swp4 master bond_2 INFO asyncssh:logging.py:92 [conn=159, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_2 master bridge0 INFO asyncssh:logging.py:92 [conn=159, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=22] Command: ip link set dev bond_2 master bridge0 INFO asyncssh:logging.py:92 [conn=159, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=159, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=24] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=159, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=159, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=26] Command: ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=159, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip address add 2.2.2.2/24 dev bridge0 INFO asyncssh:logging.py:92 [conn=159, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=28] Command: ip address add 2.2.2.2/24 dev bridge0 INFO asyncssh:logging.py:92 [conn=159, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=159, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=30] Command: ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=159, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/8/ixnetwork/vport/2', '/api/v1/sessions/8/ixnetwork/vport/3', '/api/v1/sessions/8/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:6', '10.36.118.199:1:7', '10.36.118.199:1:8']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=159, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=31] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=159, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=32] Command: bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=159, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=32] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev bond_1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=159, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=159, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=34] Command: ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=159, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":194,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show bond_1 ', 'rc': 0, 'result': '[{"ifindex":194,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 10.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 2.2.2.3/24 (bridge IP) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_1_2.2.2.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e2008b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 -> 10.1.1.1/24 Tx 18784340 Rx 18784335 Frames Delta 5 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 -> 2.2.2.3/24 (bridge IP) Tx 18784340 Rx 18784335 Frames Delta 5 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_routing_over_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_bridge.py INFO asyncssh:logging.py:92 [conn=159, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=35] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=159, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=36] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=159, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=36] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO asyncssh:logging.py:92 [conn=159, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=37] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=38] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:33:51 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=159, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=159, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=40] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=159, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":193,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=159, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=159, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=42] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=159, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=159, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=43] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=44] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:33:52 AM UTC INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=159, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=159, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=46] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=159, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=46] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:08","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:09","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:0a","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":194,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":195,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":3,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:01"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=159, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=159, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=48] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=159, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=49] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=159, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=50] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=159, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=159, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=51] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=52] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:33:53 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Passed functional/lacp/test_lacp_routing_over_lacp.py::test_lacp_routing_over_lacp 181.93
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8937' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_routing_over_lacp">Starting testcase:test_lacp_routing_over_lacp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_lacp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=159, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=160] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=160] Local address: 172.17.0.3, port 35390 INFO asyncssh:logging.py:92 [conn=160] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=160] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=160] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:33:53 AM UTC INFO asyncssh:logging.py:92 [conn=160, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=160, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=160, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=160, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=160, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=160, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=160, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:33:53 AM UTC INFO asyncssh:logging.py:92 [conn=160, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=160, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=8] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=160, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=160, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=10] Command: ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=160, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=160, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=12] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=160, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=14] Command: ip link set dev swp1 master bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 master bond_2 && ip link set dev swp3 master bond_2 && ip link set dev swp4 master bond_2 INFO asyncssh:logging.py:92 [conn=160, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=16] Command: ip link set dev swp2 master bond_2 && ip link set dev swp3 master bond_2 && ip link set dev swp4 master bond_2 INFO asyncssh:logging.py:92 [conn=160, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=160, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=18] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=160, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=20] Command: ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip address add 2.2.2.2/24 dev bond_2 INFO asyncssh:logging.py:92 [conn=160, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=22] Command: ip address add 2.2.2.2/24 dev bond_2 INFO asyncssh:logging.py:92 [conn=160, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=160, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=24] Command: ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=160, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/8/ixnetwork/vport/2', '/api/v1/sessions/8/ixnetwork/vport/3', '/api/v1/sessions/8/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:6', '10.36.118.199:1:7', '10.36.118.199:1:8']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=160, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=25] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=26] Command: bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=26] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev bond_1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=160, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=28] Command: ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":196,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show bond_1 ', 'rc': 0, 'result': '[{"ifindex":196,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 10.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 2.2.2.3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_1_2.2.2.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e350070>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 -> 10.1.1.1 Tx 18783918 Rx 18783913 Frames Delta 5 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 -> 2.2.2.3 Tx 18783918 Rx 18783912 Frames Delta 6 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_routing_over_lacp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_lacp.py INFO asyncssh:logging.py:92 [conn=160, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=29] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=160, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=30] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=160, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=30] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO asyncssh:logging.py:92 [conn=160, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=32] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:36:51 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=160, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=160, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=160, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=34] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=160, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=35] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=36] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:36:51 AM UTC INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=160, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=160, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=38] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=160, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:08","queue_id":0,"ad_aggregator_id":3,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:09","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0,"ad_aggregator_id":3,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:0a","queue_id":0,"ad_aggregator_id":3,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":196,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":197,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":3,"num_ports":3,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:01"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=160, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=40] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=160, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=42] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=160, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=160, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=43] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=44] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:36:52 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Passed functional/lacp/test_lacp_routing_over_vlan_device.py::test_lacp_routing_over_vlan_device 172.37
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8996' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_routing_over_vlan_device">Starting testcase:test_lacp_routing_over_vlan_device from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vlan_device.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=160, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=161] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=161] Local address: 172.17.0.3, port 42722 INFO asyncssh:logging.py:92 [conn=161] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=161] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=161] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:36:55 AM UTC INFO asyncssh:logging.py:92 [conn=161, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=161, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=161, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=161, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=161, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=161, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=161, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:36:55 AM UTC INFO asyncssh:logging.py:92 [conn=161, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add bridge_0 type bridge vlan_filtering 1 vlan_default_pvid 10 INFO asyncssh:logging.py:92 [conn=161, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=8] Command: ip link add bridge_0 type bridge vlan_filtering 1 vlan_default_pvid 10 INFO asyncssh:logging.py:92 [conn=161, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge_0 up INFO asyncssh:logging.py:92 [conn=161, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=10] Command: ip link set dev bridge_0 up INFO asyncssh:logging.py:92 [conn=161, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev bridge_0 vid 10 self INFO asyncssh:logging.py:92 [conn=161, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=12] Command: bridge vlan add dev bridge_0 vid 10 self INFO asyncssh:logging.py:92 [conn=161, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=161, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=14] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=161, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=161, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=16] Command: ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=161, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=161, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=18] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=161, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master bond_1 INFO asyncssh:logging.py:92 [conn=161, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=20] Command: ip link set dev swp1 master bond_1 INFO asyncssh:logging.py:92 [conn=161, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 master bond_2 && ip link set dev swp3 master bond_2 && ip link set dev swp4 master bond_2 INFO asyncssh:logging.py:92 [conn=161, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=22] Command: ip link set dev swp2 master bond_2 && ip link set dev swp3 master bond_2 && ip link set dev swp4 master bond_2 INFO asyncssh:logging.py:92 [conn=161, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_2 master bridge_0 INFO asyncssh:logging.py:92 [conn=161, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=24] Command: ip link set dev bond_2 master bridge_0 INFO asyncssh:logging.py:92 [conn=161, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=161, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=26] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=161, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link add link bridge_0 name bridge_0.10 type vlan id 10 INFO asyncssh:logging.py:92 [conn=161, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=28] Command: ip link add link bridge_0 name bridge_0.10 type vlan id 10 INFO asyncssh:logging.py:92 [conn=161, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge_0.10 up INFO asyncssh:logging.py:92 [conn=161, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=30] Command: ip link set dev bridge_0.10 up INFO asyncssh:logging.py:92 [conn=161, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=161, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=32] Command: ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=161, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip address add 2.2.2.2/24 dev bridge_0.10 INFO asyncssh:logging.py:92 [conn=161, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=34] Command: ip address add 2.2.2.2/24 dev bridge_0.10 INFO asyncssh:logging.py:92 [conn=161, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=161, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=36] Command: ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=161, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/8/ixnetwork/vport/2', '/api/v1/sessions/8/ixnetwork/vport/3', '/api/v1/sessions/8/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:6', '10.36.118.199:1:7', '10.36.118.199:1:8']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=161, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=37] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=161, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=38] Command: bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=161, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=38] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev bond_1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=161, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=161, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=40] Command: ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=161, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":199,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show bond_1 ', 'rc': 0, 'result': '[{"ifindex":199,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 10.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 2.2.2.3/24 (bridge IP) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_1_2.2.2.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e203b20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 -> 10.1.1.1/24 Tx 18781150 Rx 18781145 Frames Delta 5 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 -> 2.2.2.3/24 (bridge IP) Tx 18781149 Rx 18781144 Frames Delta 5 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_routing_over_vlan_device from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vlan_device.py INFO asyncssh:logging.py:92 [conn=161, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=41] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=161, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=42] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=161, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=42] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO asyncssh:logging.py:92 [conn=161, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=43] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=44] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:39:42 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=161, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=161, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=46] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=161, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=46] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":198,"ifname":"bridge_0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=161, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge_0 INFO asyncssh:logging.py:92 [conn=161, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=48] Command: ip link delete bridge_0 INFO asyncssh:logging.py:92 [conn=161, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=161, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=49] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=50] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:39:43 AM UTC INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=161, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=161, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=52] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=161, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=52] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:08","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:09","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":4,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"34:ef:b6:ec:38:0a","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":199,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":200,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":2,"num_ports":3,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:01"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=161, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=53] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=161, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=54] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=161, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=55] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=161, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=56] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=161, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=161, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=57] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=58] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:39:44 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Passed functional/lacp/test_lacp_with_all_vlan_modes.py::test_lacp_all_vlan_modes 321.69
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_all_vlan_modes">Starting testcase:test_lacp_all_vlan_modes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_with_all_vlan_modes.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-9217' coro=<test_lacp_all_vlan_modes() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_with_all_vlan_modes.py:44> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=163, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=164] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=164] Local address: 172.17.0.3, port 43390 INFO asyncssh:logging.py:92 [conn=164] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=164] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=164] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=164, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:39:50 AM UTC INFO asyncssh:logging.py:92 [conn=164, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add bridge_1 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=164, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=2] Command: ip link add bridge_1 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=164, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=164, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=4] Command: ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=164, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=164, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=6] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=164, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=164, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=8] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=164, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master bond_1 INFO asyncssh:logging.py:92 [conn=164, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=10] Command: ip link set dev swp1 master bond_1 INFO asyncssh:logging.py:92 [conn=164, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 master bond_2 INFO asyncssh:logging.py:92 [conn=164, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=12] Command: ip link set dev swp2 master bond_2 INFO asyncssh:logging.py:92 [conn=164, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp3 master bond_3 && ip link set dev swp4 master bond_3 INFO asyncssh:logging.py:92 [conn=164, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=14] Command: ip link set dev swp3 master bond_3 && ip link set dev swp4 master bond_3 INFO asyncssh:logging.py:92 [conn=164, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 && ip link set dev bond_3 master bridge_1 INFO asyncssh:logging.py:92 [conn=164, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=16] Command: ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 && ip link set dev bond_3 master bridge_1 INFO asyncssh:logging.py:92 [conn=164, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=164, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=18] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=164, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=164, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=20] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=164, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=21] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev bond_1 vid 2 INFO asyncssh:logging.py:92 [conn=164, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=22] Command: bridge vlan add dev bond_1 vid 2 INFO asyncssh:logging.py:92 [conn=164, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=23] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev bond_1 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=164, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=24] Command: bridge vlan add dev bond_1 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=164, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=25] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev bond_2 vid 2 INFO asyncssh:logging.py:92 [conn=164, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=26] Command: bridge vlan add dev bond_2 vid 2 INFO asyncssh:logging.py:92 [conn=164, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=27] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev bond_3 vid 4 pvid INFO asyncssh:logging.py:92 [conn=164, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=28] Command: bridge vlan add dev bond_3 vid 4 pvid INFO asyncssh:logging.py:92 [conn=164, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_0 with ports ['/api/v1/sessions/8/ixnetwork/vport/1'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_0_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:5']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/8/ixnetwork/vport/2'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:6']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_2 with ports ['/api/v1/sessions/8/ixnetwork/vport/3', '/api/v1/sessions/8/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_2_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:7', '10.36.118.199:1:8']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From bond_1 -> untagged INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_0_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_1_2.2.2.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_2_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e5dcaf0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 100923 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 100924 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: From bond_1 -> untagged INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From bond_1 -> tagged VLAN 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_0_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_1_2.2.2.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_2_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e762d10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 98630 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 98631 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 2
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_all_vlan_modes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_with_all_vlan_modes.py INFO asyncssh:logging.py:92 [conn=164, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=164, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:45:10 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=164, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=164, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=164, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":209,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=164, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=164, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=34] Command: ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=164, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=164, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=35] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=164, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=36] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:45:11 AM UTC INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=164, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=164, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=38] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=164, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:08","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"34:ef:b6:ec:38:0a","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":210,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:01"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":211,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:02"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":212,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":2,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:03"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=164, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=164, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=40] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=164, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=164, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=42] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=164, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=164, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=44] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=164, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=44] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=164, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=45] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=164, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=46] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:45:12 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Passed functional/lldp/test_lldp_receive.py::test_lldp_received[basic] 158.39
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9273' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_received[basic]">Starting testcase:test_lldp_received[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=164, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=165] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=165] Local address: 172.17.0.3, port 47862 INFO asyncssh:logging.py:92 [conn=165] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=165] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=165] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=165, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:45:12 AM UTC INFO asyncssh:logging.py:92 [conn=165, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=165, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=165, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty-static.service loaded active exited getty on tty2-tty6 if dbus and logind are not available getty@tty1.service loaded active running Getty on tty1 getty@tty2.service loaded active running Getty on tty2 getty@tty3.service loaded active running Getty on tty3 getty@tty4.service loaded active running Getty on tty4 getty@tty5.service loaded active running Getty on tty5 getty@tty6.service loaded active running Getty on tty6 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded activating auto-restart Advanced IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP Authenticator ifupdown-pre.service loaded active exited Helper to synchronize boot up for ifupdown inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited Raise network interfaces ntp.service loaded active running Network Time Service onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited Resets System Activity Data Collector systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-sysusers.service loaded active exited Create System Users systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 44 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=165, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=165, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=165, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=165, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=165, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:45:12 AM UTC INFO asyncssh:logging.py:92 [conn=165, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=165, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=8] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=165, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=165, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=9] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-only INFO asyncssh:logging.py:92 [conn=165, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=10] Command: lldpcli configure ports swp1 lldp status rx-only INFO asyncssh:logging.py:92 [conn=165, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=165, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=11] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=165, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=12] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=165, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=12] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "1042" }, "rx": { "rx": "416047" }, "rx_discarded_cnt": { "rx_discarded_cnt": "416047" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=165, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=13] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=165, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=14] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=165, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=14] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "1042" }, "rx": { "rx": "416053" }, "rx_discarded_cnt": { "rx_discarded_cnt": "416047" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } }
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_received[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=165, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=165, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:47:47 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=165, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=17] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=165, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=18] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=165, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=19] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=165, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=165, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=20] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
Passed functional/lldp/test_lldp_receive.py::test_lldp_received[mandatory] 151.25
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9302' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_received[mandatory]">Starting testcase:test_lldp_received[mandatory] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=165, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=166] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=166] Local address: 172.17.0.3, port 33166 INFO asyncssh:logging.py:92 [conn=166] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=166] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=166] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=166, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:47:51 AM UTC INFO asyncssh:logging.py:92 [conn=166, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=166, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=166, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty-static.service loaded active exited getty on tty2-tty6 if dbus and logind are not available getty@tty1.service loaded active running Getty on tty1 getty@tty2.service loaded active running Getty on tty2 getty@tty3.service loaded active running Getty on tty3 getty@tty4.service loaded active running Getty on tty4 getty@tty5.service loaded active running Getty on tty5 getty@tty6.service loaded active running Getty on tty6 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded activating auto-restart Advanced IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP Authenticator ifupdown-pre.service loaded active exited Helper to synchronize boot up for ifupdown inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited Raise network interfaces ntp.service loaded active running Network Time Service onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited Resets System Activity Data Collector systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-sysusers.service loaded active exited Create System Users systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 44 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=166, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=166, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=166, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=166, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=166, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:47:51 AM UTC INFO asyncssh:logging.py:92 [conn=166, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=166, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=8] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=166, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=166, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=9] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-only INFO asyncssh:logging.py:92 [conn=166, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=10] Command: lldpcli configure ports swp1 lldp status rx-only INFO asyncssh:logging.py:92 [conn=166, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=166, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=11] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=166, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=12] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=166, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=12] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "1044" }, "rx": { "rx": "416053" }, "rx_discarded_cnt": { "rx_discarded_cnt": "416047" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "1" } } } } } INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=166, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=13] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=166, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=14] Command: lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=166, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=14] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "via": "LLDP", "rid": "2", "age": "0 day, 00:00:02", "chassis": { "id": { "type": "mac", "value": "00:19:2f:a7:b2:8d" } }, "port": { "id": { "type": "ifalias", "value": "Uplink to Spine 1" }, "ttl": "120" } } } } }
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_received[mandatory] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=166, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=166, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:50:18 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=166, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=17] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=166, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=18] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=166, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=19] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=166, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=166, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=20] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
Passed functional/lldp/test_lldp_receive.py::test_lldp_received[ttl] 172.21
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9331' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_received[ttl]">Starting testcase:test_lldp_received[ttl] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=166, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=167] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=167] Local address: 172.17.0.3, port 46776 INFO asyncssh:logging.py:92 [conn=167] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=167] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=167] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:50:22 AM UTC INFO asyncssh:logging.py:92 [conn=167, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=167, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=167, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty-static.service loaded active exited getty on tty2-tty6 if dbus and logind are not available getty@tty1.service loaded active running Getty on tty1 getty@tty2.service loaded active running Getty on tty2 getty@tty3.service loaded active running Getty on tty3 getty@tty4.service loaded active running Getty on tty4 getty@tty5.service loaded active running Getty on tty5 getty@tty6.service loaded active running Getty on tty6 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded activating auto-restart Advanced IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP Authenticator ifupdown-pre.service loaded active exited Helper to synchronize boot up for ifupdown inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited Raise network interfaces ntp.service loaded active running Network Time Service onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited Resets System Activity Data Collector systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-sysusers.service loaded active exited Create System Users systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 44 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=167, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=167, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=167, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=167, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:50:22 AM UTC INFO asyncssh:logging.py:92 [conn=167, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=167, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=8] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=167, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=167, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=9] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-only INFO asyncssh:logging.py:92 [conn=167, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=10] Command: lldpcli configure ports swp1 lldp status rx-only INFO asyncssh:logging.py:92 [conn=167, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=167, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=11] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=167, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=12] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=167, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=12] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "1046" }, "rx": { "rx": "416059" }, "rx_discarded_cnt": { "rx_discarded_cnt": "416047" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "2" }, "delete_cnt": { "delete_cnt": "2" } } } } } INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=167, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=13] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=167, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=14] Command: lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=167, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=14] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "via": "LLDP", "rid": "3", "age": "0 day, 00:00:01", "chassis": { "id": { "type": "mac", "value": "00:00:00:11:11:11" } }, "port": { "id": { "type": "mac", "value": "00:00:00:00:00:07" }, "ttl": "20" } } } } } INFO asyncssh:logging.py:92 [conn=167, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=15] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=167, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=16] Command: lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=167, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=16] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { } }
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_received[ttl] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=167, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:53:13 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=167, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=19] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=167, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=20] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=167, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=21] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=167, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=22] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=167, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=22] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
Passed functional/lldp/test_lldp_receive.py::test_lldp_rx[disable] 157.45
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9362' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_rx[disable]">Starting testcase:test_lldp_rx[disable] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=167, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=168] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=168] Local address: 172.17.0.3, port 42372 INFO asyncssh:logging.py:92 [conn=168] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=168] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=168] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:53:14 AM UTC INFO asyncssh:logging.py:92 [conn=168, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=168, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=168, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty-static.service loaded active exited getty on tty2-tty6 if dbus and logind are not available getty@tty1.service loaded active running Getty on tty1 getty@tty2.service loaded active running Getty on tty2 getty@tty3.service loaded active running Getty on tty3 getty@tty4.service loaded active running Getty on tty4 getty@tty5.service loaded active running Getty on tty5 getty@tty6.service loaded active running Getty on tty6 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded activating auto-restart Advanced IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP Authenticator ifupdown-pre.service loaded active exited Helper to synchronize boot up for ifupdown inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited Raise network interfaces ntp.service loaded active running Network Time Service onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited Resets System Activity Data Collector systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-sysusers.service loaded active exited Create System Users systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 44 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=168, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=168, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=168, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=168, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:53:14 AM UTC INFO asyncssh:logging.py:92 [conn=168, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=168, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=8] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=168, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=168, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=9] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status disabled INFO asyncssh:logging.py:92 [conn=168, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=10] Command: lldpcli configure ports swp1 lldp status disabled INFO asyncssh:logging.py:92 [conn=168, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=168, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=11] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=168, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=12] Command: lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=168, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=12] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { } }
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_rx[disable] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=168, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:55:48 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=168, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=15] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=168, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=16] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=168, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=17] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=168, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=18] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=168, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=18] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
Passed functional/lldp/test_lldp_receive.py::test_lldp_rx[port_down_up] 250.51
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9389' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_rx[port_down_up]">Starting testcase:test_lldp_rx[port_down_up] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=168, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=169] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=169] Local address: 172.17.0.3, port 45088 INFO asyncssh:logging.py:92 [conn=169] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=169] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=169] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:55:51 AM UTC INFO asyncssh:logging.py:92 [conn=169, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=169, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=169, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty-static.service loaded active exited getty on tty2-tty6 if dbus and logind are not available getty@tty1.service loaded active running Getty on tty1 getty@tty2.service loaded active running Getty on tty2 getty@tty3.service loaded active running Getty on tty3 getty@tty4.service loaded active running Getty on tty4 getty@tty5.service loaded active running Getty on tty5 getty@tty6.service loaded active running Getty on tty6 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded activating auto-restart Advanced IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP Authenticator ifupdown-pre.service loaded active exited Helper to synchronize boot up for ifupdown inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited Raise network interfaces ntp.service loaded active running Network Time Service onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited Resets System Activity Data Collector systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-sysusers.service loaded active exited Create System Users systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 44 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=169, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=169, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=169, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=169, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 01:55:52 AM UTC INFO asyncssh:logging.py:92 [conn=169, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=169, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=8] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=169, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=169, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down INFO asyncssh:logging.py:92 [conn=169, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=10] Command: ip link set dev swp1 down INFO asyncssh:logging.py:92 [conn=169, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=11] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-only INFO asyncssh:logging.py:92 [conn=169, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=12] Command: lldpcli configure ports swp1 lldp status rx-only INFO asyncssh:logging.py:92 [conn=169, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=169, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=13] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=169, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=14] Command: lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=169, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=14] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { } } INFO asyncssh:logging.py:92 [conn=169, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=169, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=16] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=169, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=169, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=17] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=169, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=18] Command: lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=169, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=18] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "via": "LLDP", "rid": "4", "age": "0 day, 00:00:05", "chassis": { "id": { "type": "mac", "value": "a2:2c:38:b8:9c:a6" } }, "port": { "id": { "type": "ifname", "value": "Ethernet0/13" }, "ttl": "120" } } } } }
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_rx[port_down_up] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=169, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:00:01 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=169, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=21] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=169, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=22] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=169, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=23] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=169, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=24] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=169, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=24] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
Passed functional/lldp/test_lldp_transmit.py::test_lldp_transmitted[basic] 81.29
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9422' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_transmitted[basic]">Starting testcase:test_lldp_transmitted[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=169, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=170] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=170] Local address: 172.17.0.3, port 38906 INFO asyncssh:logging.py:92 [conn=170] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=170] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=170] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:00:02 AM UTC INFO asyncssh:logging.py:92 [conn=170, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=170, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=170, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty-static.service loaded active exited getty on tty2-tty6 if dbus and logind are not available getty@tty1.service loaded active running Getty on tty1 getty@tty2.service loaded active running Getty on tty2 getty@tty3.service loaded active running Getty on tty3 getty@tty4.service loaded active running Getty on tty4 getty@tty5.service loaded active running Getty on tty5 getty@tty6.service loaded active running Getty on tty6 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded activating auto-restart Advanced IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP Authenticator ifupdown-pre.service loaded active exited Helper to synchronize boot up for ifupdown inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited Raise network interfaces ntp.service loaded active running Network Time Service onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited Resets System Activity Data Collector systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-sysusers.service loaded active exited Create System Users systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 44 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=170, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=170, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=170, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=170, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:00:02 AM UTC INFO asyncssh:logging.py:92 [conn=170, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=170, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=8] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=170, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=170, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=9] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status tx-only INFO asyncssh:logging.py:92 [conn=170, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=10] Command: lldpcli configure ports swp1 lldp status tx-only INFO asyncssh:logging.py:92 [conn=170, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=11] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=170, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=12] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=170, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=12] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "1053" }, "rx": { "rx": "416071" }, "rx_discarded_cnt": { "rx_discarded_cnt": "416047" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "4" }, "delete_cnt": { "delete_cnt": "4" } } } } } INFO asyncssh:logging.py:92 [conn=170, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=13] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=170, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=14] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=170, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=15] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=170, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=16] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=170, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=16] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "1057" }, "rx": { "rx": "416071" }, "rx_discarded_cnt": { "rx_discarded_cnt": "416047" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "4" }, "delete_cnt": { "delete_cnt": "4" } } } } }
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_transmitted[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=170, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:01:23 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=170, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=19] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=170, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=20] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=170, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=21] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=170, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=22] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=170, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=22] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=170, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=23] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=170, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=24] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=170, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=24] Channel closed DEBUG agg1:Logger.py:156
Passed functional/lldp/test_lldp_transmit.py::test_lldp_transmitted[mandatory] 56.72
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9455' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_transmitted[mandatory]">Starting testcase:test_lldp_transmitted[mandatory] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=170, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=171] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=171] Local address: 172.17.0.3, port 54588 INFO asyncssh:logging.py:92 [conn=171] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=171] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=171] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=171, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:01:23 AM UTC INFO asyncssh:logging.py:92 [conn=171, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=171, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=171, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB JOB DESCRIPTION dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty-static.service loaded active exited getty on tty2-tty6 if dbus and logind are not available getty@tty1.service loaded active running Getty on tty1 getty@tty2.service loaded active running Getty on tty2 getty@tty3.service loaded active running Getty on tty3 getty@tty4.service loaded active running Getty on tty4 getty@tty5.service loaded active running Getty on tty5 getty@tty6.service loaded active running Getty on tty6 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded activating start start Advanced IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP Authenticator ifupdown-pre.service loaded active exited Helper to synchronize boot up for ifupdown inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited Raise network interfaces ntp.service loaded active running Network Time Service onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited Resets System Activity Data Collector systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-sysusers.service loaded active exited Create System Users systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. JOB = Pending job for the unit. 44 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=171, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=3] Channel closed DEBUG agg1:Logger.py:156 systemctl restart lldpd.service INFO asyncssh:logging.py:92 [conn=171, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=4] Command: systemctl restart lldpd.service INFO asyncssh:logging.py:92 [conn=171, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=5] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=171, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=6] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=171, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=6] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=171, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=171, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:01:25 AM UTC INFO asyncssh:logging.py:92 [conn=171, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=171, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=10] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=171, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=171, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=11] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status tx-only INFO asyncssh:logging.py:92 [conn=171, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=12] Command: lldpcli configure ports swp1 lldp status tx-only INFO asyncssh:logging.py:92 [conn=171, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=13] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=171, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=14] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=171, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=14] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "2" }, "rx": { "rx": "0" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=171, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=15] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=171, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=16] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=171, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=17] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show interfaces ports swp1 INFO asyncssh:logging.py:92 [conn=171, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=18] Command: lldpcli -f json show interfaces ports swp1 INFO asyncssh:logging.py:92 [conn=171, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=18] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "via": "unknown", "age": "0 day, 00:00:00", "chassis": { "localhost": { "id": { "type": "mac", "value": "56:e2:8b:f7:07:bc" }, "descr": "Debian GNU/Linux 10 (buster) Linux 5.15.11-g0623069265cd #1 SMP PREEMPT Tue May 30 12:36:14 UTC 2023 aarch64", "mgmt-ip": [ "10.36.118.44", "fe80::36ef:b6ff:feec:3804" ], "capability": [ { "type": "Bridge", "enabled": false }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": true } ] } }, "port": { "id": { "type": "mac", "value": "34:ef:b6:ec:38:07" }, "descr": "swp1" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=171, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=19] Channel closed DEBUG agg1:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=171, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=20] Command: uname -n INFO asyncssh:logging.py:92 [conn=171, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=20] Channel closed DEBUG agg1:Logger.py:156 localhost INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne on agg1... INFO asyncssh:logging.py:92 [conn=171, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=21] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=171, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=22] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=171, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=22] Channel closed DEBUG agg1:Logger.py:156 02:02:18.754330 34:ef:b6:ec:38:07 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 233: LLDP, length 219 Chassis ID TLV (1), length 7 Subtype MAC address (4): 56:e2:8b:f7:07:bc Port ID TLV (2), length 7 Subtype MAC address (3): 34:ef:b6:ec:38:07 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 108 Debian GNU/Linux 10 (buster) Linux 5.15.11-g0623069265cd #1 SMP PREEMPT Tue May 30 12:36:14 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.44 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::36ef:b6ff:feec:3804 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 4: swp1 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [none] (0x00) PMD autoneg capability [unknown] (0x0000) MAU type 10GBASELR (0x0023) End TLV (0), length 0 tcpdump: listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT aggregation 1] Ran timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne on agg1 with rc 0 and out 02:02:18.754330 34:ef:b6:ec:38:07 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 233: LLDP, length 219 Chassis ID TLV (1), length 7 Subtype MAC address (4): 56:e2:8b:f7:07:bc Port ID TLV (2), length 7 Subtype MAC address (3): 34:ef:b6:ec:38:07 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 108 Debian GNU/Linux 10 (buster) Linux 5.15.11-g0623069265cd #1 SMP PREEMPT Tue May 30 12:36:14 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.44 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::36ef:b6ff:feec:3804 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 4: swp1 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [none] (0x00) PMD autoneg capability [unknown] (0x0000) MAU type 10GBASELR (0x0023) End TLV (0), length 0 tcpdump: listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_transmitted[mandatory] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=171, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=171, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:02:19 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=171, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=25] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=171, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=26] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=171, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=27] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=171, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=28] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=171, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=28] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=171, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=29] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=171, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=30] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=171, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=30] Channel closed DEBUG agg1:Logger.py:156
Passed functional/lldp/test_lldp_transmit.py::test_lldp_transmitted[optional] 59.67
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9494' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_transmitted[optional]">Starting testcase:test_lldp_transmitted[optional] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=171, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=172] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=172] Local address: 172.17.0.3, port 55848 INFO asyncssh:logging.py:92 [conn=172] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=172] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=172] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=172, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:02:20 AM UTC INFO asyncssh:logging.py:92 [conn=172, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=172, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=172, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty-static.service loaded active exited getty on tty2-tty6 if dbus and logind are not available getty@tty1.service loaded active running Getty on tty1 getty@tty2.service loaded active running Getty on tty2 getty@tty3.service loaded active running Getty on tty3 getty@tty4.service loaded active running Getty on tty4 getty@tty5.service loaded active running Getty on tty5 getty@tty6.service loaded active running Getty on tty6 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded activating auto-restart Advanced IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP Authenticator ifupdown-pre.service loaded active exited Helper to synchronize boot up for ifupdown inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited Raise network interfaces ntp.service loaded active running Network Time Service onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited Resets System Activity Data Collector systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-sysusers.service loaded active exited Create System Users systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 44 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=172, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=172, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=172, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=172, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=172, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:02:20 AM UTC INFO asyncssh:logging.py:92 [conn=172, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=172, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=8] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=172, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=172, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=9] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status tx-only INFO asyncssh:logging.py:92 [conn=172, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=10] Command: lldpcli configure ports swp1 lldp status tx-only INFO asyncssh:logging.py:92 [conn=172, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=11] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=172, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=12] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=172, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=12] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "6" }, "rx": { "rx": "0" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=172, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=13] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=172, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=14] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=172, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=15] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show interfaces ports swp1 INFO asyncssh:logging.py:92 [conn=172, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=16] Command: lldpcli -f json show interfaces ports swp1 INFO asyncssh:logging.py:92 [conn=172, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=16] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "via": "unknown", "age": "0 day, 00:00:00", "chassis": { "localhost": { "id": { "type": "mac", "value": "56:e2:8b:f7:07:bc" }, "descr": "Debian GNU/Linux 10 (buster) Linux 5.15.11-g0623069265cd #1 SMP PREEMPT Tue May 30 12:36:14 UTC 2023 aarch64", "mgmt-ip": [ "10.36.118.44", "fe80::36ef:b6ff:feec:3804" ], "capability": [ { "type": "Bridge", "enabled": false }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": true } ] } }, "port": { "id": { "type": "mac", "value": "34:ef:b6:ec:38:07" }, "descr": "swp1" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=172, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=17] Channel closed DEBUG agg1:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=172, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=18] Command: uname -n INFO asyncssh:logging.py:92 [conn=172, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=18] Channel closed DEBUG agg1:Logger.py:156 localhost INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne on agg1... INFO asyncssh:logging.py:92 [conn=172, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=19] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=172, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=20] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=172, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=20] Channel closed DEBUG agg1:Logger.py:156 02:03:18.457601 34:ef:b6:ec:38:07 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 233: LLDP, length 219 Chassis ID TLV (1), length 7 Subtype MAC address (4): 56:e2:8b:f7:07:bc Port ID TLV (2), length 7 Subtype MAC address (3): 34:ef:b6:ec:38:07 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 108 Debian GNU/Linux 10 (buster) Linux 5.15.11-g0623069265cd #1 SMP PREEMPT Tue May 30 12:36:14 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.44 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::36ef:b6ff:feec:3804 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 4: swp1 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [none] (0x00) PMD autoneg capability [unknown] (0x0000) MAU type 10GBASELR (0x0023) End TLV (0), length 0 tcpdump: listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT aggregation 1] Ran timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne on agg1 with rc 0 and out 02:03:18.457601 34:ef:b6:ec:38:07 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 233: LLDP, length 219 Chassis ID TLV (1), length 7 Subtype MAC address (4): 56:e2:8b:f7:07:bc Port ID TLV (2), length 7 Subtype MAC address (3): 34:ef:b6:ec:38:07 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 108 Debian GNU/Linux 10 (buster) Linux 5.15.11-g0623069265cd #1 SMP PREEMPT Tue May 30 12:36:14 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.44 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::36ef:b6ff:feec:3804 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 4: swp1 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [none] (0x00) PMD autoneg capability [unknown] (0x0000) MAU type 10GBASELR (0x0023) End TLV (0), length 0 tcpdump: listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_transmitted[optional] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=172, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=172, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:03:19 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=172, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=23] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=172, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=24] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=172, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=25] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=172, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=26] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=172, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=26] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=172, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=27] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=172, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=28] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=172, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=28] Channel closed DEBUG agg1:Logger.py:156
Passed functional/lldp/test_lldp_transmit.py::test_lldp_tx[disabled] 60.56
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9531' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_tx[disabled]">Starting testcase:test_lldp_tx[disabled] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=172, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=173] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=173] Local address: 172.17.0.3, port 51386 INFO asyncssh:logging.py:92 [conn=173] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=173] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=173] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=173, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:03:20 AM UTC INFO asyncssh:logging.py:92 [conn=173, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=173, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=173, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty-static.service loaded active exited getty on tty2-tty6 if dbus and logind are not available getty@tty1.service loaded active running Getty on tty1 getty@tty2.service loaded active running Getty on tty2 getty@tty3.service loaded active running Getty on tty3 getty@tty4.service loaded active running Getty on tty4 getty@tty5.service loaded active running Getty on tty5 getty@tty6.service loaded active running Getty on tty6 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded activating auto-restart Advanced IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP Authenticator ifupdown-pre.service loaded active exited Helper to synchronize boot up for ifupdown inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited Raise network interfaces ntp.service loaded active running Network Time Service onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited Resets System Activity Data Collector systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-sysusers.service loaded active exited Create System Users systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 44 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=173, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=173, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=173, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=173, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=173, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:03:20 AM UTC INFO asyncssh:logging.py:92 [conn=173, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=173, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=8] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=173, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=173, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=9] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status disabled && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=173, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=10] Command: lldpcli configure ports swp1 lldp status disabled && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=173, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=173, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=11] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=173, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=12] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=173, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=12] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "10" }, "rx": { "rx": "0" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=173, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=13] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=173, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=14] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=173, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=14] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "10" }, "rx": { "rx": "0" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } }
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_tx[disabled] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=173, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=173, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:04:20 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=173, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=17] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=173, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=18] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=173, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=173, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=19] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=173, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=173, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=20] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=173, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=21] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=173, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=22] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=173, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/lldp/test_lldp_transmit.py::test_lldp_tx[interval] 58.81
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9599' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_tx[interval]">Starting testcase:test_lldp_tx[interval] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=174, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=175] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=175] Local address: 172.17.0.3, port 38056 INFO asyncssh:logging.py:92 [conn=175] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=175] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=175] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=175, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:05:25 AM UTC INFO asyncssh:logging.py:92 [conn=175, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=175, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=175, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty-static.service loaded active exited getty on tty2-tty6 if dbus and logind are not available getty@tty1.service loaded active running Getty on tty1 getty@tty2.service loaded active running Getty on tty2 getty@tty3.service loaded active running Getty on tty3 getty@tty4.service loaded active running Getty on tty4 getty@tty5.service loaded active running Getty on tty5 getty@tty6.service loaded active running Getty on tty6 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded activating auto-restart Advanced IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP Authenticator ifupdown-pre.service loaded active exited Helper to synchronize boot up for ifupdown inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited Raise network interfaces ntp.service loaded active running Network Time Service onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited Resets System Activity Data Collector systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-sysusers.service loaded active exited Create System Users systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 44 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=175, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=175, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=175, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=175, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=175, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:05:25 AM UTC INFO asyncssh:logging.py:92 [conn=175, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=175, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=8] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=175, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=175, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=9] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=175, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=10] Command: lldpcli configure ports swp1 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=175, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=11] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=175, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=12] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=175, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=12] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "17" }, "rx": { "rx": "0" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=175, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=13] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=175, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=14] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=175, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=14] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "20" }, "rx": { "rx": "0" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } }
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_tx[interval] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=175, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=175, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:06:23 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=175, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=17] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=175, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=18] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=175, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=19] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=175, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=175, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=20] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=175, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=21] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=175, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=22] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=175, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/lldp/test_lldp_transmit.py::test_lldp_tx_hold 53.03
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9630' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_tx_hold">Starting testcase:test_lldp_tx_hold from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=175, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=176] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=176] Local address: 172.17.0.3, port 35118 INFO asyncssh:logging.py:92 [conn=176] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=176] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=176] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=176, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:06:24 AM UTC INFO asyncssh:logging.py:92 [conn=176, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=176, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=176, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty-static.service loaded active exited getty on tty2-tty6 if dbus and logind are not available getty@tty1.service loaded active running Getty on tty1 getty@tty2.service loaded active running Getty on tty2 getty@tty3.service loaded active running Getty on tty3 getty@tty4.service loaded active running Getty on tty4 getty@tty5.service loaded active running Getty on tty5 getty@tty6.service loaded active running Getty on tty6 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded activating auto-restart Advanced IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP Authenticator ifupdown-pre.service loaded active exited Helper to synchronize boot up for ifupdown inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited Raise network interfaces ntp.service loaded active running Network Time Service onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited Resets System Activity Data Collector systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-sysusers.service loaded active exited Create System Users systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 44 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=176, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=176, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=176, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=176, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=176, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:06:24 AM UTC INFO asyncssh:logging.py:92 [conn=176, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=176, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=8] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=176, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=176, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=9] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-hold 500 && lldpcli configure ports swp1 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=176, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=10] Command: lldpcli configure lldp tx-hold 500 && lldpcli configure ports swp1 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=176, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne on agg1... INFO asyncssh:logging.py:92 [conn=176, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=11] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=176, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=12] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=176, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=12] Channel closed DEBUG agg1:Logger.py:156 02:07:15.357721 34:ef:b6:ec:38:07 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 233: LLDP, length 219 Chassis ID TLV (1), length 7 Subtype MAC address (4): 56:e2:8b:f7:07:bc Port ID TLV (2), length 7 Subtype MAC address (3): 34:ef:b6:ec:38:07 Time to Live TLV (3), length 2: TTL 1000s System Name TLV (5), length 9: localhost System Description TLV (6), length 108 Debian GNU/Linux 10 (buster) Linux 5.15.11-g0623069265cd #1 SMP PREEMPT Tue May 30 12:36:14 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.44 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::36ef:b6ff:feec:3804 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 4: swp1 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [none] (0x00) PMD autoneg capability [unknown] (0x0000) MAU type 10GBASELR (0x0023) End TLV (0), length 0 tcpdump: listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT aggregation 1] Ran timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne on agg1 with rc 0 and out 02:07:15.357721 34:ef:b6:ec:38:07 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 233: LLDP, length 219 Chassis ID TLV (1), length 7 Subtype MAC address (4): 56:e2:8b:f7:07:bc Port ID TLV (2), length 7 Subtype MAC address (3): 34:ef:b6:ec:38:07 Time to Live TLV (3), length 2: TTL 1000s System Name TLV (5), length 9: localhost System Description TLV (6), length 108 Debian GNU/Linux 10 (buster) Linux 5.15.11-g0623069265cd #1 SMP PREEMPT Tue May 30 12:36:14 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.44 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::36ef:b6ff:feec:3804 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 4: swp1 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [none] (0x00) PMD autoneg capability [unknown] (0x0000) MAU type 10GBASELR (0x0023) End TLV (0), length 0 tcpdump: listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_tx_hold from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=176, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=176, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:07:16 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=176, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=15] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=176, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=16] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=176, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=176, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=17] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=176, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=18] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=176, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=18] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-hold": "500", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=176, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=19] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=176, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=20] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=176, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=176, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=21] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-hold 4 INFO asyncssh:logging.py:92 [conn=176, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=22] Command: lldpcli configure lldp tx-hold 4 INFO asyncssh:logging.py:92 [conn=176, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/lldp/test_lldp_tx_rx.py::test_lldp_bridge 160.60
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9662' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_bridge">Starting testcase:test_lldp_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=176, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=177] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=177] Local address: 172.17.0.3, port 57162 INFO asyncssh:logging.py:92 [conn=177] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=177] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=177] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=177, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:07:17 AM UTC INFO asyncssh:logging.py:92 [conn=177, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=177, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=177, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty-static.service loaded active exited getty on tty2-tty6 if dbus and logind are not available getty@tty1.service loaded active running Getty on tty1 getty@tty2.service loaded active running Getty on tty2 getty@tty3.service loaded active running Getty on tty3 getty@tty4.service loaded active running Getty on tty4 getty@tty5.service loaded active running Getty on tty5 getty@tty6.service loaded active running Getty on tty6 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded activating auto-restart Advanced IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP Authenticator ifupdown-pre.service loaded active exited Helper to synchronize boot up for ifupdown inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited Raise network interfaces ntp.service loaded active running Network Time Service onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited Resets System Activity Data Collector systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-sysusers.service loaded active exited Create System Users systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 44 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=177, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=177, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=177, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=177, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=177, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:07:17 AM UTC INFO asyncssh:logging.py:92 [conn=177, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=177, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=8] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=177, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master br0 && ip link set dev swp2 master br0 && ip link set dev swp3 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=177, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=10] Command: ip link set dev swp1 master br0 && ip link set dev swp2 master br0 && ip link set dev swp3 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=177, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=177, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=12] Command: ip link set dev swp1 up && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=177, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_12.0.0.3/24', 'count': 1, 'ip': '12.0.0.3', 'gw': '12.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_13.0.0.3/24', 'count': 1, 'ip': '13.0.0.3', 'gw': '13.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=177, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=13] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=177, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=14] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=177, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=15] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=177, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=16] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=177, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=16] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "27" }, "rx": { "rx": "0" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=177, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=17] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=177, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=18] Command: lldpcli configure ports swp1 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=177, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_12.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_13.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=177, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=19] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=177, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=20] Command: lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=177, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=20] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "via": "LLDP", "rid": "1", "age": "0 day, 00:00:02", "chassis": { "id": { "type": "mac", "value": "a2:2c:38:b8:9c:a6" } }, "port": { "id": { "type": "ifname", "value": "Ethernet0/13" }, "ttl": "120" } } } } } INFO asyncssh:logging.py:92 [conn=177, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=21] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=177, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=22] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=177, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=22] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "77" }, "rx": { "rx": "6" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=177, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=23] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show interfaces ports swp1 INFO asyncssh:logging.py:92 [conn=177, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=24] Command: lldpcli -f json show interfaces ports swp1 INFO asyncssh:logging.py:92 [conn=177, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=24] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "via": "LLDP", "age": "0 day, 00:01:40", "chassis": { "localhost": { "id": { "type": "mac", "value": "56:e2:8b:f7:07:bc" }, "descr": "Debian GNU/Linux 10 (buster) Linux 5.15.11-g0623069265cd #1 SMP PREEMPT Tue May 30 12:36:14 UTC 2023 aarch64", "mgmt-ip": [ "10.36.118.44", "fe80::36ef:b6ff:feec:3804" ], "capability": [ { "type": "Bridge", "enabled": true }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": false } ] } }, "port": { "id": { "type": "mac", "value": "34:ef:b6:ec:38:07" }, "descr": "swp1" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=177, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=25] Channel closed DEBUG agg1:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=177, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=26] Command: uname -n INFO asyncssh:logging.py:92 [conn=177, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=26] Channel closed DEBUG agg1:Logger.py:156 localhost INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne on agg1... INFO asyncssh:logging.py:92 [conn=177, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=27] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=177, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=28] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=177, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=28] Channel closed DEBUG agg1:Logger.py:156 02:09:55.392794 34:ef:b6:ec:38:07 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 233: LLDP, length 219 Chassis ID TLV (1), length 7 Subtype MAC address (4): 56:e2:8b:f7:07:bc Port ID TLV (2), length 7 Subtype MAC address (3): 34:ef:b6:ec:38:07 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 108 Debian GNU/Linux 10 (buster) Linux 5.15.11-g0623069265cd #1 SMP PREEMPT Tue May 30 12:36:14 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Bridge] (0x0004) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.44 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::36ef:b6ff:feec:3804 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 4: swp1 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [none] (0x00) PMD autoneg capability [unknown] (0x0000) MAU type 10GBASELR (0x0023) End TLV (0), length 0 tcpdump: listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT aggregation 1] Ran timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne on agg1 with rc 0 and out 02:09:55.392794 34:ef:b6:ec:38:07 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 233: LLDP, length 219 Chassis ID TLV (1), length 7 Subtype MAC address (4): 56:e2:8b:f7:07:bc Port ID TLV (2), length 7 Subtype MAC address (3): 34:ef:b6:ec:38:07 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 108 Debian GNU/Linux 10 (buster) Linux 5.15.11-g0623069265cd #1 SMP PREEMPT Tue May 30 12:36:14 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Bridge] (0x0004) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.44 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::36ef:b6ff:feec:3804 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 4: swp1 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [none] (0x00) PMD autoneg capability [unknown] (0x0000) MAU type 10GBASELR (0x0023) End TLV (0), length 0 tcpdump: listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=177, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=177, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:09:56 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=177, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=31] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=177, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=32] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=177, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=33] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=177, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=34] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=177, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=34] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=177, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=35] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=177, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=36] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=177, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=37] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=177, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=38] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:09:57 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=177, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=177, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=40] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=177, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":213,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=177, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=177, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=42] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=177, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=42] Channel closed DEBUG agg1:Logger.py:156
Passed functional/lldp/test_lldp_tx_rx.py::test_lldp_enable_disable_ports 238.93
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9715' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_enable_disable_ports">Starting testcase:test_lldp_enable_disable_ports from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=177, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=178] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=178] Local address: 172.17.0.3, port 47364 INFO asyncssh:logging.py:92 [conn=178] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=178] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=178] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=178, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:09:57 AM UTC INFO asyncssh:logging.py:92 [conn=178, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=178, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=178, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty-static.service loaded active exited getty on tty2-tty6 if dbus and logind are not available getty@tty1.service loaded active running Getty on tty1 getty@tty2.service loaded active running Getty on tty2 getty@tty3.service loaded active running Getty on tty3 getty@tty4.service loaded active running Getty on tty4 getty@tty5.service loaded active running Getty on tty5 getty@tty6.service loaded active running Getty on tty6 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded activating auto-restart Advanced IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP Authenticator ifupdown-pre.service loaded active exited Helper to synchronize boot up for ifupdown inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited Raise network interfaces ntp.service loaded active running Network Time Service onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited Resets System Activity Data Collector systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-sysusers.service loaded active exited Create System Users systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 44 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=178, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=178, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=178, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=178, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=178, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:09:57 AM UTC INFO asyncssh:logging.py:92 [conn=178, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=178, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=178, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_12.0.0.3/24', 'count': 1, 'ip': '12.0.0.3', 'gw': '12.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_13.0.0.3/24', 'count': 1, 'ip': '13.0.0.3', 'gw': '13.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=178, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=9] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=178, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=10] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=178, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=178, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=11] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status disabled && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status disabled && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=178, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=12] Command: lldpcli configure ports swp1 lldp status disabled && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status disabled && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=178, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_12.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_13.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=178, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=13] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=178, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=14] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=178, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=14] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "82" }, "rx": { "rx": "6" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "1" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=15] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=178, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=16] Command: lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=178, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=16] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { } } INFO asyncssh:logging.py:92 [conn=178, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=17] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=178, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=18] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=178, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=18] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "82" }, "rx": { "rx": "6" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "1" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=19] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp2 INFO asyncssh:logging.py:92 [conn=178, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=20] Command: lldpcli -f json show statistics ports swp2 INFO asyncssh:logging.py:92 [conn=178, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=20] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp2": { "tx": { "tx": "67" }, "rx": { "rx": "6" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=21] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show neighbors ports swp2 INFO asyncssh:logging.py:92 [conn=178, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=22] Command: lldpcli -f json show neighbors ports swp2 INFO asyncssh:logging.py:92 [conn=178, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=22] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp2": { "via": "LLDP", "rid": "3", "age": "0 day, 00:00:08", "chassis": { "id": { "type": "mac", "value": "02:df:de:f9:e8:5b" } }, "port": { "id": { "type": "mac", "value": "02:18:2d:0d:b3:03" }, "ttl": "178" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=23] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show neighbors ports swp2 INFO asyncssh:logging.py:92 [conn=178, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=24] Command: lldpcli -f json show neighbors ports swp2 INFO asyncssh:logging.py:92 [conn=178, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=24] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp2": { "via": "LLDP", "rid": "3", "age": "0 day, 00:00:08", "chassis": { "id": { "type": "mac", "value": "02:df:de:f9:e8:5b" } }, "port": { "id": { "type": "mac", "value": "02:18:2d:0d:b3:03" }, "ttl": "178" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=25] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp2 INFO asyncssh:logging.py:92 [conn=178, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=26] Command: lldpcli -f json show statistics ports swp2 INFO asyncssh:logging.py:92 [conn=178, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=26] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp2": { "tx": { "tx": "71" }, "rx": { "rx": "6" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=27] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show interfaces ports swp2 INFO asyncssh:logging.py:92 [conn=178, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=28] Command: lldpcli -f json show interfaces ports swp2 INFO asyncssh:logging.py:92 [conn=178, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=28] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp2": { "via": "LLDP", "age": "0 day, 00:02:14", "chassis": { "localhost": { "id": { "type": "mac", "value": "56:e2:8b:f7:07:bc" }, "descr": "Debian GNU/Linux 10 (buster) Linux 5.15.11-g0623069265cd #1 SMP PREEMPT Tue May 30 12:36:14 UTC 2023 aarch64", "mgmt-ip": [ "10.36.118.44", "fe80::36ef:b6ff:feec:3804" ], "capability": [ { "type": "Bridge", "enabled": false }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": true } ] } }, "port": { "id": { "type": "mac", "value": "34:ef:b6:ec:38:08" }, "descr": "swp2" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=29] Channel closed DEBUG agg1:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=178, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=30] Command: uname -n INFO asyncssh:logging.py:92 [conn=178, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=30] Channel closed DEBUG agg1:Logger.py:156 localhost INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 3 tcpdump -i swp2 ether proto 0x88cc -vnne on agg1... INFO asyncssh:logging.py:92 [conn=178, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=31] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp2 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=178, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=32] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp2 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=178, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=32] Channel closed DEBUG agg1:Logger.py:156 02:13:39.385526 34:ef:b6:ec:38:08 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 233: LLDP, length 219 Chassis ID TLV (1), length 7 Subtype MAC address (4): 56:e2:8b:f7:07:bc Port ID TLV (2), length 7 Subtype MAC address (3): 34:ef:b6:ec:38:08 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 108 Debian GNU/Linux 10 (buster) Linux 5.15.11-g0623069265cd #1 SMP PREEMPT Tue May 30 12:36:14 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.44 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::36ef:b6ff:feec:3804 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 4: swp2 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [none] (0x00) PMD autoneg capability [unknown] (0x0000) MAU type 10GBASELR (0x0023) End TLV (0), length 0 tcpdump: listening on swp2, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT aggregation 1] Ran timeout --preserve-status 3 tcpdump -i swp2 ether proto 0x88cc -vnne on agg1 with rc 0 and out 02:13:39.385526 34:ef:b6:ec:38:08 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 233: LLDP, length 219 Chassis ID TLV (1), length 7 Subtype MAC address (4): 56:e2:8b:f7:07:bc Port ID TLV (2), length 7 Subtype MAC address (3): 34:ef:b6:ec:38:08 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 108 Debian GNU/Linux 10 (buster) Linux 5.15.11-g0623069265cd #1 SMP PREEMPT Tue May 30 12:36:14 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.44 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::36ef:b6ff:feec:3804 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 4: swp2 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [none] (0x00) PMD autoneg capability [unknown] (0x0000) MAU type 10GBASELR (0x0023) End TLV (0), length 0 tcpdump: listening on swp2, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO asyncssh:logging.py:92 [conn=178, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=33] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp3 INFO asyncssh:logging.py:92 [conn=178, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=34] Command: lldpcli -f json show statistics ports swp3 INFO asyncssh:logging.py:92 [conn=178, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=34] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp3": { "tx": { "tx": "4" }, "rx": { "rx": "0" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=35] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show neighbors ports swp3 INFO asyncssh:logging.py:92 [conn=178, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=36] Command: lldpcli -f json show neighbors ports swp3 INFO asyncssh:logging.py:92 [conn=178, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=36] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { } } INFO asyncssh:logging.py:92 [conn=178, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=37] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp3 INFO asyncssh:logging.py:92 [conn=178, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=38] Command: lldpcli -f json show statistics ports swp3 INFO asyncssh:logging.py:92 [conn=178, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=38] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp3": { "tx": { "tx": "4" }, "rx": { "rx": "0" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=39] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp4 INFO asyncssh:logging.py:92 [conn=178, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=40] Command: lldpcli -f json show statistics ports swp4 INFO asyncssh:logging.py:92 [conn=178, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=40] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp4": { "tx": { "tx": "75" }, "rx": { "rx": "6" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=41] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show neighbors ports swp4 INFO asyncssh:logging.py:92 [conn=178, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=42] Command: lldpcli -f json show neighbors ports swp4 INFO asyncssh:logging.py:92 [conn=178, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=42] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp4": { "via": "LLDP", "rid": "2", "age": "0 day, 00:00:23", "chassis": { "id": { "type": "mac", "value": "02:dc:40:b5:3c:e7" } }, "port": { "id": { "type": "mac", "value": "02:fd:7f:2c:56:28" }, "ttl": "168" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=43] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show neighbors ports swp4 INFO asyncssh:logging.py:92 [conn=178, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=44] Command: lldpcli -f json show neighbors ports swp4 INFO asyncssh:logging.py:92 [conn=178, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=44] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp4": { "via": "LLDP", "rid": "2", "age": "0 day, 00:00:23", "chassis": { "id": { "type": "mac", "value": "02:dc:40:b5:3c:e7" } }, "port": { "id": { "type": "mac", "value": "02:fd:7f:2c:56:28" }, "ttl": "168" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=45] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp4 INFO asyncssh:logging.py:92 [conn=178, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=46] Command: lldpcli -f json show statistics ports swp4 INFO asyncssh:logging.py:92 [conn=178, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=46] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp4": { "tx": { "tx": "78" }, "rx": { "rx": "6" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=47] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show interfaces ports swp4 INFO asyncssh:logging.py:92 [conn=178, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=48] Command: lldpcli -f json show interfaces ports swp4 INFO asyncssh:logging.py:92 [conn=178, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=48] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp4": { "via": "LLDP", "age": "0 day, 00:02:29", "chassis": { "localhost": { "id": { "type": "mac", "value": "56:e2:8b:f7:07:bc" }, "descr": "Debian GNU/Linux 10 (buster) Linux 5.15.11-g0623069265cd #1 SMP PREEMPT Tue May 30 12:36:14 UTC 2023 aarch64", "mgmt-ip": [ "10.36.118.44", "fe80::36ef:b6ff:feec:3804" ], "capability": [ { "type": "Bridge", "enabled": false }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": true } ] } }, "port": { "id": { "type": "mac", "value": "34:ef:b6:ec:38:0a" }, "descr": "swp4" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=178, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=49] Channel closed DEBUG agg1:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=178, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=50] Command: uname -n INFO asyncssh:logging.py:92 [conn=178, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=50] Channel closed DEBUG agg1:Logger.py:156 localhost INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 3 tcpdump -i swp4 ether proto 0x88cc -vnne on agg1... INFO asyncssh:logging.py:92 [conn=178, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=51] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp4 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=178, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=52] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp4 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=178, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=52] Channel closed DEBUG agg1:Logger.py:156 02:13:53.403475 34:ef:b6:ec:38:0a > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 233: LLDP, length 219 Chassis ID TLV (1), length 7 Subtype MAC address (4): 56:e2:8b:f7:07:bc Port ID TLV (2), length 7 Subtype MAC address (3): 34:ef:b6:ec:38:0a Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 108 Debian GNU/Linux 10 (buster) Linux 5.15.11-g0623069265cd #1 SMP PREEMPT Tue May 30 12:36:14 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.44 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::36ef:b6ff:feec:3804 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 4: swp4 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [none] (0x00) PMD autoneg capability [unknown] (0x0000) MAU type 10GBASELR (0x0023) End TLV (0), length 0 tcpdump: listening on swp4, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 2 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT aggregation 1] Ran timeout --preserve-status 3 tcpdump -i swp4 ether proto 0x88cc -vnne on agg1 with rc 0 and out 02:13:53.403475 34:ef:b6:ec:38:0a > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 233: LLDP, length 219 Chassis ID TLV (1), length 7 Subtype MAC address (4): 56:e2:8b:f7:07:bc Port ID TLV (2), length 7 Subtype MAC address (3): 34:ef:b6:ec:38:0a Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 108 Debian GNU/Linux 10 (buster) Linux 5.15.11-g0623069265cd #1 SMP PREEMPT Tue May 30 12:36:14 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.44 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::36ef:b6ff:feec:3804 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 4: swp4 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [none] (0x00) PMD autoneg capability [unknown] (0x0000) MAU type 10GBASELR (0x0023) End TLV (0), length 0 tcpdump: listening on swp4, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 2 packets received by filter 0 packets dropped by kernel
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_enable_disable_ports from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=178, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=53] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=178, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=54] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:13:56 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=178, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=55] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=178, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=56] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=178, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=178, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=57] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=178, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=58] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=178, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=58] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-hold": "4", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=178, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=59] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=178, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=60] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=178, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=60] Channel closed DEBUG agg1:Logger.py:156
Passed functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-ipv4] 143.46
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-ipv4]">Starting testcase:test_policer_basic_functionality[port-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-9837' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=179, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=180] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=180] Local address: 172.17.0.3, port 57350 INFO asyncssh:logging.py:92 [conn=180] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=180] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=180] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=180, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:15:54 AM UTC INFO asyncssh:logging.py:92 [conn=180, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=180, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=180, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=180, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=180, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=180, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=180, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=180, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=180, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_ip 18.124.12.20 dst_ip 42.58.50.92 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=180, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=10] Command: tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_ip 18.124.12.20 dst_ip 42.58.50.92 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=180, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=180, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=12] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=180, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","dst_ip":"42.58.50.92","src_ip":"18.124.12.20"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_eth_type_ipv4_dst_ip_42.58.50.92_src_ip_18.124.12.20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e617eb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 30763685 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 2171 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=180, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=180, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:18:09 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=180, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=180, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:18:16 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=180, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=180, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=180, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":215,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=180, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=180, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=180, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=180, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:18:16 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=180, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=180, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=180, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=180, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=180, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=180, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=180, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=180, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=180, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=180, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=180, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=180, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=180, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=180, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=180, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=180, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=180, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=180, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=180, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=180, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=180, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=180, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=180, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=180, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=180, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=180, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=180, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=56] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=180, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=180, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=180, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=180, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=60] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=180, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=180, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=62] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=180, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=180, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=64] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=180, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=180, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=66] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=180, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=180, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=68] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=180, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=180, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=70] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=180, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=180, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=72] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=180, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=180, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=74] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=180, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=180, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=76] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=180, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=180, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=78] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=180, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=180, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=80] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=180, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=180, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=82] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=180, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=180, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=84] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=180, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=180, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=86] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=180, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=180, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=88] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=180, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=180, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=90] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=180, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=180, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=92] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=180, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=180, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=94] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=180, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=180, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=96] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=180, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=180, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=98] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=180, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=180, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=100] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=180, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=180, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=102] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=180, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=180, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=104] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=180, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=180, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=106] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=180, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=180, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=108] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=180, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=180, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=110] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=180, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=180, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=180, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=180, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=180, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=180, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=180, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=180, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=180, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=180, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=180, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=180, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=180, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=180, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=180, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=180, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=180, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=180, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=180, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=180, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=180, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=180, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=180, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=180, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=180, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=180, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=180, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=180, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=180, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=180, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=180, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=180, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=180, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-l2] 157.21
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-l2]">Starting testcase:test_policer_basic_functionality[port-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-9992' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=180, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=181] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=181] Local address: 172.17.0.3, port 52490 INFO asyncssh:logging.py:92 [conn=181] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=181] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=181] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=181, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:18:18 AM UTC INFO asyncssh:logging.py:92 [conn=181, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=181, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=181, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=181, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=181, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=181, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=181, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=181, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=181, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 flower skip_sw src_mac 02:92:86:62:54:7c dst_mac 02:3d:87:a4:62:b1 vlan_id 267 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=181, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=10] Command: tc filter add dev swp1 ingress protocol 0x8100 flower skip_sw src_mac 02:92:86:62:54:7c dst_mac 02:3d:87:a4:62:b1 vlan_id 267 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=181, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=181, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=12] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=181, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":267,"dst_mac":"02:3d:87:a4:62:b1","src_mac":"02:92:86:62:54:7c"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_267_dst_mac_02:3d:87:a4:62:b1_src_mac_02:92:86:62:54:7c INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e262050>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 53957805 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 2922 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=181, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=181, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:20:48 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=181, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=181, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:20:53 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=181, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=181, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=181, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":216,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=181, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=181, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=181, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=181, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:20:53 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=181, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=181, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=181, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=181, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=181, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=181, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=181, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=181, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=181, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=181, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=181, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=181, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=181, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=181, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=181, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=181, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=181, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=181, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=181, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=181, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=181, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=181, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=181, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=181, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=181, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=181, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=181, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=56] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=181, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=181, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=181, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=181, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=60] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=181, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=181, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=62] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=181, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=181, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=64] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=181, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=181, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=66] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=181, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=181, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=68] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=181, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=181, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=70] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=181, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=181, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=72] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=181, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=181, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=74] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=181, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=181, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=76] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=181, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=181, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=78] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=181, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=181, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=80] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=181, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=181, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=82] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=181, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=181, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=84] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=181, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=181, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=86] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=181, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=181, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=88] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=181, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=181, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=90] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=181, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=181, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=92] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=181, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=181, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=94] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=181, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=181, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=96] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=181, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=181, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=98] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=181, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=181, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=100] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=181, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=181, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=102] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=181, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=181, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=104] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=181, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=181, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=106] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=181, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=181, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=108] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=181, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=181, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=110] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=181, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=181, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=181, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=181, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=181, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=181, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=181, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=181, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=181, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=181, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=181, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=181, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=181, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=181, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=181, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=181, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=181, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=181, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=181, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=181, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=181, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=181, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=181, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=181, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=181, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=181, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=181, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=181, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=181, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=181, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=181, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=181, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=181, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-udp] 147.81
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-udp]">Starting testcase:test_policer_basic_functionality[port-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-10147' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=181, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=182] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=182] Local address: 172.17.0.3, port 45434 INFO asyncssh:logging.py:92 [conn=182] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=182] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=182] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=182, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:20:55 AM UTC INFO asyncssh:logging.py:92 [conn=182, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=182, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=182, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=182, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=182, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=182, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=182, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=182, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=182, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip flower skip_sw src_ip 84.59.110.29 dst_ip 47.206.135.146 ip_proto udp src_port 12177 dst_port 39012 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=182, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=10] Command: tc filter add dev swp1 ingress protocol ip flower skip_sw src_ip 84.59.110.29 dst_ip 47.206.135.146 ip_proto udp src_port 12177 dst_port 39012 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=182, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=182, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=12] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=182, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"udp","dst_ip":"47.206.135.146","src_ip":"84.59.110.29","dst_port":39012,"src_port":12177},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_eth_type_ipv4_ip_proto_udp_dst_ip_47.206.135.146_src_ip_84.59.110.29_dst_port_39012_src_port_12177 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e12a920>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 32838898 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 2238 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=182, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=182, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:23:16 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=182, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=182, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:23:21 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=182, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=182, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=182, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":217,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=182, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=182, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=182, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=182, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:23:21 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=182, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=182, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=182, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=182, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=182, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=182, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=182, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=182, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=182, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=182, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=182, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=182, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=182, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=182, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=182, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=182, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=182, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=182, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=182, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=182, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=182, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=182, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=182, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=182, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=182, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=182, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=182, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=56] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=182, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=182, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=182, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=182, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=60] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=182, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=182, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=62] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=182, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=182, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=64] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=182, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=182, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=66] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=182, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=182, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=68] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=182, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=182, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=70] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=182, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=182, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=72] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=182, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=182, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=74] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=182, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=182, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=76] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=182, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=182, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=78] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=182, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=182, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=80] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=182, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=182, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=82] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=182, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=182, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=84] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=182, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=182, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=86] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=182, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=182, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=88] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=182, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=182, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=90] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=182, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=182, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=92] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=182, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=182, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=94] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=182, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=182, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=96] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=182, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=182, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=98] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=182, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=182, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=100] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=182, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=182, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=102] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=182, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=182, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=104] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=182, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=182, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=106] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=182, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=182, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=108] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=182, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=182, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=110] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=182, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=182, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=182, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=182, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=182, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=182, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=182, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=182, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=182, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=182, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=182, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=182, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=182, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=182, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=182, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=182, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=182, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=182, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=182, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=182, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=182, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=182, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=182, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=182, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=182, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=182, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=182, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=182, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=182, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=182, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=182, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=182, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=182, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-tcp] 150.01
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-tcp]">Starting testcase:test_policer_basic_functionality[port-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-10302' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=182, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=183] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=183] Local address: 172.17.0.3, port 49258 INFO asyncssh:logging.py:92 [conn=183] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=183] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=183] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=183, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:23:23 AM UTC INFO asyncssh:logging.py:92 [conn=183, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=183, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=183, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=183, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=183, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=183, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=183, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=183, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=183, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_ip 124.137.221.11 dst_ip 81.162.203.162 ip_proto tcp src_port 50389 dst_port 3900 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=183, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=10] Command: tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_ip 124.137.221.11 dst_ip 81.162.203.162 ip_proto tcp src_port 50389 dst_port 3900 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=183, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=183, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=12] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=183, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"tcp","dst_ip":"81.162.203.162","src_ip":"124.137.221.11","dst_port":3900,"src_port":50389},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_eth_type_ipv4_ip_proto_tcp_dst_ip_81.162.203.162_src_ip_124.137.221.11_dst_port_3900_src_port_50389 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e1282e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 28137096 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 2086 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=183, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=183, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:25:45 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=183, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=183, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:25:51 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=183, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=183, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=183, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":218,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=183, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=183, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=183, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=183, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:25:51 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=183, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=183, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=183, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=183, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=183, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=183, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=183, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=183, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=183, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=183, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=183, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=183, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=183, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=183, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=183, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=183, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=183, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=183, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=183, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=183, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=183, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=183, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=183, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=183, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=183, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=183, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=183, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=183, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=56] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=183, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=183, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=183, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=183, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=60] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=183, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=183, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=62] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=183, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=183, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=64] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=183, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=183, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=66] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=183, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=183, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=68] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=183, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=183, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=70] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=183, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=183, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=72] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=183, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=183, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=74] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=183, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=183, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=76] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=183, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=183, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=78] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=183, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=183, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=80] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=183, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=183, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=82] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=183, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=183, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=84] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=183, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=183, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=86] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=183, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=183, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=88] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=183, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=183, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=90] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=183, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=183, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=92] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=183, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=183, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=94] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=183, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=183, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=96] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=183, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=183, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=98] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=183, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=183, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=100] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=183, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=183, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=102] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=183, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=183, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=104] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=183, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=183, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=106] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=183, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=183, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=108] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=183, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=183, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=110] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=183, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=183, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=183, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=183, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=183, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=183, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=183, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=183, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=183, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=183, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=183, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=183, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=183, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=183, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=183, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=183, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=183, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=183, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=183, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=183, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=183, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=183, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=183, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=183, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=183, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=183, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=183, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=183, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=183, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=183, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=183, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=183, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=183, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=183, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=183, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-ipv4] 148.89
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-ipv4]">Starting testcase:test_policer_basic_functionality[shared_block-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-10457' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=183, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=184] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=184] Local address: 172.17.0.3, port 57426 INFO asyncssh:logging.py:92 [conn=184] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=184] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=184] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=184, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:25:53 AM UTC INFO asyncssh:logging.py:92 [conn=184, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=184, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=184, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=184, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=184, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=184, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=184, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 ingress_block 2283 ingress INFO asyncssh:logging.py:92 [conn=184, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=8] Command: tc qdisc add dev swp2 ingress_block 2283 ingress INFO asyncssh:logging.py:92 [conn=184, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 2283 ingress protocol ipv4 flower skip_sw src_ip 19.69.197.163 dst_ip 66.205.255.168 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=184, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=10] Command: tc filter add block 2283 ingress protocol ipv4 flower skip_sw src_ip 19.69.197.163 dst_ip 66.205.255.168 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=184, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 2283 ingress INFO asyncssh:logging.py:92 [conn=184, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=12] Command: tc -j filter show block 2283 ingress INFO asyncssh:logging.py:92 [conn=184, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","dst_ip":"66.205.255.168","src_ip":"19.69.197.163"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp2_eth_type_ipv4_dst_ip_66.205.255.168_src_ip_19.69.197.163 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e24e800>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 2163 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 30510272 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=184, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=184, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:28:15 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=184, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=184, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:28:20 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=184, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=184, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=184, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":219,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=184, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=184, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=184, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=184, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:28:20 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=184, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=184, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=184, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp2","parent":"ffff:fff1","ingress_block":2283,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=184, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=184, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=184, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=184, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=184, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=184, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=184, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=184, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=184, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=184, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=184, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=184, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=184, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=184, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=184, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=184, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=184, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=184, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=184, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=50] Command: tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=184, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=184, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=184, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=184, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=184, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=184, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=56] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=184, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=184, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=184, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=184, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=60] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=184, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=184, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=62] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=184, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=184, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=64] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=184, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=184, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=66] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=184, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=184, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=68] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=184, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=184, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=70] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=184, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=184, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=72] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=184, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=184, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=74] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=184, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=184, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=76] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=184, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=184, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=78] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=184, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=184, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=80] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=184, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=184, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=82] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=184, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=184, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=84] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=184, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=184, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=86] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=184, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=184, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=88] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=184, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=184, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=90] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=184, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=184, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=92] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=184, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=184, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=94] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=184, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=184, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=96] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=184, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=184, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=98] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=184, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=184, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=100] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=184, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=184, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=102] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=184, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=184, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=104] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=184, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=184, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=106] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=184, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=184, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=108] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=184, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=184, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=110] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=184, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=184, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=184, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=184, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=184, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=184, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=184, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=184, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=184, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=184, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=184, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=184, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=184, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=184, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=184, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=184, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=184, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=184, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=184, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=184, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=184, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=184, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=184, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=184, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=184, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=184, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=184, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=184, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=184, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=184, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=184, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=184, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=184, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=184, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=184, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-l2] 147.80
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-l2]">Starting testcase:test_policer_basic_functionality[shared_block-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-10612' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=184, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=185] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=185] Local address: 172.17.0.3, port 56190 INFO asyncssh:logging.py:92 [conn=185] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=185] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=185] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=185, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:28:22 AM UTC INFO asyncssh:logging.py:92 [conn=185, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=185, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=185, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=185, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=185, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=185, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=185, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 ingress_block 1758 ingress INFO asyncssh:logging.py:92 [conn=185, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=8] Command: tc qdisc add dev swp2 ingress_block 1758 ingress INFO asyncssh:logging.py:92 [conn=185, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 1758 ingress protocol 0x8100 flower skip_sw src_mac 02:6e:ee:f8:7f:55 dst_mac 02:e1:4f:ca:f4:55 vlan_id 2000 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=185, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=10] Command: tc filter add block 1758 ingress protocol 0x8100 flower skip_sw src_mac 02:6e:ee:f8:7f:55 dst_mac 02:e1:4f:ca:f4:55 vlan_id 2000 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=185, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 1758 ingress INFO asyncssh:logging.py:92 [conn=185, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=12] Command: tc -j filter show block 1758 ingress INFO asyncssh:logging.py:92 [conn=185, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2000,"dst_mac":"02:e1:4f:ca:f4:55","src_mac":"02:6e:ee:f8:7f:55"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp2_vlan_id_2000_dst_mac_02:e1:4f:ca:f4:55_src_mac_02:6e:ee:f8:7f:55 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e5dc280>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 2148 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 30056212 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=185, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=185, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:30:41 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=185, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=185, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:30:47 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=185, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=185, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=185, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":220,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=185, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=185, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=185, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=185, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:30:48 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=185, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=185, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=185, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp2","parent":"ffff:fff1","ingress_block":1758,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=185, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=185, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=185, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=185, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=185, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=185, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=185, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=185, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=185, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=185, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=185, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=185, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=185, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=185, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=185, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=185, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=185, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=185, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=185, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=50] Command: tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=185, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=185, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=185, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=185, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=185, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=185, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=56] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=185, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=185, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=185, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=185, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=60] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=185, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=185, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=62] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=185, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=185, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=64] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=185, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=185, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=66] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=185, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=185, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=68] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=185, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=185, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=70] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=185, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=185, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=72] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=185, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=185, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=74] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=185, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=185, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=76] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=185, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=185, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=78] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=185, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=185, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=80] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=185, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=185, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=82] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=185, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=185, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=84] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=185, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=185, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=86] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=185, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=185, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=88] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=185, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=185, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=90] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=185, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=185, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=92] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=185, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=185, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=94] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=185, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=185, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=96] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=185, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=185, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=98] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=185, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=185, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=100] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=185, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=185, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=102] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=185, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=185, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=104] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=185, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=185, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=106] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=185, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=185, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=108] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=185, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=185, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=110] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=185, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=185, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=185, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=185, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=185, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=185, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=185, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=185, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=185, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=185, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=185, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=185, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=185, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=185, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=185, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=185, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=185, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=185, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=185, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=185, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=185, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=185, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=185, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=185, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=185, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=185, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=185, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=185, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=185, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=185, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=185, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=185, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=185, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=185, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=185, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-udp] 150.23
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-udp]">Starting testcase:test_policer_basic_functionality[shared_block-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-10767' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=185, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=186] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=186] Local address: 172.17.0.3, port 45772 INFO asyncssh:logging.py:92 [conn=186] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=186] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=186] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=186, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:30:50 AM UTC INFO asyncssh:logging.py:92 [conn=186, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=186, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=186, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=186, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=186, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=186, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=186, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 ingress_block 1265 ingress INFO asyncssh:logging.py:92 [conn=186, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=8] Command: tc qdisc add dev swp2 ingress_block 1265 ingress INFO asyncssh:logging.py:92 [conn=186, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 1265 ingress protocol ip flower skip_sw src_ip 112.230.63.52 dst_ip 24.88.102.51 ip_proto udp src_port 63923 dst_port 2444 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=186, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=10] Command: tc filter add block 1265 ingress protocol ip flower skip_sw src_ip 112.230.63.52 dst_ip 24.88.102.51 ip_proto udp src_port 63923 dst_port 2444 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=186, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 1265 ingress INFO asyncssh:logging.py:92 [conn=186, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=12] Command: tc -j filter show block 1265 ingress INFO asyncssh:logging.py:92 [conn=186, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"udp","dst_ip":"24.88.102.51","src_ip":"112.230.63.52","dst_port":2444,"src_port":63923},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp2_eth_type_ipv4_ip_proto_udp_dst_ip_24.88.102.51_src_ip_112.230.63.52_dst_port_2444_src_port_63923 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e12ba00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 2015 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 25914826 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=186, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=186, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:33:13 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=186, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=186, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:33:18 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=186, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=186, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=186, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":221,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=186, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=186, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=186, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=186, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:33:18 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=186, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=186, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=186, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp2","parent":"ffff:fff1","ingress_block":1265,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=186, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=186, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=186, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=186, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=186, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=186, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=186, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=186, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=186, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=186, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=186, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=186, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=186, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=186, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=186, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=186, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=186, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=186, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=50] Command: tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=186, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=186, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=186, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=186, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=186, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=186, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=56] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=186, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=186, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=186, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=186, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=60] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=186, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=186, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=62] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=186, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=186, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=64] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=186, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=186, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=66] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=186, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=186, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=68] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=186, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=186, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=70] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=186, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=186, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=72] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=186, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=186, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=74] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=186, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=186, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=76] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=186, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=186, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=78] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=186, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=186, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=80] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=186, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=186, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=82] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=186, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=186, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=84] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=186, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=186, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=86] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=186, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=186, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=88] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=186, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=186, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=90] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=186, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=186, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=92] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=186, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=186, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=94] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=186, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=186, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=96] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=186, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=186, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=98] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=186, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=186, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=100] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=186, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=186, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=102] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=186, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=186, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=104] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=186, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=186, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=106] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=186, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=186, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=108] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=186, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=186, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=110] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=186, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=186, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=186, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=186, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=186, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=186, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=186, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=186, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=186, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=186, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=186, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=186, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=186, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=186, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=186, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=186, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=186, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=186, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=186, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=186, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=186, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=186, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=186, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=186, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=186, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=186, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=186, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=186, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=186, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=186, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=186, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=186, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=186, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-tcp] 146.76
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-tcp]">Starting testcase:test_policer_basic_functionality[shared_block-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-10922' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=186, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=187] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=187] Local address: 172.17.0.3, port 45216 INFO asyncssh:logging.py:92 [conn=187] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=187] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=187] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=187, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:33:20 AM UTC INFO asyncssh:logging.py:92 [conn=187, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=187, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=187, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=187, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=187, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=187, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=187, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 ingress_block 1929 ingress INFO asyncssh:logging.py:92 [conn=187, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=8] Command: tc qdisc add dev swp2 ingress_block 1929 ingress INFO asyncssh:logging.py:92 [conn=187, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 1929 ingress protocol ipv4 flower skip_sw src_ip 98.188.207.76 dst_ip 38.10.4.156 ip_proto tcp src_port 61599 dst_port 36276 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=187, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=10] Command: tc filter add block 1929 ingress protocol ipv4 flower skip_sw src_ip 98.188.207.76 dst_ip 38.10.4.156 ip_proto tcp src_port 61599 dst_port 36276 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=187, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 1929 ingress INFO asyncssh:logging.py:92 [conn=187, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=12] Command: tc -j filter show block 1929 ingress INFO asyncssh:logging.py:92 [conn=187, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"tcp","dst_ip":"38.10.4.156","src_ip":"98.188.207.76","dst_port":36276,"src_port":61599},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp2_eth_type_ipv4_ip_proto_tcp_dst_ip_38.10.4.156_src_ip_98.188.207.76_dst_port_36276_src_port_61599 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e24e140>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 2195 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 31481542 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=187, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=187, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:35:39 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=187, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=187, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:35:44 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=187, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=187, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=187, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":222,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=187, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=187, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=187, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=187, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:35:45 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=187, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=187, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=187, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp2","parent":"ffff:fff1","ingress_block":1929,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=187, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=187, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=187, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=187, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=187, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=187, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=187, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=187, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=187, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=187, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=187, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=187, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=187, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=187, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=187, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=187, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=187, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=187, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=50] Command: tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=187, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=187, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=187, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=187, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=187, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=187, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=56] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=187, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=187, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=187, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=187, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=60] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=187, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=187, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=62] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=187, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=187, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=64] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=187, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=187, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=66] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=187, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=187, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=68] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=187, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=187, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=70] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=187, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=187, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=72] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=187, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=187, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=74] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=187, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=187, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=76] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=187, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=187, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=78] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=187, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=187, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=80] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=187, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=187, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=82] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=187, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=187, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=84] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=187, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=187, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=86] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=187, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=187, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=88] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=187, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=187, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=90] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=187, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=187, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=92] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=187, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=187, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=94] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=187, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=187, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=96] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=187, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=187, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=98] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=187, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=187, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=100] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=187, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=187, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=102] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=187, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=187, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=104] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=187, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=187, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=106] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=187, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=187, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=108] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=187, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=187, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=110] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=187, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=187, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=187, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=187, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=187, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=187, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=187, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=187, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=187, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=187, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=187, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=187, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=187, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=187, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=187, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=187, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=187, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=187, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=187, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=187, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=187, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=187, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=187, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=187, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=187, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=187, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=187, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=187, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=187, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=187, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=187, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=187, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=187, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/policer/test_policer_dynamic_traps.py::test_policer_interact_with_acl_drop 256.47
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_interact_with_acl_drop">Starting testcase:test_policer_interact_with_acl_drop from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_dynamic_traps.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-11077' coro=<test_policer_interact_with_acl_drop() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_dynamic_traps.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=187, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=188] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=188] Local address: 172.17.0.3, port 50940 INFO asyncssh:logging.py:92 [conn=188] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=188] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=188] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:35:47 AM UTC INFO asyncssh:logging.py:92 [conn=188, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=188, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=188, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=188, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=188, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=188, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=188, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=188, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=188, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=188, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=10] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=188, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action drop INFO asyncssh:logging.py:92 [conn=188, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=12] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action drop INFO asyncssh:logging.py:92 [conn=188, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=188, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=14] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=188, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e2034c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 95775429 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 3563 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 3564 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 3563 INFO asyncssh:logging.py:92 [conn=188, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=188, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=16] Command: tc filter delete dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=188, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=188, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=18] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=188, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e24dff0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 132441401 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 5526 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 5526 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 5525 INFO asyncssh:logging.py:92 [conn=188, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=188, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=20] Command: tc filter delete dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=188, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=188, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=22] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=188, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e2b6e00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 278409285 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 6109 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 6109 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 6108 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_interact_with_acl_drop from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_dynamic_traps.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=188, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:39:55 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=188, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:40:01 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=188, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=188, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=188, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=188, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=188, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=188, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=188, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=188, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=188, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=188, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=188, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=188, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=188, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=188, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=188, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=188, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=188, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=50] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=188, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=188, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=52] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=188, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=52] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=188, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=188, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=188, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=56] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=188, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=188, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=58] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=188, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=188, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=60] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=188, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=188, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=62] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=188, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=188, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=64] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=188, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=188, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=66] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=188, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=188, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=68] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=188, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=188, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=70] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=188, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=188, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=72] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=188, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=188, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=74] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=188, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=188, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=76] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=188, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=188, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=78] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=188, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=188, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=80] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=188, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=188, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=82] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=188, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=188, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=84] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=188, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=188, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=86] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=188, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=188, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=88] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=188, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=188, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=90] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=188, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=188, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=92] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=188, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=188, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=94] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=188, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=188, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=96] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=188, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=188, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=98] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=188, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=188, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=100] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=188, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=188, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=102] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=188, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=188, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=104] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=188, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=188, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=106] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=188, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=188, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=108] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=188, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=188, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=110] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=188, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=188, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=112] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=188, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=188, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=114] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=188, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=188, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=116] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=188, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=188, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=118] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=188, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=188, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=120] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=188, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=188, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=122] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=188, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=188, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=124] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=188, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=188, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=126] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=188, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=188, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=128] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=188, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=188, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=130] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=188, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=188, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=132] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=188, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=188, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=134] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=188, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=188, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=136] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=188, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=188, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=138] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=188, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=188, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=140] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=188, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=188, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=142] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=188, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=188, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=144] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=188, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=188, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=146] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=188, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=188, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=148] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=188, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=149] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=150] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=150] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=150] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:40:03 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=188, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=151] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=188, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=152] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=188, chan=152] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=152] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":223,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=188, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=153] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=188, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=154] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=188, chan=154] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=154] Channel closed DEBUG agg1:Logger.py:156
Passed functional/policer/test_policer_interaction_with_span.py::test_policer_interaction_span 344.77
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_interaction_span">Starting testcase:test_policer_interaction_span from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_interaction_with_span.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-11244' coro=<test_policer_interaction_span() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_interaction_with_span.py:45> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=188, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=189] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=189] Local address: 172.17.0.3, port 59670 INFO asyncssh:logging.py:92 [conn=189] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=189] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=189] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=189, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:40:03 AM UTC INFO asyncssh:logging.py:92 [conn=189, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=189, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=189, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=189, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=189, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=189, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=189, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=189, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=189, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress pref 200 matchall skip_sw action mirred egress mirror dev swp2 INFO asyncssh:logging.py:92 [conn=189, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=10] Command: tc filter add dev swp1 ingress pref 200 matchall skip_sw action mirred egress mirror dev swp2 INFO asyncssh:logging.py:92 [conn=189, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip pref 300 flower src_mac 02:05:0e:11:9c:a8 dst_mac 02:dd:57:ee:81:88 src_ip 106.38.228.165 dst_ip 123.179.185.167 action police rate 50000000 burst 50100000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=189, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=12] Command: tc filter add dev swp1 ingress protocol ip pref 300 flower src_mac 02:05:0e:11:9c:a8 dst_mac 02:dd:57:ee:81:88 src_ip 106.38.228.165 dst_ip 123.179.185.167 action police rate 50000000 burst 50100000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=189, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=189, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=14] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=189, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"all","pref":200,"kind":"matchall","chain":0},{"protocol":"all","pref":200,"kind":"matchall","chain":0,"options":{"handle":1,"skip_sw":true,"in_hw":true,"actions":[{"order":1,"kind":"mirred","mirred_action":"mirror","direction":"egress","to_dev":"swp2","control_action":{"type":"pipe"},"index":1,"ref":1,"bind":1}]}},{"protocol":"ip","pref":300,"kind":"flower","chain":0},{"protocol":"ip","pref":300,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:dd:57:ee:81:88","src_mac":"02:05:0e:11:9c:a8","eth_type":"ipv4","dst_ip":"123.179.185.167","src_ip":"106.38.228.165"},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e2b5cf0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 2204013 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 2767041 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 563028 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 563028 INFO DENT:Logger.py:84 [DENT aggregation 1] Verifying rate for the mirred port 10.36.118.199:1:6 INFO DENT:Logger.py:84 [DENT aggregation 1] Verifying rate for the port 10.36.118.199:1:7 INFO DENT:Logger.py:84 [DENT aggregation 1] Verifying rate for the port 10.36.118.199:1:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e2b7d90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 2171803 Rx 2171804 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 2171803 Rx 2729463 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 2729463 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 2729463 INFO DENT:Logger.py:84 [DENT aggregation 1] Verifying rate for the port 10.36.118.199:1:5 INFO DENT:Logger.py:84 [DENT aggregation 1] Verifying rate for the port 10.36.118.199:1:6 INFO DENT:Logger.py:84 [DENT aggregation 1] Verifying rate for the port 10.36.118.199:1:7 INFO DENT:Logger.py:84 [DENT aggregation 1] Verifying rate for the port 10.36.118.199:1:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e2b46a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream_swp1 SIP-DIP N/A Tx 1658773 Rx 2007077 Loss INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI stream_swp1 SIP-DIP N/A Tx 1658772 Rx 328382 Loss 80.203 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI stream_swp1 SIP-DIP N/A Tx 1658772 Rx 348389 Loss 78.997 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI stream_swp2 SIP-DIP N/A Tx 1658773 Rx 1658772 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI stream_swp2 SIP-DIP N/A Tx 1658772 Rx 1658772 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:8 TI stream_swp2 SIP-DIP N/A Tx 1658772 Rx 1658772 Loss 0.000 INFO DENT:Logger.py:84 [DENT aggregation 1] Verifying rate for the port 10.36.118.199:1:5 and stream stream_swp2 INFO DENT:Logger.py:84 [DENT aggregation 1] Verifying rate for the port 10.36.118.199:1:7 and stream stream_swp2 INFO DENT:Logger.py:84 [DENT aggregation 1] Verifying rate for the port 10.36.118.199:1:8 and stream stream_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_interaction_span from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_interaction_with_span.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=189, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=189, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:45:41 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=189, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=189, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:45:45 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=189, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=189, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=20] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=189, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=189, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=189, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=22] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=189, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=22] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=189, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=24] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=189, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=24] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=26] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=189, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=42] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=189, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=189, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=44] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=189, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=44] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=189, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=46] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=189, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=189, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=48] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=189, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=189, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=50] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=189, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=189, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=52] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=189, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=189, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=54] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=189, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=189, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=56] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=189, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=189, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=58] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=189, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=189, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=60] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=189, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=189, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=62] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=189, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=189, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=64] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=189, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=189, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=66] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=189, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=189, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=68] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=189, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=189, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=70] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=189, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=189, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=72] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=189, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=189, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=74] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=189, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=189, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=76] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=189, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=189, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=78] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=189, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=189, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=80] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=189, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=189, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=82] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=189, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=189, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=84] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=189, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=189, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=86] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=189, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=189, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=88] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=189, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=189, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=90] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=189, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=189, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=92] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=189, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=189, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=94] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=189, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=189, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=96] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=189, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=189, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=98] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=189, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=189, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=100] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=189, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=189, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=102] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=189, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=189, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=104] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=189, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=189, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=106] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=189, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=189, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=108] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=189, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=189, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=110] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=189, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=189, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=112] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=189, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=189, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=114] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=189, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=189, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=116] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=189, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=189, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=118] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=189, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=189, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=120] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=189, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=189, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=122] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=189, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=189, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=124] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=189, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=189, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=126] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=189, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=189, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=128] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=189, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=189, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=130] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=189, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=189, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=132] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=189, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=189, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=134] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=189, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=189, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=136] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=189, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=189, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=138] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=189, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=189, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=140] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=189, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=141] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=189, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=142] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=142] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=142] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:45:47 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=189, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=143] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=189, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=144] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=189, chan=144] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=144] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":224,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=189, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=145] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=189, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=146] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=189, chan=146] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=146] Channel closed DEBUG agg1:Logger.py:156
Passed functional/policer/test_policer_negative_add_rule_to_bond.py::test_policer_bond_rule_not_offloaded 3.97
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_bond_rule_not_offloaded">Starting testcase:test_policer_bond_rule_not_offloaded from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_negative_add_rule_to_bond.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-11403' coro=<test_policer_bond_rule_not_offloaded() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_negative_add_rule_to_bond.py:32> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=189, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=190] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=190] Local address: 172.17.0.3, port 59372 INFO asyncssh:logging.py:92 [conn=190] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=190] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=190] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:45:48 AM UTC INFO asyncssh:logging.py:92 [conn=190, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name bond33 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=190, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=2] Command: ip link add name bond33 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=190, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond33 up INFO asyncssh:logging.py:92 [conn=190, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=4] Command: ip link set dev bond33 up INFO asyncssh:logging.py:92 [conn=190, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down INFO asyncssh:logging.py:92 [conn=190, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=6] Command: ip link set dev swp1 down && ip link set dev swp2 down INFO asyncssh:logging.py:92 [conn=190, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master bond33 && ip link set dev swp2 master bond33 INFO asyncssh:logging.py:92 [conn=190, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=8] Command: ip link set dev swp1 master bond33 && ip link set dev swp2 master bond33 INFO asyncssh:logging.py:92 [conn=190, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=190, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=190, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev bond33 ingress INFO asyncssh:logging.py:92 [conn=190, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=12] Command: tc qdisc add dev bond33 ingress INFO asyncssh:logging.py:92 [conn=190, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev bond33 ingress protocol 0x9100 flower action pass INFO asyncssh:logging.py:92 [conn=190, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=14] Command: tc filter add dev bond33 ingress protocol 0x9100 flower action pass INFO asyncssh:logging.py:92 [conn=190, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev bond33 ingress INFO asyncssh:logging.py:92 [conn=190, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=16] Command: tc -j filter show dev bond33 ingress INFO asyncssh:logging.py:92 [conn=190, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"[37120]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37120]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"9100"},"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1}]}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_bond_rule_not_offloaded from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_negative_add_rule_to_bond.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=190, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:45:49 AM UTC INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=190, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=190, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=20] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=190, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond33","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond33","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:08","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:08","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":225,"ifname":"bond33","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=190, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond33 INFO asyncssh:logging.py:92 [conn=190, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=22] Command: ip link delete bond33 INFO asyncssh:logging.py:92 [conn=190, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=190, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:45:50 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=190, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:45:50 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=190, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=190, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=190, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=190, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=190, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=190, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=190, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=190, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=190, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=50] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=190, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=190, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=190, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=190, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=190, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=190, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=190, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=190, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=58] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=190, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=190, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=60] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=190, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=190, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=62] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=190, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=190, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=64] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=190, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=190, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=66] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=190, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=190, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=68] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=190, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=190, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=70] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=190, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=190, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=72] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=190, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=190, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=74] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=190, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=190, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=76] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=190, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=190, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=78] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=190, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=190, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=80] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=190, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=190, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=82] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=190, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=190, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=84] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=190, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=190, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=86] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=190, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=190, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=88] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=190, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=190, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=90] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=190, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=190, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=92] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=190, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=190, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=94] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=190, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=190, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=96] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=190, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=190, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=98] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=190, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=190, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=100] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=190, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=190, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=102] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=190, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=190, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=104] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=190, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=190, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=106] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=190, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=190, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=108] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=190, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=190, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=110] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=190, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=190, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=112] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=190, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=190, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=114] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=190, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=190, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=116] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=190, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=190, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=118] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=190, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=190, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=120] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=190, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=190, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=122] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=190, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=190, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=124] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=190, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=190, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=126] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=190, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=190, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=128] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=190, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=190, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=130] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=190, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=190, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=132] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=190, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=190, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=134] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=190, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=190, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=136] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=190, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=190, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=138] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=190, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=190, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=140] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=190, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=190, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=142] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=190, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=190, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=144] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=190, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/policer/test_policer_rate_per_rule.py::test_policer_rate_per_rule 245.51
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rate_per_rule">Starting testcase:test_policer_rate_per_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_per_rule.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-11560' coro=<test_policer_rate_per_rule() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_per_rule.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=190, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=191] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=191] Local address: 172.17.0.3, port 36300 INFO asyncssh:logging.py:92 [conn=191] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=191] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=191] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=191, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:45:52 AM UTC INFO asyncssh:logging.py:92 [conn=191, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=191, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=191, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=191, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=191, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=191, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=191, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=191, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=191, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 pref 100 flower src_mac 02:ff:9d:48:5e:0a dst_mac 02:cf:b7:cd:7c:58 src_ip 54.75.120.93 dst_ip 72.182.66.147 ip_proto udp src_port 38813 dst_port 36308 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=191, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=10] Command: tc filter add dev swp1 ingress protocol ipv4 pref 100 flower src_mac 02:ff:9d:48:5e:0a dst_mac 02:cf:b7:cd:7c:58 src_ip 54.75.120.93 dst_ip 72.182.66.147 ip_proto udp src_port 38813 dst_port 36308 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=191, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 pref 200 flower src_mac 02:24:8b:d8:03:c4 dst_mac 02:88:6f:c7:c8:e9 src_ip 123.54.152.111 dst_ip 107.242.174.34 ip_proto udp src_port 1417 dst_port 19410 action police rate 400000 burst 401000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=191, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=12] Command: tc filter add dev swp1 ingress protocol ipv4 pref 200 flower src_mac 02:24:8b:d8:03:c4 dst_mac 02:88:6f:c7:c8:e9 src_ip 123.54.152.111 dst_ip 107.242.174.34 ip_proto udp src_port 1417 dst_port 19410 action police rate 400000 burst 401000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=191, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip pref 300 flower src_mac 02:0a:2d:08:bf:27 dst_mac 02:7e:83:f8:ed:c4 src_ip 91.151.148.186 dst_ip 34.188.111.207 ip_proto udp src_port 44097 dst_port 37170 action police rate 600000 burst 601000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=191, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=14] Command: tc filter add dev swp1 ingress protocol ip pref 300 flower src_mac 02:0a:2d:08:bf:27 dst_mac 02:7e:83:f8:ed:c4 src_ip 91.151.148.186 dst_ip 34.188.111.207 ip_proto udp src_port 44097 dst_port 37170 action police rate 600000 burst 601000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=191, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=191, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=191, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":100,"kind":"flower","chain":0},{"protocol":"ip","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:cf:b7:cd:7c:58","src_mac":"02:ff:9d:48:5e:0a","eth_type":"ipv4","ip_proto":"udp","dst_ip":"72.182.66.147","src_ip":"54.75.120.93","dst_port":36308,"src_port":38813},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"ip","pref":200,"kind":"flower","chain":0},{"protocol":"ip","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:88:6f:c7:c8:e9","src_mac":"02:24:8b:d8:03:c4","eth_type":"ipv4","ip_proto":"udp","dst_ip":"107.242.174.34","src_ip":"123.54.152.111","dst_port":19410,"src_port":1417},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"ip","pref":300,"kind":"flower","chain":0},{"protocol":"ip","pref":300,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:7e:83:f8:ed:c4","src_mac":"02:0a:2d:08:bf:27","eth_type":"ipv4","ip_proto":"udp","dst_ip":"34.188.111.207","src_ip":"91.151.148.186","dst_port":37170,"src_port":44097},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":3,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:cf:b7:cd:7c:58_src_mac_02:ff:9d:48:5e:0a_eth_type_ipv4_ip_proto_udp_dst_ip_72.182.66.147_src_ip_54.75.120.93_dst_port_36308_src_port_38813 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:88:6f:c7:c8:e9_src_mac_02:24:8b:d8:03:c4_eth_type_ipv4_ip_proto_udp_dst_ip_107.242.174.34_src_ip_123.54.152.111_dst_port_19410_src_port_1417 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:7e:83:f8:ed:c4_src_mac_02:0a:2d:08:bf:27_eth_type_ipv4_ip_proto_udp_dst_ip_34.188.111.207_src_ip_91.151.148.186_dst_port_37170_src_port_44097 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e1287f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp1_dst_mac_02:cf:b7:cd:7c:58_src_mac_02:ff:9d:48:5e:0a_eth_type_ipv4_ip_proto_udp_dst_ip_72.182.66.147_src_ip_54.75.120.93_dst_port_36308_src_port_38813 Tx 24138181 Rx 2933 Frames Delta 24135248 Loss 99.988 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp1_dst_mac_02:88:6f:c7:c8:e9_src_mac_02:24:8b:d8:03:c4_eth_type_ipv4_ip_proto_udp_dst_ip_107.242.174.34_src_ip_123.54.152.111_dst_port_19410_src_port_1417 Tx 24138181 Rx 4690 Frames Delta 24133491 Loss 99.981 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp1_dst_mac_02:7e:83:f8:ed:c4_src_mac_02:0a:2d:08:bf:27_eth_type_ipv4_ip_proto_udp_dst_ip_34.188.111.207_src_ip_91.151.148.186_dst_port_37170_src_port_44097 Tx 24138191 Rx 7032 Frames Delta 24131159 Loss 99.971 INFO DENT:Logger.py:84 [DENT aggregation 1] Veryfing rate for the stream swp1_dst_mac_02:cf:b7:cd:7c:58_src_mac_02:ff:9d:48:5e:0a_eth_type_ipv4_ip_proto_udp_dst_ip_72.182.66.147_src_ip_54.75.120.93_dst_port_36308_src_port_38813 INFO DENT:Logger.py:84 [DENT aggregation 1] Veryfing rate for the stream swp1_dst_mac_02:88:6f:c7:c8:e9_src_mac_02:24:8b:d8:03:c4_eth_type_ipv4_ip_proto_udp_dst_ip_107.242.174.34_src_ip_123.54.152.111_dst_port_19410_src_port_1417 INFO DENT:Logger.py:84 [DENT aggregation 1] Veryfing rate for the stream swp1_dst_mac_02:7e:83:f8:ed:c4_src_mac_02:0a:2d:08:bf:27_eth_type_ipv4_ip_proto_udp_dst_ip_34.188.111.207_src_ip_91.151.148.186_dst_port_37170_src_port_44097 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rate_per_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_per_rule.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=191, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=191, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:49:50 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=191, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=191, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:49:55 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=191, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=191, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=22] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=191, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=191, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=191, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=24] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=191, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=24] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=191, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=26] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=191, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=191, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=44] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=191, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=191, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=46] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=191, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=46] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=191, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=191, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=191, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=191, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=191, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=191, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=191, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=191, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=191, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=191, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=191, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=191, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=191, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=191, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=191, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=191, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=191, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=191, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=191, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=191, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=191, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=191, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=191, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=191, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=191, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=191, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=191, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=191, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=191, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=191, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=191, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=191, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=191, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=191, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=191, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=191, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=191, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=191, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=191, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=191, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=191, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=191, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=191, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=191, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=191, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=191, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=191, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=191, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=191, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=191, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=191, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=191, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=191, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=191, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=191, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=191, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=191, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=191, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=191, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=191, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=191, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=191, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=191, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=191, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=191, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=112] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=191, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=191, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=114] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=191, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=191, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=116] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=191, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=191, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=118] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=191, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=191, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=120] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=191, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=191, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=122] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=191, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=191, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=124] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=191, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=191, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=126] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=191, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=191, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=128] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=191, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=191, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=130] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=191, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=191, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=132] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=191, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=191, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=134] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=191, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=191, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=136] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=191, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=191, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=138] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=191, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=191, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=140] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=191, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=191, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=142] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=191, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=143] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=191, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=144] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=144] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=144] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:49:57 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=191, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=145] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=191, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=146] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=191, chan=146] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=146] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":226,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=191, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=147] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=191, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=148] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=191, chan=148] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=148] Channel closed DEBUG agg1:Logger.py:156
Passed functional/policer/test_policer_rate_units.py::test_policer_rate_config[IEC] 244.10
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rate_config[IEC]">Starting testcase:test_policer_rate_config[IEC] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-11721' coro=<test_policer_rate_config() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=191, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=192] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=192] Local address: 172.17.0.3, port 57112 INFO asyncssh:logging.py:92 [conn=192] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=192] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=192] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=192, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:49:57 AM UTC INFO asyncssh:logging.py:92 [conn=192, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=192, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=192, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=192, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=192, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=192, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=192, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=192, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=192, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip flower skip_sw src_mac 02:b2:5e:f1:70:68 dst_mac 02:27:0c:52:f1:6a src_ip 62.145.16.41 dst_ip 60.29.152.141 ip_proto tcp src_port 42187 dst_port 22349 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=10] Command: tc filter add dev swp1 ingress protocol ip flower skip_sw src_mac 02:b2:5e:f1:70:68 dst_mac 02:27:0c:52:f1:6a src_ip 62.145.16.41 dst_ip 60.29.152.141 ip_proto tcp src_port 42187 dst_port 22349 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=192, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=12] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=192, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:27:0c:52:f1:6a","src_mac":"02:b2:5e:f1:70:68","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"60.29.152.141","src_ip":"62.145.16.41","dst_port":22349,"src_port":42187},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:27:0c:52:f1:6a_src_mac_02:b2:5e:f1:70:68_eth_type_ipv4_ip_proto_tcp_dst_ip_60.29.152.141_src_ip_62.145.16.41_dst_port_22349_src_port_42187 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=192, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=192, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=14] Command: tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=192, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip flower skip_sw src_mac 02:b2:5e:f1:70:68 dst_mac 02:27:0c:52:f1:6a src_ip 62.145.16.41 dst_ip 60.29.152.141 ip_proto tcp src_port 42187 dst_port 22349 action police rate 0.00023283064365386998gibit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=16] Command: tc filter add dev swp1 ingress protocol ip flower skip_sw src_mac 02:b2:5e:f1:70:68 dst_mac 02:27:0c:52:f1:6a src_ip 62.145.16.41 dst_ip 60.29.152.141 ip_proto tcp src_port 42187 dst_port 22349 action police rate 0.00023283064365386998gibit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e129e10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 58335280 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 2553 INFO asyncssh:logging.py:92 [conn=192, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=192, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=18] Command: tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=192, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip flower skip_sw src_mac 02:b2:5e:f1:70:68 dst_mac 02:27:0c:52:f1:6a src_ip 62.145.16.41 dst_ip 60.29.152.141 ip_proto tcp src_port 42187 dst_port 22349 action police rate 30.517578125kibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=20] Command: tc filter add dev swp1 ingress protocol ip flower skip_sw src_mac 02:b2:5e:f1:70:68 dst_mac 02:27:0c:52:f1:6a src_ip 62.145.16.41 dst_ip 60.29.152.141 ip_proto tcp src_port 42187 dst_port 22349 action police rate 30.517578125kibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e761870>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 157745816 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 334196 INFO asyncssh:logging.py:92 [conn=192, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=192, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=22] Command: tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=192, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip flower skip_sw src_mac 02:b2:5e:f1:70:68 dst_mac 02:27:0c:52:f1:6a src_ip 62.145.16.41 dst_ip 60.29.152.141 ip_proto tcp src_port 42187 dst_port 22349 action police rate 0.029802322387695mibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=24] Command: tc filter add dev swp1 ingress protocol ip flower skip_sw src_mac 02:b2:5e:f1:70:68 dst_mac 02:27:0c:52:f1:6a src_ip 62.145.16.41 dst_ip 60.29.152.141 ip_proto tcp src_port 42187 dst_port 22349 action police rate 0.029802322387695mibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e5df1c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 257859710 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 746261 INFO asyncssh:logging.py:92 [conn=192, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=192, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=26] Command: tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=192, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip flower skip_sw src_mac 02:b2:5e:f1:70:68 dst_mac 02:27:0c:52:f1:6a src_ip 62.145.16.41 dst_ip 60.29.152.141 ip_proto tcp src_port 42187 dst_port 22349 action police rate 2.9103830456735e-05gibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=28] Command: tc filter add dev swp1 ingress protocol ip flower skip_sw src_mac 02:b2:5e:f1:70:68 dst_mac 02:27:0c:52:f1:6a src_ip 62.145.16.41 dst_ip 60.29.152.141 ip_proto tcp src_port 42187 dst_port 22349 action police rate 2.9103830456735e-05gibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e129e40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 356769693 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 1084503 INFO asyncssh:logging.py:92 [conn=192, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=192, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=30] Command: tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=192, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip flower skip_sw src_mac 02:b2:5e:f1:70:68 dst_mac 02:27:0c:52:f1:6a src_ip 62.145.16.41 dst_ip 60.29.152.141 ip_proto tcp src_port 42187 dst_port 22349 action police rate 2.8421709430404997e-08tibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=32] Command: tc filter add dev swp1 ingress protocol ip flower skip_sw src_mac 02:b2:5e:f1:70:68 dst_mac 02:27:0c:52:f1:6a src_ip 62.145.16.41 dst_ip 60.29.152.141 ip_proto tcp src_port 42187 dst_port 22349 action police rate 2.8421709430404997e-08tibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e128520>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 458088130 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 1431940 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rate_config[IEC] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=192, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=33] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=192, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=34] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:53:54 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=192, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=35] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=192, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=36] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:53:59 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=192, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=192, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=38] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=192, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=192, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=192, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=40] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=192, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=192, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=42] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=192, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=192, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=60] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=192, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=192, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=62] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=192, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=62] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=192, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=64] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=192, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=192, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=66] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=192, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=192, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=68] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=192, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=192, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=70] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=192, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=192, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=72] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=192, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=192, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=74] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=192, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=192, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=76] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=192, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=192, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=78] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=192, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=192, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=80] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=192, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=192, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=82] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=192, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=192, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=84] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=192, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=192, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=86] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=192, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=192, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=88] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=192, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=192, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=90] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=192, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=192, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=92] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=192, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=192, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=94] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=192, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=192, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=96] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=192, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=192, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=98] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=192, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=192, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=100] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=192, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=192, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=102] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=192, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=192, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=104] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=192, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=192, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=106] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=192, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=192, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=108] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=192, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=192, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=110] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=192, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=192, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=112] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=192, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=192, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=114] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=192, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=192, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=116] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=192, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=192, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=118] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=192, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=192, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=120] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=192, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=192, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=122] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=192, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=192, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=124] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=192, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=192, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=126] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=192, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=192, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=128] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=192, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=192, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=130] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=192, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=192, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=132] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=192, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=192, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=134] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=192, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=192, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=136] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=192, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=192, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=138] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=192, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=192, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=140] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=192, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=192, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=142] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=192, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=192, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=144] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=192, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=192, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=146] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=192, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=192, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=148] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=192, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=192, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=150] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=192, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=192, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=152] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=192, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=192, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=154] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=192, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=154] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=155] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=192, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=156] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=192, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=156] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=157] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=192, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=158] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=192, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=158] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=159] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=192, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=160] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=160] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=160] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:54:01 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=192, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=161] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=192, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=162] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=192, chan=162] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=162] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":227,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=192, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=163] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=192, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=164] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=192, chan=164] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=164] Channel closed DEBUG agg1:Logger.py:156
Passed functional/policer/test_policer_rate_units.py::test_policer_rate_config[SI] 266.95
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rate_config[SI]">Starting testcase:test_policer_rate_config[SI] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-11898' coro=<test_policer_rate_config() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=192, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=193] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=193] Local address: 172.17.0.3, port 45552 INFO asyncssh:logging.py:92 [conn=193] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=193] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=193] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:54:02 AM UTC INFO asyncssh:logging.py:92 [conn=193, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=193, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=193, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=193, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=193, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=193, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=193, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=193, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=193, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:38:5e:64:58:aa dst_mac 02:ac:2d:89:8d:e3 src_ip 95.138.112.222 dst_ip 74.160.89.89 ip_proto tcp src_port 25433 dst_port 60794 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=10] Command: tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:38:5e:64:58:aa dst_mac 02:ac:2d:89:8d:e3 src_ip 95.138.112.222 dst_ip 74.160.89.89 ip_proto tcp src_port 25433 dst_port 60794 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=193, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=12] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=193, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:ac:2d:89:8d:e3","src_mac":"02:38:5e:64:58:aa","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"74.160.89.89","src_ip":"95.138.112.222","dst_port":60794,"src_port":25433},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ac:2d:89:8d:e3_src_mac_02:38:5e:64:58:aa_eth_type_ipv4_ip_proto_tcp_dst_ip_74.160.89.89_src_ip_95.138.112.222_dst_port_60794_src_port_25433 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=193, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=193, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=14] Command: tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=193, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:38:5e:64:58:aa dst_mac 02:ac:2d:89:8d:e3 src_ip 95.138.112.222 dst_ip 74.160.89.89 ip_proto tcp src_port 25433 dst_port 60794 action police rate 0.00025gbit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=16] Command: tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:38:5e:64:58:aa dst_mac 02:ac:2d:89:8d:e3 src_ip 95.138.112.222 dst_ip 74.160.89.89 ip_proto tcp src_port 25433 dst_port 60794 action police rate 0.00025gbit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e24c310>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 53965052 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 2436 INFO asyncssh:logging.py:92 [conn=193, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=193, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=18] Command: tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=193, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:38:5e:64:58:aa dst_mac 02:ac:2d:89:8d:e3 src_ip 95.138.112.222 dst_ip 74.160.89.89 ip_proto tcp src_port 25433 dst_port 60794 action police rate 31250.0bps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=20] Command: tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:38:5e:64:58:aa dst_mac 02:ac:2d:89:8d:e3 src_ip 95.138.112.222 dst_ip 74.160.89.89 ip_proto tcp src_port 25433 dst_port 60794 action police rate 31250.0bps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e24e830>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 152451678 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 397336 INFO asyncssh:logging.py:92 [conn=193, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=193, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=22] Command: tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=193, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:38:5e:64:58:aa dst_mac 02:ac:2d:89:8d:e3 src_ip 95.138.112.222 dst_ip 74.160.89.89 ip_proto tcp src_port 25433 dst_port 60794 action police rate 31.25kbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=24] Command: tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:38:5e:64:58:aa dst_mac 02:ac:2d:89:8d:e3 src_ip 95.138.112.222 dst_ip 74.160.89.89 ip_proto tcp src_port 25433 dst_port 60794 action police rate 31.25kbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e1685e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 260969579 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 760866 INFO asyncssh:logging.py:92 [conn=193, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=193, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=26] Command: tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=193, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:38:5e:64:58:aa dst_mac 02:ac:2d:89:8d:e3 src_ip 95.138.112.222 dst_ip 74.160.89.89 ip_proto tcp src_port 25433 dst_port 60794 action police rate 0.03125mbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=28] Command: tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:38:5e:64:58:aa dst_mac 02:ac:2d:89:8d:e3 src_ip 95.138.112.222 dst_ip 74.160.89.89 ip_proto tcp src_port 25433 dst_port 60794 action police rate 0.03125mbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e261c60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 361084279 Rx 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 1087380 INFO asyncssh:logging.py:92 [conn=193, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=193, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=30] Command: tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=193, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:38:5e:64:58:aa dst_mac 02:ac:2d:89:8d:e3 src_ip 95.138.112.222 dst_ip 74.160.89.89 ip_proto tcp src_port 25433 dst_port 60794 action police rate 3.125e-05gbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=32] Command: tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:38:5e:64:58:aa dst_mac 02:ac:2d:89:8d:e3 src_ip 95.138.112.222 dst_ip 74.160.89.89 ip_proto tcp src_port 25433 dst_port 60794 action police rate 3.125e-05gbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e3cc580>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 460281433 Rx 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 1436510 INFO asyncssh:logging.py:92 [conn=193, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=193, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=34] Command: tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=193, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:38:5e:64:58:aa dst_mac 02:ac:2d:89:8d:e3 src_ip 95.138.112.222 dst_ip 74.160.89.89 ip_proto tcp src_port 25433 dst_port 60794 action police rate 3.125e-08tbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=36] Command: tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:38:5e:64:58:aa dst_mac 02:ac:2d:89:8d:e3 src_ip 95.138.112.222 dst_ip 74.160.89.89 ip_proto tcp src_port 25433 dst_port 60794 action police rate 3.125e-08tbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e262c20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 561384717 Rx 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 1774097 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rate_config[SI] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=193, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=37] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=38] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:58:21 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=193, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=39] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=40] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:58:26 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=193, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=193, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=42] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=193, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=42] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=193, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=193, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=44] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=193, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=193, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=46] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=193, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=62] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=193, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=64] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=193, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=193, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=66] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=193, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=66] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=193, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=68] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=193, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=193, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=70] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=193, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=193, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=72] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=193, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=193, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=74] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=193, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=193, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=76] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=193, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=193, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=78] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=193, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=193, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=80] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=193, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=193, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=82] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=193, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=193, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=84] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=193, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=193, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=86] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=193, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=193, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=88] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=193, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=193, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=90] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=193, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=193, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=92] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=193, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=193, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=94] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=193, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=193, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=96] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=193, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=193, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=98] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=193, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=193, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=100] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=193, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=193, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=102] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=193, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=193, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=104] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=193, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=193, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=106] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=193, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=193, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=108] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=193, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=193, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=110] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=193, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=193, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=112] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=193, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=193, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=114] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=193, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=193, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=116] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=193, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=193, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=118] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=193, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=193, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=120] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=193, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=193, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=122] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=193, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=193, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=124] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=193, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=193, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=126] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=193, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=193, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=128] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=193, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=193, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=130] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=193, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=193, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=132] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=193, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=193, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=134] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=193, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=193, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=136] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=193, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=193, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=138] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=193, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=193, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=140] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=193, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=193, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=142] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=193, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=193, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=144] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=193, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=193, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=146] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=193, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=193, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=148] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=193, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=193, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=150] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=193, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=193, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=152] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=193, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=193, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=154] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=193, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=154] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=155] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=193, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=156] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=193, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=156] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=157] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=193, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=158] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=193, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=158] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=159] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=193, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=160] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=193, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=160] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=161] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=193, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=162] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=193, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=162] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=163] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=164] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=164] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=164] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:58:28 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=193, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=165] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=193, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=166] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=193, chan=166] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=166] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":228,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=193, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=167] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=193, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=168] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=193, chan=168] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=168] Channel closed DEBUG agg1:Logger.py:156
Passed functional/policer/test_policer_rules_priority.py::test_policer_rules_priority[port] 243.54
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rules_priority[port]">Starting testcase:test_policer_rules_priority[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-12079' coro=<test_policer_rules_priority() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=193, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=194] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=194] Local address: 172.17.0.3, port 38610 INFO asyncssh:logging.py:92 [conn=194] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=194] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=194] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 02:58:28 AM UTC INFO asyncssh:logging.py:92 [conn=194, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=194, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=194, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=194, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=194, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=194, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=194, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=194, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=194, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=10] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=12] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=194, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=14] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=194, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=194, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=194, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=194, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e1289d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 101217558 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 3709 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 3710 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 3710 INFO asyncssh:logging.py:92 [conn=194, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=18] Command: tc filter delete dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=20] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6e8160>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 129334568 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 6529 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 6529 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 6529 INFO asyncssh:logging.py:92 [conn=194, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=22] Command: tc filter delete dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=24] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e24e080>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 192995213 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 9284 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 9285 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 9285 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rules_priority[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=194, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:02:24 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=194, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=28] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:02:30 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=194, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=194, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=194, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=194, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=194, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=194, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=194, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=194, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=194, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=52] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=194, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=194, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=54] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=194, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=194, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=56] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=194, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=194, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=58] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=194, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=194, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=60] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=194, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=194, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=62] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=194, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=194, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=64] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=194, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=194, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=66] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=194, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=194, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=68] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=194, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=194, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=70] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=194, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=194, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=72] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=194, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=194, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=74] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=194, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=194, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=76] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=194, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=194, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=78] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=194, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=194, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=80] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=194, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=194, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=82] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=194, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=194, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=84] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=194, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=194, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=86] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=194, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=194, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=88] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=194, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=194, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=90] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=194, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=194, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=92] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=194, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=194, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=94] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=194, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=194, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=96] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=194, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=194, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=98] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=194, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=194, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=100] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=194, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=194, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=102] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=194, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=194, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=104] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=194, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=194, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=106] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=194, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=194, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=108] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=194, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=194, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=110] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=194, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=194, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=112] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=194, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=194, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=114] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=194, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=194, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=116] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=194, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=194, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=118] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=194, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=194, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=120] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=194, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=194, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=122] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=194, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=194, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=124] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=194, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=194, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=126] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=194, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=194, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=128] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=194, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=194, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=130] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=194, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=194, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=132] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=194, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=194, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=134] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=194, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=194, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=136] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=194, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=194, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=138] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=194, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=194, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=140] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=194, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=194, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=142] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=194, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=194, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=144] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=194, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=194, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=146] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=194, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=194, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=148] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=194, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=194, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=150] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=194, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=151] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=152] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=152] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=152] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:02:32 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=194, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=153] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=194, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=154] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=194, chan=154] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=154] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":229,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=194, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=155] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=194, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=156] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=194, chan=156] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=156] Channel closed DEBUG agg1:Logger.py:156
Passed functional/policer/test_policer_rules_priority.py::test_policer_rules_priority[shared_block] 261.38
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rules_priority[shared_block]">Starting testcase:test_policer_rules_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-12248' coro=<test_policer_rules_priority() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=194, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=195] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=195] Local address: 172.17.0.3, port 47810 INFO asyncssh:logging.py:92 [conn=195] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=195] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=195] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:02:32 AM UTC INFO asyncssh:logging.py:92 [conn=195, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=195, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=195, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=195, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=195, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=195, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=195, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 ingress_block 2223 ingress && tc qdisc add dev swp3 ingress_block 2223 ingress && tc qdisc add dev swp4 ingress_block 2223 ingress INFO asyncssh:logging.py:92 [conn=195, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=8] Command: tc qdisc add dev swp2 ingress_block 2223 ingress && tc qdisc add dev swp3 ingress_block 2223 ingress && tc qdisc add dev swp4 ingress_block 2223 ingress INFO asyncssh:logging.py:92 [conn=195, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 2223 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=195, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=10] Command: tc filter add block 2223 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=195, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 2223 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=195, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=12] Command: tc filter add block 2223 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=195, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 2223 ingress INFO asyncssh:logging.py:92 [conn=195, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=14] Command: tc -j filter show block 2223 ingress INFO asyncssh:logging.py:92 [conn=195, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=195, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 2223 ingress INFO asyncssh:logging.py:92 [conn=195, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=16] Command: tc -j filter show block 2223 ingress INFO asyncssh:logging.py:92 [conn=195, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp2_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp3_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp4_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e16a8f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 3184 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 102239540 Rx 2269 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 102239540 Rx 2259 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 102239540 Rx 2266 INFO asyncssh:logging.py:92 [conn=195, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc filter delete block 2223 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=195, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=18] Command: tc filter delete block 2223 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=195, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 2223 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=195, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=20] Command: tc filter add block 2223 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=195, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e203b20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 4829 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 130424768 Rx 3661 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 130424768 Rx 3654 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 130424768 Rx 3652 INFO asyncssh:logging.py:92 [conn=195, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc filter delete block 2223 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=195, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=22] Command: tc filter delete block 2223 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=195, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 2223 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=195, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=24] Command: tc filter add block 2223 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=195, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e63c100>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 7051 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 193805947 Rx 5282 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 193805947 Rx 5275 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 193805947 Rx 5275 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rules_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=195, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:06:45 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=195, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=28] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:06:51 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=195, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=195, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=195, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp2","parent":"ffff:fff1","ingress_block":2223,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp3","parent":"ffff:fff1","ingress_block":2223,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp4","parent":"ffff:fff1","ingress_block":2223,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=195, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=195, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=195, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=195, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=195, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=195, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=52] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=195, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=195, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=195, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=195, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=56] Command: tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=195, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=195, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=58] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=195, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 ingress INFO asyncssh:logging.py:92 [conn=195, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=60] Command: tc qdisc delete dev swp3 ingress INFO asyncssh:logging.py:92 [conn=195, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=60] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=195, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=62] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=195, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 ingress INFO asyncssh:logging.py:92 [conn=195, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=64] Command: tc qdisc delete dev swp4 ingress INFO asyncssh:logging.py:92 [conn=195, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=64] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=195, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=66] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=195, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=195, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=68] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=195, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=195, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=70] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=195, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=195, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=72] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=195, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=195, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=74] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=195, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=195, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=76] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=195, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=195, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=78] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=195, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=195, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=80] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=195, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=195, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=82] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=195, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=195, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=84] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=195, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=195, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=86] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=195, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=195, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=88] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=195, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=195, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=90] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=195, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=195, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=92] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=195, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=195, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=94] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=195, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=195, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=96] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=195, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=195, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=98] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=195, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=195, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=100] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=195, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=195, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=102] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=195, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=195, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=104] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=195, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=195, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=106] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=195, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=195, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=108] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=195, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=195, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=110] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=195, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=195, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=112] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=195, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=195, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=114] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=195, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=195, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=116] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=195, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=195, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=118] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=195, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=195, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=120] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=195, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=195, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=122] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=195, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=195, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=124] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=195, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=195, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=126] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=195, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=195, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=128] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=195, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=195, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=130] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=195, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=195, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=132] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=195, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=195, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=134] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=195, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=195, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=136] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=195, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=195, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=138] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=195, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=195, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=140] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=195, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=195, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=142] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=195, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=195, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=144] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=195, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=195, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=146] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=195, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=195, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=148] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=195, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=195, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=150] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=195, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=195, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=152] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=195, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=195, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=154] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=195, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=154] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=155] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=156] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=156] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=156] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:06:53 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=195, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=157] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=195, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=158] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=195, chan=158] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=158] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":230,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=195, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=159] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=195, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=160] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=195, chan=160] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=160] Channel closed DEBUG agg1:Logger.py:156
Passed functional/policer/test_policer_same_pref_rules_priority.py::test_policer_same_pref_rules[port] 220.74
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_same_pref_rules[port]">Starting testcase:test_policer_same_pref_rules[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-12421' coro=<test_policer_same_pref_rules() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=195, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=196] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=196] Local address: 172.17.0.3, port 52086 INFO asyncssh:logging.py:92 [conn=196] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=196] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=196] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:06:53 AM UTC INFO asyncssh:logging.py:92 [conn=196, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=196, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=196, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=196, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=196, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=196, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=196, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=196, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=196, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=196, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=10] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=196, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=196, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=12] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=196, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=196, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=196, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=14] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=196, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e5adf00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 103039200 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 3759 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 3759 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 3759 INFO asyncssh:logging.py:92 [conn=196, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=196, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=16] Command: tc filter delete dev swp1 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=196, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=196, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=18] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=196, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e762770>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 131363554 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 6777 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 6777 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 6777
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_same_pref_rules[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=196, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:10:31 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=196, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:10:32 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=196, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=196, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=196, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=196, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=196, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=196, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=196, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=196, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=196, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=196, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=196, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=196, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=196, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=196, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=196, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=196, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=196, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=196, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=196, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=56] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=196, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=196, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=196, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=196, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=60] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=196, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=196, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=62] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=196, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=196, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=64] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=196, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=196, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=66] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=196, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=196, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=68] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=196, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=196, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=70] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=196, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=196, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=72] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=196, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=196, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=74] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=196, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=196, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=76] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=196, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=196, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=78] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=196, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=196, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=80] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=196, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=196, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=82] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=196, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=196, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=84] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=196, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=196, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=86] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=196, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=196, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=88] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=196, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=196, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=90] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=196, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=196, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=92] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=196, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=196, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=94] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=196, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=196, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=96] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=196, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=196, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=98] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=196, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=196, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=100] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=196, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=196, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=102] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=196, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=196, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=104] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=196, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=196, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=106] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=196, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=196, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=108] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=196, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=196, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=110] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=196, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=196, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=196, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=196, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=196, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=196, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=196, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=196, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=196, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=196, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=196, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=196, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=196, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=196, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=196, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=196, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=196, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=196, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=196, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=196, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=196, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=196, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=196, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=196, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=196, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=196, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=196, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=196, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=196, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=196, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=196, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=196, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=196, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=196, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=144] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=196, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=145] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=146] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=146] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=146] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:10:34 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=196, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=147] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=196, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=148] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=196, chan=148] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=148] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":231,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=196, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=149] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=196, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=150] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=196, chan=150] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=150] Channel closed DEBUG agg1:Logger.py:156
Passed functional/policer/test_policer_same_pref_rules_priority.py::test_policer_same_pref_rules[shared_block] 250.77
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_same_pref_rules[shared_block]">Starting testcase:test_policer_same_pref_rules[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-12584' coro=<test_policer_same_pref_rules() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=196, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=197] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=197] Local address: 172.17.0.3, port 49276 INFO asyncssh:logging.py:92 [conn=197] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=197] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=197] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:10:34 AM UTC INFO asyncssh:logging.py:92 [conn=197, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=197, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=197, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=197, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=197, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=197, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=197, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 ingress_block 1254 ingress && tc qdisc add dev swp3 ingress_block 1254 ingress && tc qdisc add dev swp4 ingress_block 1254 ingress INFO asyncssh:logging.py:92 [conn=197, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=8] Command: tc qdisc add dev swp2 ingress_block 1254 ingress && tc qdisc add dev swp3 ingress_block 1254 ingress && tc qdisc add dev swp4 ingress_block 1254 ingress INFO asyncssh:logging.py:92 [conn=197, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 1254 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add block 1254 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=10] Command: tc filter add block 1254 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add block 1254 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 1254 ingress INFO asyncssh:logging.py:92 [conn=197, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=12] Command: tc -j filter show block 1254 ingress INFO asyncssh:logging.py:92 [conn=197, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=197, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 1254 ingress INFO asyncssh:logging.py:92 [conn=197, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=14] Command: tc -j filter show block 1254 ingress INFO asyncssh:logging.py:92 [conn=197, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp2_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp3_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp4_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e16bdf0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 3027 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 96389993 Rx 2180 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 96389993 Rx 2143 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 96389993 Rx 2155 INFO asyncssh:logging.py:92 [conn=197, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc filter delete block 1254 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=197, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=16] Command: tc filter delete block 1254 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=197, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 1254 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=18] Command: tc filter add block 1254 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e614370>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 5161 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 133976284 Rx 3861 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 133976284 Rx 3810 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 133976284 Rx 3825
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_same_pref_rules[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=197, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:14:42 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=197, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:14:42 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=197, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=197, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=197, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp2","parent":"ffff:fff1","ingress_block":1254,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp3","parent":"ffff:fff1","ingress_block":1254,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp4","parent":"ffff:fff1","ingress_block":1254,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=197, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=197, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=197, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=197, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=197, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=197, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=197, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=197, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=197, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=197, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=50] Command: tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=197, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=197, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=197, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 ingress INFO asyncssh:logging.py:92 [conn=197, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=54] Command: tc qdisc delete dev swp3 ingress INFO asyncssh:logging.py:92 [conn=197, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=197, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=197, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 ingress INFO asyncssh:logging.py:92 [conn=197, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=58] Command: tc qdisc delete dev swp4 ingress INFO asyncssh:logging.py:92 [conn=197, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=197, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=60] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=197, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=197, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=62] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=197, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=197, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=64] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=197, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=197, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=66] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=197, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=197, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=68] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=197, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=197, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=70] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=197, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=197, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=72] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=197, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=197, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=74] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=197, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=197, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=76] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=197, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=197, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=78] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=197, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=197, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=80] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=197, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=197, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=82] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=197, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=197, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=84] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=197, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=197, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=86] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=197, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=197, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=88] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=197, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=197, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=90] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=197, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=197, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=92] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=197, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=197, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=94] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=197, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=197, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=96] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=197, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=197, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=98] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=197, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=197, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=100] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=197, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=197, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=102] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=197, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=197, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=104] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=197, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=197, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=106] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=197, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=197, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=108] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=197, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=197, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=110] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=197, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=197, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=112] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=197, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=197, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=114] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=197, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=197, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=116] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=197, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=197, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=118] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=197, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=197, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=120] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=197, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=197, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=122] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=197, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=197, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=124] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=197, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=197, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=126] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=197, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=197, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=128] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=197, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=197, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=130] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=197, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=197, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=132] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=197, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=197, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=134] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=197, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=197, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=136] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=197, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=197, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=138] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=197, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=197, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=140] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=197, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=197, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=142] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=197, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=197, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=144] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=197, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=197, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=146] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=197, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=197, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=148] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=197, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=149] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=150] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=150] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=150] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:14:44 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=197, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=151] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=197, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=152] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=197, chan=152] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=152] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":232,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=197, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=153] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=197, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=154] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=197, chan=154] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=154] Channel closed DEBUG agg1:Logger.py:156
Passed functional/port_isolation/test_port_isolation_basic_functionality.py::test_port_isolation_basic_functionality 456.91
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_basic_functionality">Starting testcase:test_port_isolation_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-12750' coro=<test_port_isolation_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_basic_functionality.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=197, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=198] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=198] Local address: 172.17.0.3, port 58918 INFO asyncssh:logging.py:92 [conn=198] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=198] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=198] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=198, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:14:45 AM UTC INFO asyncssh:logging.py:92 [conn=198, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=198, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=198, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=198, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=198, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=198, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=198, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=198, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=8] Command: bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=198, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e24e920>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI stream_0 SIP-DIP N/A Tx 9450 Rx 9450 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:8 TI stream_1 SIP-DIP N/A Tx 9450 Rx 9450 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:8 TI stream_2 SIP-DIP N/A Tx 9450 Rx 9450 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:7 TI stream_3 SIP-DIP N/A Tx 9450 Rx 9450 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e24ce20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI stream_0 SIP-DIP N/A Tx 9477 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI stream_1 SIP-DIP N/A Tx 9477 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI stream_2 SIP-DIP N/A Tx 9477 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:6 TI stream_3 SIP-DIP N/A Tx 9477 Rx 9477 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e2614b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream_0 SIP-DIP N/A Tx 9484 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI stream_1 SIP-DIP N/A Tx 9484 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI stream_2 SIP-DIP N/A Tx 9484 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI stream_3 SIP-DIP N/A Tx 9484 Rx 9484 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=198, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=9] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=198, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=10] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:22:21 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=198, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=198, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:22:21 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=198, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=198, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=14] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=198, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":233,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=198, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=198, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=16] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=198, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=16] Channel closed DEBUG agg1:Logger.py:156
Passed functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py::test_port_isolation_enable_disable_feature_under_ws_traffic 232.92
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_enable_disable_feature_under_ws_traffic">Starting testcase:test_port_isolation_enable_disable_feature_under_ws_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-12776' coro=<test_port_isolation_enable_disable_feature_under_ws_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py:60> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=198, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=199] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=199] Local address: 172.17.0.3, port 33960 INFO asyncssh:logging.py:92 [conn=199] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=199] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=199] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=199, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:22:22 AM UTC INFO asyncssh:logging.py:92 [conn=199, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=199, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=199, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=199, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=199, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=199, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=199, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=199, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=8] Command: bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=199, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e263b50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream_1 SIP-DIP N/A Tx 5991 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI stream_2 SIP-DIP N/A Tx 5991 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI stream_3 SIP-DIP N/A Tx 5991 Rx 5991 Loss 0.000 INFO asyncssh:logging.py:92 [conn=199, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 isolated off && bridge link set dev swp2 isolated off && bridge link set dev swp3 isolated off INFO asyncssh:logging.py:92 [conn=199, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=10] Command: bridge link set dev swp1 isolated off && bridge link set dev swp2 isolated off && bridge link set dev swp3 isolated off INFO asyncssh:logging.py:92 [conn=199, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e260b50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream_1 SIP-DIP N/A Tx 5225 Rx 5225 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI stream_2 SIP-DIP N/A Tx 5225 Rx 5225 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI stream_3 SIP-DIP N/A Tx 5225 Rx 5225 Loss 0.000 INFO asyncssh:logging.py:92 [conn=199, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=199, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=12] Command: bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=199, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e616410>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream_1 SIP-DIP N/A Tx 6386 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI stream_2 SIP-DIP N/A Tx 6386 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI stream_3 SIP-DIP N/A Tx 6386 Rx 6386 Loss 0.000 INFO asyncssh:logging.py:92 [conn=199, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 isolated off && bridge link set dev swp2 isolated off && bridge link set dev swp3 isolated off INFO asyncssh:logging.py:92 [conn=199, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=14] Command: bridge link set dev swp1 isolated off && bridge link set dev swp2 isolated off && bridge link set dev swp3 isolated off INFO asyncssh:logging.py:92 [conn=199, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e129ba0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream_1 SIP-DIP N/A Tx 5360 Rx 5360 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI stream_2 SIP-DIP N/A Tx 5360 Rx 5360 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI stream_3 SIP-DIP N/A Tx 5360 Rx 5360 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_enable_disable_feature_under_ws_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=199, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=199, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:26:09 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=199, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=199, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:26:14 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=199, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=199, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=199, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":234,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=199, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=199, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=199, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/port_isolation/test_port_isolation_incremental_mac_addresses.py::test_port_isolation_incremental_mac_addresses 450.45
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_incremental_mac_addresses">Starting testcase:test_port_isolation_incremental_mac_addresses from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_incremental_mac_addresses.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-12808' coro=<test_port_isolation_incremental_mac_addresses() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_incremental_mac_addresses.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=199, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=200] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=200] Local address: 172.17.0.3, port 35374 INFO asyncssh:logging.py:92 [conn=200] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=200] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=200] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=200, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:26:15 AM UTC INFO asyncssh:logging.py:92 [conn=200, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=200, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=200, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=200, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=200, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=200, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=200, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=200, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=8] Command: bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=200, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e1282b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI stream_0 SIP-DIP N/A Tx 37817 Rx 37817 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:8 TI stream_1 SIP-DIP N/A Tx 37817 Rx 37817 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:8 TI stream_2 SIP-DIP N/A Tx 37817 Rx 37817 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:7 TI stream_3 SIP-DIP N/A Tx 37817 Rx 37817 Loss 0.000 INFO asyncssh:logging.py:92 [conn=200, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=200, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=200, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=10] Channel closed DEBUG agg1:Logger.py:156 20004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e24f0a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI stream_0 SIP-DIP N/A Tx 37776 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI stream_1 SIP-DIP N/A Tx 37776 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI stream_2 SIP-DIP N/A Tx 37776 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:6 TI stream_3 SIP-DIP N/A Tx 37776 Rx 37776 Loss 0.000 INFO asyncssh:logging.py:92 [conn=200, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=200, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=12] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=200, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=12] Channel closed DEBUG agg1:Logger.py:156 20004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e24cfd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream_0 SIP-DIP N/A Tx 37662 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI stream_1 SIP-DIP N/A Tx 37662 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI stream_2 SIP-DIP N/A Tx 37662 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI stream_3 SIP-DIP N/A Tx 37662 Rx 37662 Loss 0.000 INFO asyncssh:logging.py:92 [conn=200, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=200, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=14] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=200, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=14] Channel closed DEBUG agg1:Logger.py:156 20004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_incremental_mac_addresses from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_incremental_mac_addresses.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=200, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=200, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:33:44 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=200, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=200, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:33:44 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=200, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=200, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=200, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":235,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=200, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=200, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=200, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/port_isolation/test_port_isolation_interaction_br_storm_control.py::test_port_isolation_interaction_br_storm_control 218.75
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_br_storm_control">Starting testcase:test_port_isolation_interaction_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_br_storm_control.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-12840' coro=<test_port_isolation_interaction_br_storm_control() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_br_storm_control.py:53> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=200, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=201] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=201] Local address: 172.17.0.3, port 55836 INFO asyncssh:logging.py:92 [conn=201] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=201] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=201] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=201, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:33:45 AM UTC INFO asyncssh:logging.py:92 [conn=201, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=201, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=201, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=201, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=201, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=201, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=201, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=201, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=8] Command: bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=201, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=9] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 30277 cmode runtime INFO asyncssh:logging.py:92 [conn=201, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=10] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 30277 cmode runtime INFO asyncssh:logging.py:92 [conn=201, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=11] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=201, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=12] Command: devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=201, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=12] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":30277}]}]}} INFO asyncssh:logging.py:92 [conn=201, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=13] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 105367 cmode runtime INFO asyncssh:logging.py:92 [conn=201, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=14] Command: devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 105367 cmode runtime INFO asyncssh:logging.py:92 [conn=201, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=15] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=201, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=16] Command: devlink -j port param show pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=201, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=16] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":105367}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e262e30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 9226942 Rx 940486 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 940486 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 940486 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 10796963 Rx 229219 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e2626b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI stream_1 SIP-DIP N/A Tx 3313438 Rx 82306 Loss 97.516 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI stream_2 SIP-DIP N/A Tx 5796209 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream_3 SIP-DIP N/A Tx 5764098 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:7 TI stream_4 SIP-DIP N/A Tx 3997770 Rx 350412 Loss 91.235 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:6 TI stream_5 SIP-DIP N/A Tx 10150434 Rx 887063 Loss 91.261 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI stream_6 SIP-DIP N/A Tx 3256399 Rx 277805 Loss 91.469 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=201, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=17] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=201, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=201, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=18] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":30277}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":105367}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=201, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=19] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=201, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=20] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=201, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=21] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=201, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=22] Command: devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=201, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=23] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=201, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=24] Command: devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=201, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=25] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=201, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=26] Command: devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=201, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=26] Channel closed DEBUG agg1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_br_storm_control.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=201, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=201, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=28] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:37:18 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=201, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=201, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:37:23 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=201, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=201, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=201, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":236,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=201, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=201, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=201, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=34] Channel closed DEBUG agg1:Logger.py:156
Passed functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py::test_port_isolation_interaction_mc_and_br_storm_control 206.50
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_mc_and_br_storm_control">Starting testcase:test_port_isolation_interaction_mc_and_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-12884' coro=<test_port_isolation_interaction_mc_and_br_storm_control() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=201, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=202] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=202] Local address: 172.17.0.3, port 38522 INFO asyncssh:logging.py:92 [conn=202] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=202] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=202] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=202, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:37:24 AM UTC INFO asyncssh:logging.py:92 [conn=202, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=202, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=202, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=202, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=202, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=202, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=202, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=202, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=8] Command: bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=202, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=9] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 9042 cmode runtime INFO asyncssh:logging.py:92 [conn=202, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=10] Command: devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 9042 cmode runtime INFO asyncssh:logging.py:92 [conn=202, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=11] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=202, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=12] Command: devlink -j port param show pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=202, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=12] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":9042}]}]}} INFO asyncssh:logging.py:92 [conn=202, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=13] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 65394 cmode runtime INFO asyncssh:logging.py:92 [conn=202, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=14] Command: devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 65394 cmode runtime INFO asyncssh:logging.py:92 [conn=202, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=15] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=202, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=16] Command: devlink -j port param show pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=202, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=16] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":65394}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e128c70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 7592611 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 28243819 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 1635497 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e12afe0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:8 TI stream_1 SIP-DIP N/A Tx 9053607 Rx 66717 Loss 99.263 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:8 TI stream_2 SIP-DIP N/A Tx 5334470 Rx 304038 Loss 94.301 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI stream_3 SIP-DIP N/A Tx 9537849 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI stream_4 SIP-DIP N/A Tx 18806267 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=202, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=17] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=202, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=202, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=18] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":9042}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":65394}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=202, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=19] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=202, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=20] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=202, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=21] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=202, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=22] Command: devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=202, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=23] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=202, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=24] Command: devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=202, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=25] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=202, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=26] Command: devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=202, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=26] Channel closed DEBUG agg1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_mc_and_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=202, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=202, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=28] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:40:45 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=202, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=202, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:40:50 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=202, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=202, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=202, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":237,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=202, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=202, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=202, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=34] Channel closed DEBUG agg1:Logger.py:156
Passed functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py::test_port_isolation_interaction_ports_inside_lag 426.02
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_ports_inside_lag">Starting testcase:test_port_isolation_interaction_ports_inside_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-12929' coro=<test_port_isolation_interaction_ports_inside_lag() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=202, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=203] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=203] Local address: 172.17.0.3, port 40144 INFO asyncssh:logging.py:92 [conn=203] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=203] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=203] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=203, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:40:50 AM UTC INFO asyncssh:logging.py:92 [conn=203, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=203, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=203, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond1 up && ip link set dev swp1 down && ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=203, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=4] Command: ip link set dev bond1 up && ip link set dev swp1 down && ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=203, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=203, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=203, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond2 up && ip link set dev swp2 down && ip link set dev swp2 master bond2 INFO asyncssh:logging.py:92 [conn=203, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=8] Command: ip link set dev bond2 up && ip link set dev swp2 down && ip link set dev swp2 master bond2 INFO asyncssh:logging.py:92 [conn=203, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=203, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=203, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=203, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=203, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=203, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=203, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp3 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=203, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=16] Command: ip link set dev swp3 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=203, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=203, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=203, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev bond1 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=203, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=20] Command: bridge link set dev bond1 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=203, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e200af0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream_0 SIP-DIP N/A Tx 9409 Rx 9409 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI stream_1 SIP-DIP N/A Tx 9409 Rx 9409 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e200250>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI stream_0 SIP-DIP N/A Tx 9461 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI stream_1 SIP-DIP N/A Tx 9461 Rx 9461 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e262f20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI stream_0 SIP-DIP N/A Tx 9476 Rx 9476 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:8 TI stream_1 SIP-DIP N/A Tx 9476 Rx 9476 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_ports_inside_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=203, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=203, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:47:55 AM UTC INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=203, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=203, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=24] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=203, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:08","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":true,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":238,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":true,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":239,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":240,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":177.63,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=203, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=203, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=26] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=203, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=203, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=28] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=203, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=203, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=203, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:47:55 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=203, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=203, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=32] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:47:56 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=203, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=203, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=203, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":240,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=203, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=203, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=36] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=203, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=36] Channel closed DEBUG agg1:Logger.py:156
Passed functional/port_isolation/test_port_isolation_interaction_span_rule.py::test_port_isolation_interaction_span_rule 179.86
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_span_rule">Starting testcase:test_port_isolation_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_span_rule.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-12978' coro=<test_port_isolation_interaction_span_rule() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_span_rule.py:49> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=203, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=204] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=204] Local address: 172.17.0.3, port 53086 INFO asyncssh:logging.py:92 [conn=204] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=204] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=204] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=204, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:47:57 AM UTC INFO asyncssh:logging.py:92 [conn=204, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=204, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=204, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=204, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=204, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=204, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=204, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on INFO asyncssh:logging.py:92 [conn=204, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=8] Command: bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on INFO asyncssh:logging.py:92 [conn=204, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=204, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=10] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=204, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress matchall skip_sw action mirred egress mirror dev swp2 INFO asyncssh:logging.py:92 [conn=204, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=12] Command: tc filter add dev swp1 ingress matchall skip_sw action mirred egress mirror dev swp2 INFO asyncssh:logging.py:92 [conn=204, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridgeStream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e12ba90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI bridgeStream SIP-DIP N/A Tx 5991 Rx 5991 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e12ae30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridgeStream Tx 7991 Rx 7991 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=204, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=204, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=14] Command: tc filter delete dev swp1 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=204, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e129ab0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI bridgeStream SIP-DIP N/A Tx 9991 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_span_rule.py INFO asyncssh:logging.py:92 [conn=204, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=204, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:50:54 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=204, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=204, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=18] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=204, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=204, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=204, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=20] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=204, chan=20] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=20] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=204, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=22] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=204, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=22] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=24] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=24] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=26] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=204, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=40] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=204, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=204, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=42] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=204, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=204, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=44] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=204, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=204, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=46] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=204, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=204, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=48] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=204, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=204, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=50] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=204, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=204, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=52] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=204, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=204, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=54] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=204, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=204, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=56] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=204, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=204, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=58] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=204, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=204, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=60] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=204, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=204, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=62] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=204, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=204, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=64] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=204, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=204, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=66] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=204, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=204, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=68] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=204, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=204, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=70] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=204, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=204, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=72] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=204, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=204, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=74] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=204, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=204, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=76] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=204, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=204, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=78] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=204, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=204, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=80] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=204, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=204, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=82] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=204, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=204, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=84] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=204, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=204, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=86] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=204, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=204, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=88] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=204, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=204, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=90] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=204, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=204, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=92] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=204, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=204, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=94] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=204, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=204, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=96] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=204, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=204, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=98] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=204, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=204, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=100] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=204, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=204, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=102] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=204, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=204, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=104] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=204, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=204, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=106] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=204, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=204, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=108] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=204, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=204, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=110] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=204, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=204, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=112] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=204, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=204, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=114] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=204, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=204, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=116] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=204, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=204, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=118] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=204, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=204, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=120] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=204, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=204, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=122] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=204, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=204, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=124] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=204, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=204, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=126] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=204, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=204, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=128] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=204, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=204, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=130] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=204, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=204, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=132] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=204, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=204, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=134] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=204, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=204, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=136] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=204, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=204, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=138] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=204, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=204, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=139] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=204, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=140] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=140] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=140] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:50:56 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=204, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=141] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=204, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=142] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=142] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=142] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:50:56 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=204, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=143] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=204, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=144] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=204, chan=144] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=144] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":241,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=204, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=145] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=204, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=146] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=204, chan=146] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=146] Channel closed DEBUG agg1:Logger.py:156
Passed functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py::test_port_isolation_interaction_unk_uc_storm_control 216.74
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_unk_uc_storm_control">Starting testcase:test_port_isolation_interaction_unk_uc_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-13136' coro=<test_port_isolation_interaction_unk_uc_storm_control() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py:53> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=204, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=205] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=205] Local address: 172.17.0.3, port 59812 INFO asyncssh:logging.py:92 [conn=205] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=205] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=205] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=205, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:50:56 AM UTC INFO asyncssh:logging.py:92 [conn=205, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=205, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=205, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=205, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=205, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=205, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=205, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=205, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=8] Command: bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=205, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=9] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 15277 cmode runtime INFO asyncssh:logging.py:92 [conn=205, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=10] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 15277 cmode runtime INFO asyncssh:logging.py:92 [conn=205, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=11] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=205, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=12] Command: devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=205, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=12] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":15277}]}]}} INFO asyncssh:logging.py:92 [conn=205, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=13] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 97367 cmode runtime INFO asyncssh:logging.py:92 [conn=205, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=14] Command: devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 97367 cmode runtime INFO asyncssh:logging.py:92 [conn=205, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=15] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=205, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=16] Command: devlink -j port param show pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=205, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=16] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/4":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":97367}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e2b6710>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 20383863 Rx 1452293 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 1452293 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 1452293 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 17657838 Rx 264127 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e2b7f70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI stream_1 SIP-DIP N/A Tx 3712944 Rx 48398 Loss 98.697 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI stream_2 SIP-DIP N/A Tx 28072864 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream_3 SIP-DIP N/A Tx 4368858 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:7 TI stream_4 SIP-DIP N/A Tx 3402772 Rx 275875 Loss 91.893 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:6 TI stream_5 SIP-DIP N/A Tx 22703735 Rx 1865764 Loss 91.782 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI stream_6 SIP-DIP N/A Tx 5213029 Rx 432662 Loss 91.700 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=205, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=17] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=205, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=205, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=18] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":15277}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":9042}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":97367}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=205, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=19] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=205, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=20] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=205, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=21] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=205, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=22] Command: devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=205, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=23] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=205, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=24] Command: devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=205, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=25] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=205, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=26] Command: devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=205, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=26] Channel closed DEBUG agg1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_unk_uc_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=205, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=205, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=28] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:54:26 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=205, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=205, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:54:33 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=205, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=205, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=205, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":242,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=205, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=205, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=205, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=34] Channel closed DEBUG agg1:Logger.py:156
Passed functional/port_isolation/test_port_isolation_interaction_vlan_membership.py::test_port_isolation_interaction_vlan_membership 449.01
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_vlan_membership">Starting testcase:test_port_isolation_interaction_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-13180' coro=<test_port_isolation_interaction_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_vlan_membership.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=205, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=206] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=206] Local address: 172.17.0.3, port 59288 INFO asyncssh:logging.py:92 [conn=206] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=206] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=206] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=206, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 03:54:33 AM UTC INFO asyncssh:logging.py:92 [conn=206, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=206, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=206, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=206, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=206, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=206, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=206, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on INFO asyncssh:logging.py:92 [conn=206, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=8] Command: bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on INFO asyncssh:logging.py:92 [conn=206, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 22 && bridge vlan add dev swp2 vid 22 && bridge vlan add dev swp3 vid 22 && bridge vlan add dev swp4 vid 22 INFO asyncssh:logging.py:92 [conn=206, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=10] Command: bridge vlan add dev swp1 vid 22 && bridge vlan add dev swp2 vid 22 && bridge vlan add dev swp3 vid 22 && bridge vlan add dev swp4 vid 22 INFO asyncssh:logging.py:92 [conn=206, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 23 && bridge vlan add dev swp2 vid 23 && bridge vlan add dev swp3 vid 23 && bridge vlan add dev swp4 vid 23 INFO asyncssh:logging.py:92 [conn=206, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=12] Command: bridge vlan add dev swp1 vid 23 && bridge vlan add dev swp2 vid 23 && bridge vlan add dev swp3 vid 23 && bridge vlan add dev swp4 vid 23 INFO asyncssh:logging.py:92 [conn=206, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 24 pvid && bridge vlan add dev swp2 vid 24 pvid && bridge vlan add dev swp3 vid 24 pvid && bridge vlan add dev swp4 vid 24 pvid INFO asyncssh:logging.py:92 [conn=206, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=14] Command: bridge vlan add dev swp1 vid 24 pvid && bridge vlan add dev swp2 vid 24 pvid && bridge vlan add dev swp3 vid 24 pvid && bridge vlan add dev swp4 vid 24 pvid INFO asyncssh:logging.py:92 [conn=206, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show INFO asyncssh:logging.py:92 [conn=206, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=16] Command: bridge -j vlan show INFO asyncssh:logging.py:92 [conn=206, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifname":"swp1","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]},{"ifname":"swp2","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]},{"ifname":"swp3","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]},{"ifname":"swp4","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e6141c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI stream_0 SIP-DIP N/A Tx 4468 Rx 4467 Loss 0.022 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:8 TI stream_1 SIP-DIP N/A Tx 4468 Rx 4468 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:8 TI stream_2 SIP-DIP N/A Tx 4468 Rx 4468 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:7 TI stream_3 SIP-DIP N/A Tx 4468 Rx 4467 Loss 0.022 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e168d30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI stream_0 SIP-DIP N/A Tx 4466 Rx 4466 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI stream_1 SIP-DIP N/A Tx 4466 Rx 4466 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI stream_2 SIP-DIP N/A Tx 4466 Rx 4466 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:6 TI stream_3 SIP-DIP N/A Tx 4466 Rx 4466 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e16a260>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream_0 SIP-DIP N/A Tx 4418 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI stream_1 SIP-DIP N/A Tx 4418 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI stream_2 SIP-DIP N/A Tx 4418 Rx 4418 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI stream_3 SIP-DIP N/A Tx 4418 Rx 4418 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=206, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=206, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:02:01 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=206, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=206, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:02:02 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=206, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=206, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=206, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":243,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=206, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=206, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=206, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=24] Channel closed DEBUG agg1:Logger.py:156
Passed functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py::test_port_isolation_maximum_isolated_ports_on_bridge 195.86
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_maximum_isolated_ports_on_bridge">Starting testcase:test_port_isolation_maximum_isolated_ports_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-13214' coro=<test_port_isolation_maximum_isolated_ports_on_bridge() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete It took 0:00:00.036743 to verify ports presence. It took 0:00:00.039215 to set entities to 'UP' state.
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=206, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=207] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=207] Local address: 172.17.0.3, port 39852 INFO asyncssh:logging.py:92 [conn=207] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=207] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=207] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=207, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:02:02 AM UTC INFO asyncssh:logging.py:92 [conn=207, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=1] Channel closed DEBUG agg1:Logger.py:156 ifconfig -a INFO asyncssh:logging.py:92 [conn=207, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=2] Command: ifconfig -a INFO asyncssh:logging.py:92 [conn=207, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=2] Channel closed DEBUG agg1:Logger.py:156 dummy0: flags=130<BROADCAST,NOARP> mtu 1500 ether 56:e2:8b:f7:07:bc txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10<host> loop txqueuelen 1000 (Local Loopback) RX packets 6489 bytes 1035993 (1011.7 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 6489 bytes 1035993 (1011.7 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 ma1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 10.36.118.44 netmask 255.255.255.0 broadcast 10.36.118.255 inet6 fe80::36ef:b6ff:feec:3804 prefixlen 64 scopeid 0x20<link> ether 34:ef:b6:ec:38:04 txqueuelen 2048 (Ethernet) RX packets 108273 bytes 10101472 (9.6 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 93311 bytes 12234139 (11.6 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 sit0: flags=128<NOARP> mtu 1480 sit txqueuelen 1000 (IPv6-in-IPv4) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::36ef:b6ff:feec:3807 prefixlen 64 scopeid 0x20<link> ether 34:ef:b6:ec:38:07 txqueuelen 1000 (Ethernet) RX packets 6545291727 bytes 2418595073984 (2.1 TiB) RX errors 0 dropped 178763 overruns 0 frame 9307 TX packets 43479106 bytes 11626661858 (10.8 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp2: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::36ef:b6ff:feec:3808 prefixlen 64 scopeid 0x20<link> ether 34:ef:b6:ec:38:08 txqueuelen 1000 (Ethernet) RX packets 1247523936 bytes 517382026790 (481.8 GiB) RX errors 0 dropped 27091 overruns 0 frame 9061 TX packets 359579447 bytes 159555917473 (148.5 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp3: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::36ef:b6ff:feec:3809 prefixlen 64 scopeid 0x20<link> ether 34:ef:b6:ec:38:09 txqueuelen 1000 (Ethernet) RX packets 940369403 bytes 417398411158 (388.7 GiB) RX errors 0 dropped 22773 overruns 0 frame 1 TX packets 573733004 bytes 257417118892 (239.7 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp4: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::36ef:b6ff:feec:380a prefixlen 64 scopeid 0x20<link> ether 34:ef:b6:ec:38:0a txqueuelen 1000 (Ethernet) RX packets 484799055 bytes 167410923851 (155.9 GiB) RX errors 0 dropped 22608 overruns 0 frame 0 TX packets 329814796 bytes 134952996142 (125.6 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp5: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:0b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 2 bytes 256 (256.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp6: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:0c txqueuelen 1000 (Ethernet) RX packets 2 bytes 256 (256.0 B) RX errors 0 dropped 2 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp7: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:0d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp8: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:0e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 1 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp9: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:0f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp10: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:10 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 1 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp11: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:11 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp12: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:12 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp13: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:13 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp14: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:14 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp15: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:15 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp16: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:16 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp17: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:17 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp18: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:18 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp19: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:19 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp20: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:1a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp21: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:1b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp22: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:1c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp23: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:1d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp24: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:1e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp25: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:1f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp26: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:20 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp27: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:21 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp28: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:22 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp29: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:23 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp30: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:24 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp31: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:25 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp32: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:26 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp33: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:27 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp34: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:28 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp35: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:29 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp36: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:2a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp37: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:2b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp38: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:2c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp39: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:2d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp40: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:2e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp41: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:2f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp42: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:30 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp43: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:31 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp44: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:32 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp45: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:33 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp46: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:34 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp47: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:35 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp48: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:36 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 INFO asyncssh:logging.py:92 [conn=207, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=207, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=4] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=207, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=207, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=207, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=207, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=207, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=207, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=10] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=207, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":244,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=207, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on && bridge link set dev swp4 isolated on INFO asyncssh:logging.py:92 [conn=207, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=12] Command: bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on && bridge link set dev swp4 isolated on INFO asyncssh:logging.py:92 [conn=207, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e2b4a30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream_1 SIP-DIP N/A Tx 5983 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI stream_2 SIP-DIP N/A Tx 5983 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI stream_3 SIP-DIP N/A Tx 5983 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_maximum_isolated_ports_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=207, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=207, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:05:17 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=207, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=207, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:05:17 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=207, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=207, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=207, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":244,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=207, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=207, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=207, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=20] Channel closed DEBUG agg1:Logger.py:156
Passed functional/port_isolation/test_port_isolation_vlan_interfaces.py::test_port_isolation_vlan_interfaces 219.97
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_vlan_interfaces">Starting testcase:test_port_isolation_vlan_interfaces from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_vlan_interfaces.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-13244' coro=<test_port_isolation_vlan_interfaces() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_vlan_interfaces.py:45> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=207, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=208] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=208] Local address: 172.17.0.3, port 35846 INFO asyncssh:logging.py:92 [conn=208] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=208] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=208] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=208, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:05:18 AM UTC INFO asyncssh:logging.py:92 [conn=208, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=208, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=208, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=208, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=208, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=208, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=208, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=208, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=8] Command: bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=208, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 1 && bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp2 vid 1 && bridge vlan add dev swp2 vid 2 INFO asyncssh:logging.py:92 [conn=208, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=10] Command: bridge vlan add dev swp1 vid 1 && bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp2 vid 1 && bridge vlan add dev swp2 vid 2 INFO asyncssh:logging.py:92 [conn=208, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp3->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp3->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp3->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e2b6bf0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI stream_1_swp1->swp4 SIP-DIP N/A Tx 5989 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI stream_1_swp1->swp3 SIP-DIP N/A Tx 5989 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream_1_swp1->swp2 SIP-DIP N/A Tx 5989 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:8 TI stream_2_swp3->swp4 SIP-DIP N/A Tx 5989 Rx 5989 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI stream_2_swp3->swp2 SIP-DIP N/A Tx 5989 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI stream_2_swp3->swp1 SIP-DIP N/A Tx 5989 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_vlan_interfaces from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_vlan_interfaces.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=208, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=208, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:08:53 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=208, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=208, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:08:57 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=208, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=208, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=208, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":245,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=208, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=208, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=208, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=18] Channel closed DEBUG agg1:Logger.py:156
Passed functional/qos/test_qos_class_precedence.py::test_qos_class_precedence[L2] 319.79
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-13272' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_class_precedence[L2]">Starting testcase:test_qos_class_precedence[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=208, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=209] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=209] Local address: 172.17.0.3, port 60256 INFO asyncssh:logging.py:92 [conn=209] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=209] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=209] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=209, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:08:58 AM UTC
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=209, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=1] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=209, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=2] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:08:58 AM UTC INFO asyncssh:logging.py:92 [conn=209, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=209, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=209, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=209, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=209, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan delete dev swp1 vid 1 && bridge vlan delete dev swp2 vid 1 && bridge vlan delete dev swp3 vid 1 INFO asyncssh:logging.py:92 [conn=209, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=8] Command: bridge vlan delete dev swp1 vid 1 && bridge vlan delete dev swp2 vid 1 && bridge vlan delete dev swp3 vid 1 INFO asyncssh:logging.py:92 [conn=209, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 3574 && bridge vlan add dev swp2 vid 3574 && bridge vlan add dev swp3 vid 3574 INFO asyncssh:logging.py:92 [conn=209, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=10] Command: bridge vlan add dev swp1 vid 3574 && bridge vlan add dev swp2 vid 3574 && bridge vlan add dev swp3 vid 3574 INFO asyncssh:logging.py:92 [conn=209, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp3 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=209, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=12] Command: tc qdisc add dev swp3 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=209, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp3 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=209, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=14] Command: tc qdisc add dev swp3 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=209, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=209, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=209, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 3574, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 3574, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 3574, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for high priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for low priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=209, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=209, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=18] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=209, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12289929,"packets":93782,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2124189,"packets":18288,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1509364,"packets":12578,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2683675,"packets":23434,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5972701,"packets":39482,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":238819912,"packets":1639330,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":72661498,"packets":178595,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":1525,"packets":9,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3930,"packets":30,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2064664,"packets":17482,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=209, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=209, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=209, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12293039,"packets":93804,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2124189,"packets":18288,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1509596,"packets":12579,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2686395,"packets":23452,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5972859,"packets":39485,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":238820145,"packets":1639331,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":72661731,"packets":178596,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":1758,"packets":10,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17718059520,"packets":34605585,"drops":11533485,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4420,"packets":32,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11811602432,"packets":23069536,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2064897,"packets":17483,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e16a1d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 11534768 Rx 11534768 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 11534768 Rx 11534768 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 23069535 Rx 17229676 Loss 25.314 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 23069535 Rx 17375909 Loss 24.680 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for medium priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=209, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=209, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=22] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=209, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12296907,"packets":93833,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2124279,"packets":18289,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1510212,"packets":12582,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2688883,"packets":23470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5973533,"packets":39492,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":238820844,"packets":1639334,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":72662430,"packets":178599,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2457,"packets":13,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17718059520,"packets":34605585,"drops":11533485,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6402,"packets":46,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11811602432,"packets":23069536,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2065596,"packets":17486,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=209, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=209, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=24] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=209, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12300051,"packets":93856,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2124279,"packets":18289,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1510212,"packets":12582,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2691711,"packets":23490,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5973849,"packets":39495,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":238821077,"packets":1639335,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":72662663,"packets":178600,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2690,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":23609797632,"packets":46112886,"drops":46050278,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11782168576,"packets":23012048,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6892,"packets":48,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":23593771008,"packets":46081584,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2065829,"packets":17487,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e1699c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 11506024 Rx 11506024 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 11506024 Rx 11506024 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 23012047 Rx 5686793 Loss 75.288 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 23012047 Rx 5820508 Loss 74.707 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI medium priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 11506024 Rx 11506024 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI medium priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 11506024 Rx 11506024 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_class_precedence[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py INFO asyncssh:logging.py:92 [conn=209, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=25] Channel closed DEBUG agg1:Logger.py:156 dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=209, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=26] Command: dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=209, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=209, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=28] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:14:15 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=209, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=209, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=30] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=209, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":246,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=209, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=209, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=32] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=209, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=33] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=209, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=34] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:14:16 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=209, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=209, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=36] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=209, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=209, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=209, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=38] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=209, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=209, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=40] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=209, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=209, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=209, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=209, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=209, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=209, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=209, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=209, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=209, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=209, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=58] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=209, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=209, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=60] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=209, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=209, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=62] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=209, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=62] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=209, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=64] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=209, chan=64] Received exit status 1 INFO asyncssh:logging.py:92 [conn=209, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=64] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=209, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=209, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=66] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=209, chan=66] Received exit status 1 INFO asyncssh:logging.py:92 [conn=209, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=66] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=209, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=209, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=68] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=209, chan=68] Received exit status 1 INFO asyncssh:logging.py:92 [conn=209, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=68] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=209, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=209, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=70] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=209, chan=70] Received exit status 1 INFO asyncssh:logging.py:92 [conn=209, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=70] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=209, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=209, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=72] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=209, chan=72] Received exit status 1 INFO asyncssh:logging.py:92 [conn=209, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=72] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=209, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=209, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=74] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=209, chan=74] Received exit status 1 INFO asyncssh:logging.py:92 [conn=209, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=74] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=209, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=209, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=76] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=209, chan=76] Received exit status 1 INFO asyncssh:logging.py:92 [conn=209, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=76] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=209, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=209, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=78] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=209, chan=78] Received exit status 1 INFO asyncssh:logging.py:92 [conn=209, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=78] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=209, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=209, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=80] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=209, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=209, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=82] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=209, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=209, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=84] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=209, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=209, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=86] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=209, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=209, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=88] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=209, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=209, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=90] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=209, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=209, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=92] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=209, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=209, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=94] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=209, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=209, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=96] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=209, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=209, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=98] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=209, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=209, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=100] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=209, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=209, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=102] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=209, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=209, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=104] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=209, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=209, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=106] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=209, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=209, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=108] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=209, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=209, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=110] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=209, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=209, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=112] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=209, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=209, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=114] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=209, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=209, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=116] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=209, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=209, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=118] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=209, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=209, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=120] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=209, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=209, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=122] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=209, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=209, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=124] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=209, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=209, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=126] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=209, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=209, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=128] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=209, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=209, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=130] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=209, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=209, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=132] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=209, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=209, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=134] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=209, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=209, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=136] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=209, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=209, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=138] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=209, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=209, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=140] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=209, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=209, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=142] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=209, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=209, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=144] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=209, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=209, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=146] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=209, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=209, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=148] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=209, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=209, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=150] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=209, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=209, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=152] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=209, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=209, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=154] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=209, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=154] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=155] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=209, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=156] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=209, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=156] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=157] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=209, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=158] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=209, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=158] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=159] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=209, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=160] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=209, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=160] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=161] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=209, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=162] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=209, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=162] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=163] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=209, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=164] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=209, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=164] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=165] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=209, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=166] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=209, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=166] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=167] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=209, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=168] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=209, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=168] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/qos/test_qos_class_precedence.py::test_qos_class_precedence[L3] 315.44
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-13453' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_class_precedence[L3]">Starting testcase:test_qos_class_precedence[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=209, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=210] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=210] Local address: 172.17.0.3, port 51636 INFO asyncssh:logging.py:92 [conn=210] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=210] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=210] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=210, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:14:18 AM UTC
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=210, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=1] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=210, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=2] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:14:18 AM UTC INFO asyncssh:logging.py:92 [conn=210, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=210, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=210, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=210, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=210, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=7] Channel closed DEBUG agg1:Logger.py:156 dcb app add dev swp1 dscp-prio 36:0 42:1 30:2 44:3 34:4 15:5 27:6 49:7&& dcb app add dev swp2 dscp-prio 36:0 42:1 30:2 44:3 34:4 15:5 27:6 49:7 INFO asyncssh:logging.py:92 [conn=210, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=8] Command: dcb app add dev swp1 dscp-prio 36:0 42:1 30:2 44:3 34:4 15:5 27:6 49:7&& dcb app add dev swp2 dscp-prio 36:0 42:1 30:2 44:3 34:4 15:5 27:6 49:7 INFO asyncssh:logging.py:92 [conn=210, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=9] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=210, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=10] Command: dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=210, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=10] Channel closed DEBUG agg1:Logger.py:156 {"dscp_prio":[[15,5],[27,6],[30,2],[34,4],[36,0],[42,1],[44,3],[49,7]]} INFO asyncssh:logging.py:92 [conn=210, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=11] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp2 dscp-prio INFO asyncssh:logging.py:92 [conn=210, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=12] Command: dcb -j app show dev swp2 dscp-prio INFO asyncssh:logging.py:92 [conn=210, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=12] Channel closed DEBUG agg1:Logger.py:156 {"dscp_prio":[[15,5],[27,6],[30,2],[34,4],[36,0],[42,1],[44,3],[49,7]]} INFO asyncssh:logging.py:92 [conn=210, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp3 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=210, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=14] Command: tc qdisc add dev swp3 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=210, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp3 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=210, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=16] Command: tc qdisc add dev swp3 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=210, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=210, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=18] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=210, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for high priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for low priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=210, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=210, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=210, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12426606,"packets":95057,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2165550,"packets":18682,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1534980,"packets":12821,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2725809,"packets":23800,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6000267,"packets":39754,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":238824109,"packets":1639360,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":72665475,"packets":178623,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2471,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":5646,"packets":48,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":690,"packets":7,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2067227,"packets":17493,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=210, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=210, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=22] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=210, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12429502,"packets":95080,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2165550,"packets":18682,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1535254,"packets":12823,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2725809,"packets":23800,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6002889,"packets":39775,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":238824342,"packets":1639361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":72665708,"packets":178624,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2704,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17701465088,"packets":34573174,"drops":11522674,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6136,"packets":50,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":690,"packets":7,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11800537088,"packets":23047924,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2067460,"packets":17494,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e176a40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 11523962 Rx 11523962 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 11523962 Rx 11523962 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 23047924 Rx 17269590 Loss 25.071 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 23047924 Rx 17303584 Loss 24.923 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for medium priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=210, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=210, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=24] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=210, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12432426,"packets":95104,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2165550,"packets":18682,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1535718,"packets":12825,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2725809,"packets":23800,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6005349,"packets":39797,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":238825041,"packets":1639364,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":72666174,"packets":178626,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3170,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17701465088,"packets":34573174,"drops":11522674,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7628,"packets":62,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":690,"packets":7,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11800537088,"packets":23047924,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2067926,"packets":17496,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=210, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=210, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=26] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=210, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12435388,"packets":95127,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2165550,"packets":18682,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1536182,"packets":12827,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2725809,"packets":23800,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6007847,"packets":39818,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":238825344,"packets":1639366,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":72666710,"packets":178629,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3473,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11826383872,"packets":23098406,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":23615321600,"packets":46123675,"drops":46168985,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":8282,"packets":66,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":690,"packets":7,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":23626920960,"packets":46146330,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2068159,"packets":17497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e16ac20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 11549203 Rx 11549203 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 11549203 Rx 11549203 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 23098406 Rx 5268701 Loss 77.190 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 23098406 Rx 6281800 Loss 72.804 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI medium priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 11549203 Rx 11549203 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI medium priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 11549203 Rx 11549203 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_class_precedence[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py INFO asyncssh:logging.py:92 [conn=210, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=27] Channel closed DEBUG agg1:Logger.py:156 dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=210, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=28] Command: dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=210, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=210, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:19:31 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=210, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=210, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=210, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":247,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=210, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=210, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=210, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=35] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=210, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=36] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:19:31 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=210, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=210, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=38] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=210, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=210, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=210, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=40] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=210, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=210, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=42] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=210, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=210, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=210, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=210, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=210, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=210, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=210, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=210, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=210, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=210, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=60] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=210, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=210, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=62] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=210, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=210, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=64] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=210, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=64] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=210, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=66] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=210, chan=66] Received exit status 1 INFO asyncssh:logging.py:92 [conn=210, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=66] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=210, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=210, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=68] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=210, chan=68] Received exit status 1 INFO asyncssh:logging.py:92 [conn=210, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=68] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=210, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=210, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=70] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=210, chan=70] Received exit status 1 INFO asyncssh:logging.py:92 [conn=210, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=70] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=210, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=210, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=72] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=210, chan=72] Received exit status 1 INFO asyncssh:logging.py:92 [conn=210, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=72] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=210, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=210, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=74] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=210, chan=74] Received exit status 1 INFO asyncssh:logging.py:92 [conn=210, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=74] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=210, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=210, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=76] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=210, chan=76] Received exit status 1 INFO asyncssh:logging.py:92 [conn=210, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=76] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=210, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=210, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=78] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=210, chan=78] Received exit status 1 INFO asyncssh:logging.py:92 [conn=210, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=78] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=210, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=210, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=80] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=210, chan=80] Received exit status 1 INFO asyncssh:logging.py:92 [conn=210, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=80] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=210, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=210, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=82] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=210, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=210, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=84] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=210, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=210, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=86] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=210, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=210, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=88] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=210, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=210, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=90] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=210, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=210, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=92] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=210, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=210, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=94] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=210, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=210, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=96] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=210, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=210, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=98] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=210, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=210, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=100] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=210, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=210, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=102] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=210, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=210, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=104] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=210, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=210, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=106] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=210, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=210, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=108] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=210, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=210, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=110] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=210, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=210, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=112] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=210, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=210, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=114] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=210, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=210, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=116] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=210, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=210, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=118] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=210, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=210, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=120] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=210, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=210, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=122] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=210, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=210, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=124] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=210, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=210, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=126] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=210, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=210, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=128] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=210, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=210, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=130] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=210, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=210, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=132] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=210, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=210, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=134] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=210, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=210, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=136] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=210, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=210, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=138] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=210, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=210, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=140] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=210, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=210, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=142] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=210, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=210, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=144] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=210, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=210, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=146] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=210, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=210, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=148] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=210, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=210, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=150] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=210, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=210, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=152] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=210, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=210, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=154] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=210, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=154] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=155] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=210, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=156] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=210, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=156] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=157] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=210, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=158] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=210, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=158] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=159] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=210, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=160] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=210, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=160] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=161] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=210, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=162] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=210, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=162] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=163] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=210, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=164] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=210, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=164] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=165] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=210, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=166] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=210, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=166] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=167] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=210, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=168] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=210, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=168] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=169] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=210, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=170] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=210, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=170] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/qos/test_qos_default_prio.py::test_qos_default_prio 679.36
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-13636' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_default_prio">Starting testcase:test_qos_default_prio from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_default_prio.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=210, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=211] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=211] Local address: 172.17.0.3, port 60282 INFO asyncssh:logging.py:92 [conn=211] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=211] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=211] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=211, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:19:33 AM UTC
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=211, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=1] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=211, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=2] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:19:33 AM UTC INFO asyncssh:logging.py:92 [conn=211, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=211, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=211, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=211, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=211, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 3008 pvid untagged && bridge vlan add dev swp2 vid 3008 pvid untagged && bridge vlan add dev swp3 vid 3008 pvid && bridge vlan add dev swp4 vid 3008 pvid INFO asyncssh:logging.py:92 [conn=211, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=8] Command: bridge vlan add dev swp1 vid 3008 pvid untagged && bridge vlan add dev swp2 vid 3008 pvid untagged && bridge vlan add dev swp3 vid 3008 pvid && bridge vlan add dev swp4 vid 3008 pvid INFO asyncssh:logging.py:92 [conn=211, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=9] Channel closed DEBUG agg1:Logger.py:156 dcb app add dev swp1 dscp-prio 15:0 25:1 57:2 2:3 30:4 45:5 16:6 23:7 INFO asyncssh:logging.py:92 [conn=211, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=10] Command: dcb app add dev swp1 dscp-prio 15:0 25:1 57:2 2:3 30:4 45:5 16:6 23:7 INFO asyncssh:logging.py:92 [conn=211, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=11] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=211, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=12] Command: dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=211, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=12] Channel closed DEBUG agg1:Logger.py:156 {"dscp_prio":[[2,3],[15,0],[16,6],[23,7],[25,1],[30,4],[45,5],[57,2]]} INFO asyncssh:logging.py:92 [conn=211, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp3 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp4 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=211, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=14] Command: tc qdisc add dev swp1 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp3 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp4 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=211, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=211, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=16] Command: tc qdisc add dev swp1 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=211, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=18] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.3', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=211, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12562073,"packets":96327,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2192351,"packets":18939,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1564394,"packets":13096,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2730585,"packets":23831,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6074743,"packets":40461,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":1758,"packets":10,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4690,"packets":37,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":1435,"packets":8,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4200,"packets":35,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":270,"packets":3,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":1525,"packets":9,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4634,"packets":41,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":1525,"packets":9,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4634,"packets":41,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=211, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=22] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12565459,"packets":96351,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2192351,"packets":18939,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1566538,"packets":13108,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2730817,"packets":23832,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6075753,"packets":40472,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2224,"packets":12,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":5670,"packets":41,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":1901,"packets":10,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865280,"packets":64190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865280,"packets":64190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32864768,"packets":64189,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865280,"packets":64190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865280,"packets":64190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":65735228,"packets":128418,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865038,"packets":64192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32864768,"packets":64189,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":1758,"packets":10,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865280,"packets":64190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865280,"packets":64190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32864768,"packets":64189,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865280,"packets":64190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865280,"packets":64190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":65735172,"packets":128422,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865128,"packets":64193,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32864768,"packets":64189,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":1758,"packets":10,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865280,"packets":64190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865280,"packets":64190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32864768,"packets":64189,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865280,"packets":64190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865280,"packets":64190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":65735172,"packets":128422,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865128,"packets":64193,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32864768,"packets":64189,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e128040>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64190 Rx 64190 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64190 Rx 64190 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64190 Rx 64190 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64190 Rx 64190 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64190 Rx 64190 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64190 Rx 64190 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64189 Rx 64189 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64189 Rx 64189 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64189 Rx 64189 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64189 Rx 64189 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64189 Rx 64189 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64189 Rx 64189 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64190 Rx 64190 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64190 Rx 64190 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64190 Rx 64190 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64190 Rx 64190 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64190 Rx 64190 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64190 Rx 64190 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64189 Rx 64189 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64189 Rx 64189 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64189 Rx 64189 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64190 Rx 64190 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64190 Rx 64190 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64190 Rx 64190 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64189 Rx 64189 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64189 Rx 64189 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64189 Rx 64189 Loss 0.000 INFO asyncssh:logging.py:92 [conn=211, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=23] Channel closed DEBUG agg1:Logger.py:156 dcb app add dev swp1 dscp-prio 63:7 INFO asyncssh:logging.py:92 [conn=211, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=24] Command: dcb app add dev swp1 dscp-prio 63:7 INFO asyncssh:logging.py:92 [conn=211, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=26] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12569847,"packets":96387,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2192351,"packets":18939,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1566538,"packets":13108,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2730817,"packets":23832,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6080141,"packets":40508,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2224,"packets":12,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":5670,"packets":41,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":1901,"packets":10,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865280,"packets":64190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865280,"packets":64190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32864768,"packets":64189,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865280,"packets":64190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865280,"packets":64190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":65735228,"packets":128418,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865038,"packets":64192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32864768,"packets":64189,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":1758,"packets":10,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865280,"packets":64190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865280,"packets":64190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32864768,"packets":64189,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865280,"packets":64190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865280,"packets":64190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":65735172,"packets":128422,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865128,"packets":64193,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32864768,"packets":64189,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":1758,"packets":10,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865280,"packets":64190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865280,"packets":64190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32864768,"packets":64189,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865280,"packets":64190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865280,"packets":64190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":65735172,"packets":128422,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32865128,"packets":64193,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32864768,"packets":64189,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=211, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=28] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12572625,"packets":96407,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2192351,"packets":18939,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1566538,"packets":13108,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2731049,"packets":23833,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6082687,"packets":40527,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2527,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6324,"packets":45,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2134,"packets":11,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70408192,"packets":137516,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70408704,"packets":137517,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70407680,"packets":137515,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70408192,"packets":137516,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70408704,"packets":137517,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103279142,"packets":201747,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":107950862,"packets":210844,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70407680,"packets":137515,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2224,"packets":12,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70408192,"packets":137516,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70408704,"packets":137517,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70407680,"packets":137515,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70408192,"packets":137516,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70408704,"packets":137517,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103279576,"packets":201753,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":107950952,"packets":210845,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70407680,"packets":137515,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2224,"packets":12,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70408192,"packets":137516,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70408704,"packets":137517,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70407680,"packets":137515,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70408192,"packets":137516,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70408192,"packets":137516,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103279576,"packets":201753,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":107950952,"packets":210845,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70407680,"packets":137515,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e3baef0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73326 Rx 73326 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73326 Rx 73326 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73326 Rx 73326 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73327 Rx 73327 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73327 Rx 73327 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73327 Rx 73327 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73326 Rx 73326 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73326 Rx 73326 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73326 Rx 73326 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73326 Rx 73326 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73326 Rx 73326 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73326 Rx 73326 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73327 Rx 73327 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73327 Rx 73327 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73327 Rx 73327 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73326 Rx 73326 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73326 Rx 73326 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73326 Rx 73326 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73326 Rx 73326 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73326 Rx 73326 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73326 Rx 73326 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73327 Rx 73327 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73327 Rx 73327 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73326 Rx 73326 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73326 Rx 73326 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73326 Rx 73326 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73326 Rx 73326 Loss 0.000 INFO asyncssh:logging.py:92 [conn=211, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=29] Channel closed DEBUG agg1:Logger.py:156 dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=211, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=30] Command: dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=211, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=31] Channel closed DEBUG agg1:Logger.py:156 dcb app add dev swp1 dscp-prio 15:0 25:1 57:2 2:3 30:4 45:5 16:6 23:7 INFO asyncssh:logging.py:92 [conn=211, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=32] Command: dcb app add dev swp1 dscp-prio 15:0 25:1 57:2 2:3 30:4 45:5 16:6 23:7 INFO asyncssh:logging.py:92 [conn=211, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=33] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=211, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=34] Command: dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=211, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=34] Channel closed DEBUG agg1:Logger.py:156 {"dscp_prio":[[2,3],[15,0],[16,6],[23,7],[25,1],[30,4],[45,5],[57,2]]} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L2_tagged INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L3_tagged INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=211, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=36] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12580601,"packets":96475,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2192351,"packets":18939,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1566538,"packets":13108,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2738185,"packets":23891,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6083527,"packets":40537,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3459,"packets":18,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9052,"packets":65,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3136,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70408192,"packets":137516,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70408704,"packets":137517,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70407680,"packets":137515,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70408192,"packets":137516,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70408704,"packets":137517,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103282034,"packets":201769,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":107950862,"packets":210844,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70407680,"packets":137515,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3156,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70408192,"packets":137516,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70408704,"packets":137517,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70407680,"packets":137515,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70408192,"packets":137516,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70408704,"packets":137517,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103282560,"packets":201777,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":107950952,"packets":210845,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70407680,"packets":137515,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3226,"packets":17,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70408192,"packets":137516,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70408704,"packets":137517,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70407680,"packets":137515,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70408192,"packets":137516,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70408192,"packets":137516,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103282724,"packets":201779,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":107950952,"packets":210845,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70407680,"packets":137515,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=211, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=38] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12584707,"packets":96503,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2192351,"packets":18939,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1566538,"packets":13108,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2741685,"packets":23914,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6084133,"packets":40542,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3692,"packets":19,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9542,"packets":67,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3369,"packets":17,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169022464,"packets":330122,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169022976,"packets":330123,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169021952,"packets":330121,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169022464,"packets":330122,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169022976,"packets":330123,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":892196700,"packets":1742619,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":206565134,"packets":403450,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169021952,"packets":330121,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3389,"packets":17,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169022464,"packets":330122,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169022976,"packets":330123,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169021952,"packets":330121,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169022464,"packets":330122,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169022976,"packets":330123,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":892197226,"packets":1742627,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":206565224,"packets":403451,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169021952,"packets":330121,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3459,"packets":18,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169022464,"packets":330122,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169022976,"packets":330123,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169021952,"packets":330121,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169022464,"packets":330122,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169022464,"packets":330122,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":892197390,"packets":1742629,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":206565224,"packets":403451,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169021952,"packets":330121,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e2625c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 577818 Rx 577818 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 577818 Rx 577818 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 577818 Rx 577818 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 577818 Rx 577818 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 577818 Rx 577818 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 577818 Rx 577818 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64202 Rx 64202 Loss 0.000 INFO asyncssh:logging.py:92 [conn=211, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=39] Channel closed DEBUG agg1:Logger.py:156 dcb app add dev swp1 default-prio 1&& dcb app add dev swp2 default-prio 1&& dcb app add dev swp3 default-prio 1&& dcb app add dev swp4 default-prio 1 INFO asyncssh:logging.py:92 [conn=211, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=40] Command: dcb app add dev swp1 default-prio 1&& dcb app add dev swp2 default-prio 1&& dcb app add dev swp3 default-prio 1&& dcb app add dev swp4 default-prio 1 INFO asyncssh:logging.py:92 [conn=211, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=41] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp1 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=42] Command: dcb -j app show dev swp1 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=42] Channel closed DEBUG agg1:Logger.py:156 {"default_prio":[1]} INFO asyncssh:logging.py:92 [conn=211, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=43] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp2 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=44] Command: dcb -j app show dev swp2 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=44] Channel closed DEBUG agg1:Logger.py:156 {"default_prio":[1]} INFO asyncssh:logging.py:92 [conn=211, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=45] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp3 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=46] Command: dcb -j app show dev swp3 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=46] Channel closed DEBUG agg1:Logger.py:156 {"default_prio":[1]} INFO asyncssh:logging.py:92 [conn=211, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=47] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp4 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=48] Command: dcb -j app show dev swp4 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=48] Channel closed DEBUG agg1:Logger.py:156 {"default_prio":[1]} INFO asyncssh:logging.py:92 [conn=211, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=50] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=50] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12595263,"packets":96596,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2192583,"packets":18940,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1566538,"packets":13108,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2751383,"packets":24003,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6084759,"packets":40545,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3925,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10032,"packets":69,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3602,"packets":18,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169022464,"packets":330122,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169022976,"packets":330123,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169021952,"packets":330121,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169022464,"packets":330122,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169022976,"packets":330123,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":892197190,"packets":1742621,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":206565134,"packets":403450,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169021952,"packets":330121,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3622,"packets":18,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169022464,"packets":330122,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169022976,"packets":330123,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169021952,"packets":330121,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169022464,"packets":330122,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169022976,"packets":330123,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":892197716,"packets":1742629,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":206565224,"packets":403451,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169021952,"packets":330121,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3692,"packets":19,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169022464,"packets":330122,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169022976,"packets":330123,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169021952,"packets":330121,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169022464,"packets":330122,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169022464,"packets":330122,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":892197880,"packets":1742631,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":206565224,"packets":403451,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169021952,"packets":330121,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=211, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=52] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=52] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12598521,"packets":96616,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2192583,"packets":18940,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1566538,"packets":13108,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2754567,"packets":24022,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6084833,"packets":40546,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4158,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10522,"packets":71,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3835,"packets":19,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281754112,"packets":550301,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1070871552,"packets":2091546,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281752064,"packets":550297,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281754112,"packets":550301,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281754624,"packets":550302,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1004929328,"packets":1962802,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":319295246,"packets":623626,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281753600,"packets":550300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3855,"packets":19,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281754112,"packets":550301,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1070871552,"packets":2091546,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281752064,"packets":550297,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281754112,"packets":550301,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281754624,"packets":550302,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1004929854,"packets":1962810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":319295336,"packets":623627,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281753600,"packets":550300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3925,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281754112,"packets":550301,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1070871552,"packets":2091546,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281752064,"packets":550297,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281754112,"packets":550301,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281754112,"packets":550301,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1004930018,"packets":1962812,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":319295336,"packets":623627,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281753600,"packets":550300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e16a530>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73392 Rx 73392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73392 Rx 73392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73392 Rx 73392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73392 Rx 73392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73392 Rx 73392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73392 Rx 73392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73392 Rx 73392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73392 Rx 73392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73392 Rx 73392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 660534 Rx 660534 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 660534 Rx 660534 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 660534 Rx 660534 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73392 Rx 73392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73392 Rx 73392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73392 Rx 73392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73392 Rx 73392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73392 Rx 73392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73392 Rx 73392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73392 Rx 73392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73392 Rx 73392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73392 Rx 73392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 660534 Rx 660534 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 660534 Rx 660534 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 660534 Rx 660534 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73392 Rx 73392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73392 Rx 73392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73392 Rx 73392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73392 Rx 73392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73392 Rx 73392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73392 Rx 73392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73392 Rx 73392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73392 Rx 73392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73392 Rx 73392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73393 Rx 73393 Loss 0.000 INFO asyncssh:logging.py:92 [conn=211, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=53] Channel closed DEBUG agg1:Logger.py:156 dcb app add dev swp1 default-prio 0&& dcb app add dev swp2 default-prio 0&& dcb app add dev swp3 default-prio 0&& dcb app add dev swp4 default-prio 0 INFO asyncssh:logging.py:92 [conn=211, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=54] Command: dcb app add dev swp1 default-prio 0&& dcb app add dev swp2 default-prio 0&& dcb app add dev swp3 default-prio 0&& dcb app add dev swp4 default-prio 0 INFO asyncssh:logging.py:92 [conn=211, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=55] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp1 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=56] Command: dcb -j app show dev swp1 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=56] Channel closed DEBUG agg1:Logger.py:156 {"default_prio":[0,1]} INFO asyncssh:logging.py:92 [conn=211, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=57] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp2 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=58] Command: dcb -j app show dev swp2 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=58] Channel closed DEBUG agg1:Logger.py:156 {"default_prio":[0,1]} INFO asyncssh:logging.py:92 [conn=211, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=59] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp3 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=60] Command: dcb -j app show dev swp3 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=60] Channel closed DEBUG agg1:Logger.py:156 {"default_prio":[0,1]} INFO asyncssh:logging.py:92 [conn=211, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=61] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp4 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=62] Command: dcb -j app show dev swp4 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=62] Channel closed DEBUG agg1:Logger.py:156 {"default_prio":[0,1]} INFO asyncssh:logging.py:92 [conn=211, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=64] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=64] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12608917,"packets":96707,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2192583,"packets":18940,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1568170,"packets":13124,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2758879,"packets":24055,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6089285,"packets":40588,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4391,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11012,"packets":73,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4068,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281754112,"packets":550301,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1070871552,"packets":2091546,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281752064,"packets":550297,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281754112,"packets":550301,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281754624,"packets":550302,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1004929818,"packets":1962804,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":319295246,"packets":623626,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281753600,"packets":550300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4088,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281754112,"packets":550301,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1070871552,"packets":2091546,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281752064,"packets":550297,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281754112,"packets":550301,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281754624,"packets":550302,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1004930344,"packets":1962812,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":319295336,"packets":623627,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281753600,"packets":550300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4158,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281754112,"packets":550301,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1070871552,"packets":2091546,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281752064,"packets":550297,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281754112,"packets":550301,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281754112,"packets":550301,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1004930508,"packets":1962814,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":319295336,"packets":623627,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":281753600,"packets":550300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=211, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=66] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=66] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12612369,"packets":96729,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2192583,"packets":18940,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1568402,"packets":13125,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2759111,"packets":24056,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6092273,"packets":40608,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4624,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11502,"packets":75,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4301,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394404352,"packets":770321,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1972067840,"packets":3851695,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394400768,"packets":770314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394404352,"packets":770321,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394404864,"packets":770322,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1117580548,"packets":2182826,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":431943950,"packets":843643,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394402304,"packets":770317,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4321,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394404352,"packets":770321,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1972066816,"packets":3851693,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394400768,"packets":770314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394402816,"packets":770318,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394404864,"packets":770322,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1117581074,"packets":2182834,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":431944040,"packets":843644,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394402304,"packets":770317,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4391,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394404352,"packets":770321,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1972066816,"packets":3851693,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394400768,"packets":770314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394402816,"packets":770318,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394404352,"packets":770321,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1117581238,"packets":2182836,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":431944040,"packets":843644,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394402304,"packets":770317,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e1746a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 660056 Rx 660056 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 660055 Rx 660055 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 660055 Rx 660055 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 660056 Rx 660056 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 660055 Rx 660055 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 660055 Rx 660055 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73339 Rx 73339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO asyncssh:logging.py:92 [conn=211, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=67] Channel closed DEBUG agg1:Logger.py:156 dcb app add dev swp1 default-prio 2&& dcb app add dev swp2 default-prio 2&& dcb app add dev swp3 default-prio 2&& dcb app add dev swp4 default-prio 2 INFO asyncssh:logging.py:92 [conn=211, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=68] Command: dcb app add dev swp1 default-prio 2&& dcb app add dev swp2 default-prio 2&& dcb app add dev swp3 default-prio 2&& dcb app add dev swp4 default-prio 2 INFO asyncssh:logging.py:92 [conn=211, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=68] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=69] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp1 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=70] Command: dcb -j app show dev swp1 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=70] Channel closed DEBUG agg1:Logger.py:156 {"default_prio":[0,1,2]} INFO asyncssh:logging.py:92 [conn=211, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=71] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp2 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=72] Command: dcb -j app show dev swp2 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=72] Channel closed DEBUG agg1:Logger.py:156 {"default_prio":[0,1,2]} INFO asyncssh:logging.py:92 [conn=211, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=73] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp3 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=74] Command: dcb -j app show dev swp3 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=74] Channel closed DEBUG agg1:Logger.py:156 {"default_prio":[0,1,2]} INFO asyncssh:logging.py:92 [conn=211, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=75] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp4 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=76] Command: dcb -j app show dev swp4 default-prio INFO asyncssh:logging.py:92 [conn=211, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=76] Channel closed DEBUG agg1:Logger.py:156 {"default_prio":[0,1,2]} INFO asyncssh:logging.py:92 [conn=211, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=78] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=78] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12622195,"packets":96820,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2192583,"packets":18940,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1573792,"packets":13170,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2763463,"packets":24100,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6092357,"packets":40610,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4857,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11992,"packets":77,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4534,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394404352,"packets":770321,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1972067840,"packets":3851695,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394400768,"packets":770314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394404352,"packets":770321,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394404864,"packets":770322,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1117581038,"packets":2182828,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":431943950,"packets":843643,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394402304,"packets":770317,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4554,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394404352,"packets":770321,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1972066816,"packets":3851693,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394400768,"packets":770314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394402816,"packets":770318,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394404864,"packets":770322,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1117581564,"packets":2182836,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":431944040,"packets":843644,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394402304,"packets":770317,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4624,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394404352,"packets":770321,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1972066816,"packets":3851693,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394400768,"packets":770314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394402816,"packets":770318,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394404352,"packets":770321,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1117581728,"packets":2182838,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":431944040,"packets":843644,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394402304,"packets":770317,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=211, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=80] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=80] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12625087,"packets":96839,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2192583,"packets":18940,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1575482,"packets":13176,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2763463,"packets":24100,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6093559,"packets":40623,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5090,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":12482,"packets":79,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4767,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507062272,"packets":990356,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2084725760,"packets":4071730,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507058688,"packets":990349,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507062272,"packets":990356,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1295668224,"packets":2530602,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1230239448,"packets":2402865,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":544601870,"packets":1063678,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507060224,"packets":990352,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4787,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507062272,"packets":990356,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2084724736,"packets":4071728,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507058688,"packets":990349,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507060736,"packets":990353,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1295665664,"packets":2530597,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1230239974,"packets":2402873,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":544601960,"packets":1063679,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507060224,"packets":990352,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4857,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507062272,"packets":990356,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2084724736,"packets":4071728,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507058688,"packets":990349,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507060736,"packets":990353,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1295665152,"packets":2530596,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1230240138,"packets":2402875,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":544601960,"packets":1063679,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507060224,"packets":990352,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e176e60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73344 Rx 73344 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73344 Rx 73344 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 660105 Rx 660105 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 660104 Rx 660104 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 660104 Rx 660104 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73344 Rx 73344 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73344 Rx 73344 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 660105 Rx 660105 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 660104 Rx 660104 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 660104 Rx 660104 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73344 Rx 73344 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73344 Rx 73344 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73345 Rx 73345 Loss 0.000 INFO asyncssh:logging.py:92 [conn=211, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=81] Channel closed DEBUG agg1:Logger.py:156 dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=211, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=82] Command: dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=211, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=82] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=83] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp1 INFO asyncssh:logging.py:92 [conn=211, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=84] Command: dcb -j app show dev swp1 INFO asyncssh:logging.py:92 [conn=211, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=84] Channel closed DEBUG agg1:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=211, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=85] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp2 INFO asyncssh:logging.py:92 [conn=211, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=86] Command: dcb -j app show dev swp2 INFO asyncssh:logging.py:92 [conn=211, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=86] Channel closed DEBUG agg1:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=211, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=87] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp3 INFO asyncssh:logging.py:92 [conn=211, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=88] Command: dcb -j app show dev swp3 INFO asyncssh:logging.py:92 [conn=211, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=88] Channel closed DEBUG agg1:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=211, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=89] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp4 INFO asyncssh:logging.py:92 [conn=211, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=90] Command: dcb -j app show dev swp4 INFO asyncssh:logging.py:92 [conn=211, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=90] Channel closed DEBUG agg1:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=211, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=92] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=92] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12635157,"packets":96931,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2192583,"packets":18940,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1578366,"packets":13203,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2763463,"packets":24100,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6100745,"packets":40688,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5323,"packets":26,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":12972,"packets":81,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5000,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507062272,"packets":990356,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2084725760,"packets":4071730,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507058688,"packets":990349,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507062272,"packets":990356,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1295668224,"packets":2530602,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1230239938,"packets":2402867,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":544601870,"packets":1063678,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507060224,"packets":990352,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5020,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507062272,"packets":990356,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2084724736,"packets":4071728,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507058688,"packets":990349,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507060736,"packets":990353,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1295665664,"packets":2530597,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1230240464,"packets":2402875,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":544601960,"packets":1063679,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507060224,"packets":990352,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5090,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507062272,"packets":990356,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2084724736,"packets":4071728,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507058688,"packets":990349,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507060736,"packets":990353,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1295665152,"packets":2530596,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1230240628,"packets":2402877,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":544601960,"packets":1063679,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507060224,"packets":990352,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=211, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=94] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=94] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12638861,"packets":96957,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2192583,"packets":18940,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1578598,"packets":13204,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2763847,"packets":24102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6103833,"packets":40711,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5556,"packets":27,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":13462,"packets":83,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5233,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507062272,"packets":990356,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2084725760,"packets":4071730,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507058688,"packets":990349,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":845209088,"packets":1650799,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1633815040,"packets":3191045,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2244680876,"packets":4384198,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":544601870,"packets":1063678,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507060224,"packets":990352,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5253,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507062272,"packets":990356,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2084724736,"packets":4071728,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507058688,"packets":990349,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":845207040,"packets":1650795,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1633811968,"packets":3191039,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2244679866,"packets":4384203,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":544601960,"packets":1063679,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507060224,"packets":990352,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5323,"packets":26,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507062272,"packets":990356,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2084724736,"packets":4071728,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507058688,"packets":990349,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":845207040,"packets":1650795,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1633811456,"packets":3191038,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2244680030,"packets":4384205,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":544601960,"packets":1063679,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507060224,"packets":990352,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e1d4310>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 660443 Rx 660443 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 660442 Rx 660442 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 660442 Rx 660442 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 660443 Rx 660443 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 660442 Rx 660442 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 660442 Rx 660442 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73382 Rx 73382 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73383 Rx 73383 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_default_prio from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_default_prio.py INFO asyncssh:logging.py:92 [conn=211, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=95] Channel closed DEBUG agg1:Logger.py:156 dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=211, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=96] Command: dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=211, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=96] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=97] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=211, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=98] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=98] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:30:49 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=211, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=99] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=211, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=100] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=211, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=100] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":248,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=211, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=101] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=211, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=102] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=211, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=102] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=103] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=211, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=104] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=104] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:30:49 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=211, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=106] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=106] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=211, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=211, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=108] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=211, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=211, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=110] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=211, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=211, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=211, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=211, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=211, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=211, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=122] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=211, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=124] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=211, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=126] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=211, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=211, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=128] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=211, chan=128] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=128] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=211, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=130] Command: tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=211, chan=130] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=130] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=211, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=132] Command: tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=211, chan=132] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=132] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=211, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=134] Command: tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=211, chan=134] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=134] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=211, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=136] Command: tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=211, chan=136] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=136] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=211, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=138] Command: tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=211, chan=138] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=138] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=211, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=140] Command: tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=211, chan=140] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=140] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=211, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=142] Command: tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=211, chan=142] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=142] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=211, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=144] Command: tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=211, chan=144] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=144] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=211, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=146] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=211, chan=146] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=146] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=211, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=148] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=211, chan=148] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=148] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=211, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=150] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=211, chan=150] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=150] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=211, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=152] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=211, chan=152] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=152] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=211, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=154] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=211, chan=154] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=154] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=155] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=211, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=156] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=211, chan=156] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=156] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=157] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=211, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=158] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=211, chan=158] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=158] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=159] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=211, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=160] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=211, chan=160] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=160] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=161] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=211, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=162] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=211, chan=162] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=162] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=163] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=211, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=164] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=211, chan=164] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=164] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=165] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=211, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=166] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=211, chan=166] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=166] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=167] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=211, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=168] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=211, chan=168] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=168] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=169] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=211, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=170] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=211, chan=170] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=170] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=171] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=211, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=172] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=211, chan=172] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=172] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=173] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=211, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=174] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=211, chan=174] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=174] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=175] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=211, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=176] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=211, chan=176] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=176] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=177] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=211, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=178] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=211, chan=178] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=178] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=179] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=179] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=179] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=179] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=211, chan=180] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=180] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=211, chan=180] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=180] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=180] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=181] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=181] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=181] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=181] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=181] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=211, chan=182] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=182] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=211, chan=182] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=182] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=182] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=183] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=183] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=183] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=183] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=183] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=211, chan=184] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=184] Command: tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=211, chan=184] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=184] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=184] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=185] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=185] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=185] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=185] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=185] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=211, chan=186] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=186] Command: tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=211, chan=186] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=186] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=186] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=187] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=187] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=187] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=187] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=187] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=211, chan=188] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=188] Command: tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=211, chan=188] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=188] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=188] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=189] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=189] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=189] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=189] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=189] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=211, chan=190] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=190] Command: tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=211, chan=190] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=190] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=190] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=191] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=191] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=191] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=191] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=191] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=211, chan=192] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=192] Command: tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=211, chan=192] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=192] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=192] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=193] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=193] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=193] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=193] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=193] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=211, chan=194] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=194] Command: tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=211, chan=194] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=194] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=194] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=195] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=195] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=195] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=195] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=195] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=211, chan=196] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=196] Command: tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=211, chan=196] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=196] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=196] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=197] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=197] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=197] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=197] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=197] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=211, chan=198] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=198] Command: tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=211, chan=198] Received exit status 1 INFO asyncssh:logging.py:92 [conn=211, chan=198] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=198] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=211, chan=199] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=199] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=199] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=199] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=199] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=211, chan=200] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=200] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=211, chan=200] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=200] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=200] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=201] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=201] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=201] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=201] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=201] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=211, chan=202] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=202] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=211, chan=202] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=202] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=202] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=203] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=203] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=203] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=203] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=203] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=211, chan=204] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=204] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=211, chan=204] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=204] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=204] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=205] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=205] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=205] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=205] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=205] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=211, chan=206] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=206] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=211, chan=206] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=206] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=206] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=207] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=207] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=207] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=207] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=207] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=211, chan=208] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=208] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=211, chan=208] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=208] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=208] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=209] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=209] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=209] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=209] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=209] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=211, chan=210] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=210] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=211, chan=210] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=210] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=210] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=211] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=211] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=211] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=211] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=211] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=211, chan=212] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=212] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=211, chan=212] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=212] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=212] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=213] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=213] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=213] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=213] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=213] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=211, chan=214] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=214] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=211, chan=214] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=214] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=214] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=215] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=215] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=215] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=215] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=215] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=211, chan=216] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=216] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=211, chan=216] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=216] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=216] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=217] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=217] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=217] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=217] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=217] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=211, chan=218] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=218] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=211, chan=218] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=218] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=218] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=219] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=219] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=219] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=219] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=219] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=211, chan=220] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=220] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=211, chan=220] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=220] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=220] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=221] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=221] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=221] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=221] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=221] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=211, chan=222] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=222] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=211, chan=222] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=222] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=222] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=223] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=223] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=223] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=223] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=223] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=211, chan=224] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=224] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=211, chan=224] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=224] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=224] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=225] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=225] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=225] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=225] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=225] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=211, chan=226] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=226] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=211, chan=226] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=226] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=226] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=227] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=227] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=227] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=227] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=227] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=211, chan=228] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=228] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=211, chan=228] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=228] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=228] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=229] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=229] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=229] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=229] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=229] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=211, chan=230] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=230] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=211, chan=230] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=230] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=230] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=231] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=231] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=231] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=231] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=231] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=211, chan=232] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=232] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=211, chan=232] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=232] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=232] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=233] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=233] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=233] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=233] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=233] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=211, chan=234] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=234] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=211, chan=234] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=234] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=234] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=235] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=235] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=235] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=235] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=235] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=211, chan=236] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=236] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=211, chan=236] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=236] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=236] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=237] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=237] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=237] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=237] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=237] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=211, chan=238] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=238] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=211, chan=238] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=238] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=238] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=239] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=239] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=239] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=239] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=239] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=211, chan=240] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=240] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=211, chan=240] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=240] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=240] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=241] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=241] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=241] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=241] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=241] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=211, chan=242] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=242] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=211, chan=242] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=242] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=242] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=243] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=243] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=243] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=243] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=243] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=211, chan=244] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=244] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=211, chan=244] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=244] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=244] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=245] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=245] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=245] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=245] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=245] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=211, chan=246] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=246] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=211, chan=246] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=246] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=246] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=247] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=247] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=247] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=247] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=247] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=211, chan=248] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=248] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=211, chan=248] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=248] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=248] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=249] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=249] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=249] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=249] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=249] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=211, chan=250] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=250] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=211, chan=250] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=250] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=250] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=251] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=251] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=251] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=251] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=251] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=211, chan=252] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=252] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=211, chan=252] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=252] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=252] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=253] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=253] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=253] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=253] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=253] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=211, chan=254] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=254] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=211, chan=254] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=254] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=254] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=255] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=255] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=255] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=255] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=255] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=211, chan=256] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=256] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=211, chan=256] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=256] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=256] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=257] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=257] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=257] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=257] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=257] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=211, chan=258] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=258] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=211, chan=258] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=258] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=258] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=259] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=259] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=259] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=259] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=259] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=211, chan=260] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=260] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=211, chan=260] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=260] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=260] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=261] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=261] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=261] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=261] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=261] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=211, chan=262] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=262] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=211, chan=262] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=262] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=262] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=263] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=263] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=263] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=263] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=263] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=211, chan=264] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=264] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=211, chan=264] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=264] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=264] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=265] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=265] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=265] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=265] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=265] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=211, chan=266] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=266] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=211, chan=266] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=266] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=266] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=267] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=267] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=267] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=267] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=267] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=211, chan=268] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=268] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=211, chan=268] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=268] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=268] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=269] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=269] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=269] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=269] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=269] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=211, chan=270] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=270] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=211, chan=270] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=270] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=270] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=271] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=271] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=271] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=271] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=271] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=211, chan=272] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=272] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=211, chan=272] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=272] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=272] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=273] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=273] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=273] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=273] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=273] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=211, chan=274] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=274] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=211, chan=274] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=274] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=274] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=275] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=275] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=275] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=275] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=275] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=211, chan=276] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=276] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=211, chan=276] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=276] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=276] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=277] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=277] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=277] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=277] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=277] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=211, chan=278] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=278] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=211, chan=278] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=278] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=278] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=279] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=279] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=279] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=279] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=279] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=211, chan=280] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=280] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=211, chan=280] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=280] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=280] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=281] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=281] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=281] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=281] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=281] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=211, chan=282] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=282] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=211, chan=282] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=282] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=282] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=283] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=283] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=283] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=283] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=283] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=211, chan=284] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=284] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=211, chan=284] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=284] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=284] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=285] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=285] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=285] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=285] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=285] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=211, chan=286] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=286] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=211, chan=286] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=286] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=286] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/qos/test_qos_dscp_remarking.py::test_qos_dscp_remarking 297.80
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-13935' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_dscp_remarking">Starting testcase:test_qos_dscp_remarking from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_dscp_remarking.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=211, chan=287] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=212] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=212] Local address: 172.17.0.3, port 57856 INFO asyncssh:logging.py:92 [conn=212] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=212] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=212] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=212, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:30:53 AM UTC
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=212, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=1] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=212, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=2] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:30:53 AM UTC INFO asyncssh:logging.py:92 [conn=212, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=212, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=212, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=212, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=212, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=7] Channel closed DEBUG agg1:Logger.py:156 dcb app add dev swp1 dscp-prio 15:0 61:1 13:2 2:3 32:4 55:5 0:6 35:7&& dcb app add dev swp2 dscp-prio 36:0 26:1 19:2 0:3 45:4 18:5 21:6 17:7 INFO asyncssh:logging.py:92 [conn=212, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=8] Command: dcb app add dev swp1 dscp-prio 15:0 61:1 13:2 2:3 32:4 55:5 0:6 35:7&& dcb app add dev swp2 dscp-prio 36:0 26:1 19:2 0:3 45:4 18:5 21:6 17:7 INFO asyncssh:logging.py:92 [conn=212, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=9] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=212, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=10] Command: dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=212, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=10] Channel closed DEBUG agg1:Logger.py:156 {"dscp_prio":[[0,6],[2,3],[13,2],[15,0],[32,4],[35,7],[55,5],[61,1]]} INFO asyncssh:logging.py:92 [conn=212, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=11] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp2 dscp-prio INFO asyncssh:logging.py:92 [conn=212, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=12] Command: dcb -j app show dev swp2 dscp-prio INFO asyncssh:logging.py:92 [conn=212, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=12] Channel closed DEBUG agg1:Logger.py:156 {"dscp_prio":[[0,3],[17,7],[18,5],[19,2],[21,6],[26,1],[36,0],[45,4]]} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dscp [15,61,13,2,32,55,0,35] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.1/24 to 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dscp [36,26,19,0,45,18,21,17] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_1.1.1.2/24 to 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e1bc520>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI dscp [15 61 13 2 32 55 0 35] SIP-DIP 1.1.1.1-1.1.1.2 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI dscp [15 61 13 2 32 55 0 35] SIP-DIP 1.1.1.1-1.1.1.2 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI dscp [15 61 13 2 32 55 0 35] SIP-DIP 1.1.1.1-1.1.1.2 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI dscp [15 61 13 2 32 55 0 35] SIP-DIP 1.1.1.1-1.1.1.2 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI dscp [15 61 13 2 32 55 0 35] SIP-DIP 1.1.1.1-1.1.1.2 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI dscp [15 61 13 2 32 55 0 35] SIP-DIP 1.1.1.1-1.1.1.2 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI dscp [15 61 13 2 32 55 0 35] SIP-DIP 1.1.1.1-1.1.1.2 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI dscp [15 61 13 2 32 55 0 35] SIP-DIP 1.1.1.1-1.1.1.2 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI dscp [36 26 19 0 45 18 21 17] SIP-DIP 1.1.1.2-1.1.1.1 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI dscp [36 26 19 0 45 18 21 17] SIP-DIP 1.1.1.2-1.1.1.1 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI dscp [36 26 19 0 45 18 21 17] SIP-DIP 1.1.1.2-1.1.1.1 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI dscp [36 26 19 0 45 18 21 17] SIP-DIP 1.1.1.2-1.1.1.1 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI dscp [36 26 19 0 45 18 21 17] SIP-DIP 1.1.1.2-1.1.1.1 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI dscp [36 26 19 0 45 18 21 17] SIP-DIP 1.1.1.2-1.1.1.1 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI dscp [36 26 19 0 45 18 21 17] SIP-DIP 1.1.1.2-1.1.1.1 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI dscp [36 26 19 0 45 18 21 17] SIP-DIP 1.1.1.2-1.1.1.1 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [15 61 13 2 32 55 0 35] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 21 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [15 61 13 2 32 55 0 35] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 0 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [15 61 13 2 32 55 0 35] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 19 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [15 61 13 2 32 55 0 35] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 36 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [15 61 13 2 32 55 0 35] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 45 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [15 61 13 2 32 55 0 35] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 17 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [15 61 13 2 32 55 0 35] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 18 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [15 61 13 2 32 55 0 35] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 26 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [36 26 19 0 45 18 21 17] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 2 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [36 26 19 0 45 18 21 17] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 35 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [36 26 19 0 45 18 21 17] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 55 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [36 26 19 0 45 18 21 17] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 13 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [36 26 19 0 45 18 21 17] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 0 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [36 26 19 0 45 18 21 17] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 61 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [36 26 19 0 45 18 21 17] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 15 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [36 26 19 0 45 18 21 17] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 32 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] RX port | RX packets | RX DSCP | TX port | TX packets | TX DSCP | Prio | DSCP expected | DSCP correct | Loss INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp1 | 56 | 15 | swp2 | 56 | 36 | 0 | 36 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp1 | 56 | 61 | swp2 | 56 | 26 | 1 | 26 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp1 | 56 | 13 | swp2 | 56 | 19 | 2 | 19 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp1 | 56 | 2 | swp2 | 56 | 0 | 3 | 0 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp1 | 56 | 32 | swp2 | 56 | 45 | 4 | 45 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp1 | 56 | 55 | swp2 | 56 | 18 | 5 | 18 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp1 | 56 | 0 | swp2 | 56 | 21 | 6 | 21 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp1 | 56 | 35 | swp2 | 56 | 17 | 7 | 17 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp2 | 56 | 36 | swp1 | 56 | 15 | 0 | 15 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp2 | 56 | 26 | swp1 | 56 | 61 | 1 | 61 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp2 | 56 | 19 | swp1 | 56 | 13 | 2 | 13 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp2 | 56 | 0 | swp1 | 56 | 2 | 3 | 2 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp2 | 56 | 45 | swp1 | 56 | 32 | 4 | 32 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp2 | 56 | 18 | swp1 | 56 | 55 | 5 | 55 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp2 | 56 | 21 | swp1 | 56 | 0 | 6 | 0 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp2 | 56 | 17 | swp1 | 56 | 35 | 7 | 35 | True | False
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_dscp_remarking from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_dscp_remarking.py INFO asyncssh:logging.py:92 [conn=212, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=13] Channel closed DEBUG agg1:Logger.py:156 dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=212, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=14] Command: dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=212, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=212, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:35:48 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=212, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=212, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=212, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":249,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=212, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=212, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=212, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=212, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:35:48 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=212, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=212, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=212, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=212, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=212, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=212, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=212, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=212, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=212, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=212, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=212, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=212, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=212, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=212, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=212, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=212, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=212, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=212, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=212, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=212, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=212, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=212, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=212, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=212, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=212, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=212, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=212, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=212, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=212, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=212, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=212, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=212, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=212, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=212, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=212, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=212, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=212, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=212, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=212, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=212, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=212, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=212, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=212, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=212, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=212, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=212, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=212, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=212, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=212, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=212, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=212, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=212, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=212, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=212, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=212, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=212, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=212, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=212, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=212, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=212, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=212, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=212, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=212, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=212, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=212, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=212, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=212, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=212, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=212, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=212, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=212, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=212, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=212, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=212, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=212, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=212, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=212, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=212, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=212, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=212, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=212, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=212, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=212, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=112] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=212, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=212, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=114] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=212, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=212, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=116] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=212, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=212, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=118] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=212, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=212, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=120] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=212, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=212, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=122] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=212, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=212, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=124] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=212, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=212, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=126] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=212, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=212, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=128] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=212, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=212, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=130] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=212, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=212, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=132] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=212, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=212, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=134] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=212, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=212, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=136] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=212, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=212, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=138] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=212, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=212, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=140] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=212, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/qos/test_qos_shaper.py::test_qos_shaper[L2] 184.88
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-14088' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_shaper[L2]">Starting testcase:test_qos_shaper[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=212, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=213] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=213] Local address: 172.17.0.3, port 51336 INFO asyncssh:logging.py:92 [conn=213] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=213] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=213] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=213, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:35:50 AM UTC
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=213, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=1] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=213, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=2] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:35:50 AM UTC INFO asyncssh:logging.py:92 [conn=213, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=213, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=213, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=213, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=213, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan delete dev swp1 vid 1 && bridge vlan delete dev swp2 vid 1 INFO asyncssh:logging.py:92 [conn=213, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=8] Command: bridge vlan delete dev swp1 vid 1 && bridge vlan delete dev swp2 vid 1 INFO asyncssh:logging.py:92 [conn=213, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 4051 && bridge vlan add dev swp2 vid 4051 INFO asyncssh:logging.py:92 [conn=213, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=10] Command: bridge vlan add dev swp1 vid 4051 && bridge vlan add dev swp2 vid 4051 INFO asyncssh:logging.py:92 [conn=213, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=213, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=12] Command: tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=213, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=213, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=14] Command: tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=213, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': 4051, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 4051, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=213, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=18] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12906631,"packets":99517,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2265442,"packets":19646,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1599842,"packets":13388,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2870141,"packets":25123,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6171206,"packets":41360,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5147,"packets":38,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":969,"packets":6,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2068,"packets":13,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":270,"packets":3,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3029,"packets":13,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3029,"packets":13,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=213, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12909583,"packets":99538,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2268078,"packets":19664,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1600074,"packets":13389,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2870141,"packets":25123,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6171290,"packets":41362,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5380,"packets":39,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":1202,"packets":7,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":368292352,"packets":719321,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":368292352,"packets":719321,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":368292352,"packets":719321,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":368292352,"packets":719321,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":368292352,"packets":719321,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":368294910,"packets":719336,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":368292110,"packets":719323,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":368292352,"packets":719321,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3262,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3262,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e202f50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 719321 Rx 719321 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 719321 Rx 719321 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 719321 Rx 719321 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 719321 Rx 719321 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 719321 Rx 719321 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 719321 Rx 719321 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 719321 Rx 719321 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 719320 Rx 719320 Loss 0.000 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=213, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=22] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=213, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=213, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=24] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=213, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=24] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=213, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=26] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=213, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=213, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=44] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=213, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=213, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=46] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=213, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=46] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=48] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=48] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=48] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=50] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=50] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=50] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=52] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=52] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=52] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=54] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=54] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=54] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=56] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=56] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=56] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=58] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=58] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=58] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=60] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=60] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=60] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=62] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=62] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=62] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=213, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=64] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=213, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=213, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=66] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=213, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=213, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=68] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=213, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=213, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=70] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=213, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=213, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=72] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=213, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=213, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=74] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=213, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=213, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=76] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=213, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=213, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=78] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=213, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=213, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=80] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=213, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=213, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=82] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=213, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=213, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=84] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=213, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=213, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=86] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=213, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=213, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=88] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=213, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=213, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=90] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=213, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=213, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=92] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=213, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=213, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=94] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=213, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=213, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=96] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=213, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=213, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=98] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=213, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=213, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=100] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=213, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=213, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=102] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=213, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=213, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=104] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=213, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=213, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=106] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=213, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=213, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=108] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=213, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=213, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=110] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=213, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=213, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=112] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=213, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=213, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=114] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=213, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=213, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=116] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=213, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=213, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=118] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=213, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=213, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=120] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=213, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=213, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=122] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=213, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=213, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=124] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=213, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=213, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=126] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=213, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=213, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=128] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=213, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=213, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=130] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=213, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=213, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=132] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=213, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=213, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=134] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=213, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=213, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=136] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=213, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=213, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=138] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=213, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=213, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=140] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=213, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=213, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=142] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=213, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=213, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=144] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=213, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=213, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=146] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=213, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=213, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=148] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=213, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=213, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=150] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=213, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=213, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=152] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=213, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=213, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=154] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=213, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=154] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=155] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=213, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=156] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=213, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=156] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=157] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=213, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=158] Command: tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=213, chan=158] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=158] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=159] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 54Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 112Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 113Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 67Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 100Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 114Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 123Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 111Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=213, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=160] Command: tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 54Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 112Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 113Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 67Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 100Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 114Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 123Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 111Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=213, chan=160] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=160] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=161] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=162] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=162] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=162] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":8375000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":14000000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":15375000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":12500000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":14125000,"burst":1048569,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":6750000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":13875000,"burst":1048561,"lat":1}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":14250000,"burst":1048572,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=213, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=163] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=164] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=164] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=164] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13015679,"packets":100562,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2290376,"packets":19873,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1603244,"packets":13420,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2938747,"packets":25792,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6183312,"packets":41477,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5380,"packets":39,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":8375000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":14000000,"burst":1048572,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":15375000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":12500000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":14125000,"burst":1048569,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":6750000,"burst":1048572,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":13875000,"burst":1048561,"lat":1},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":14250000,"burst":1048572,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3262,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3262,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=213, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=165] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=166] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=166] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=166] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13018639,"packets":100581,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2290376,"packets":19873,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1603476,"packets":13421,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2941433,"packets":25809,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6183354,"packets":41478,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5846,"packets":41,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":233,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":8375000,"burst":1048575,"lat":0},"bytes":235268096,"packets":459508,"drops":320380,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":14000000,"burst":1048572,"lat":0},"bytes":392604672,"packets":766806,"drops":12038,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":15375000,"burst":1048575,"lat":0},"bytes":400660480,"packets":782540,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":12500000,"burst":1048575,"lat":0},"bytes":350658048,"packets":684879,"drops":91518,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":14125000,"burst":1048569,"lat":0},"bytes":396121600,"packets":773675,"drops":9466,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":6750000,"burst":1048572,"lat":0},"bytes":189804777,"packets":370713,"drops":411619,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":13875000,"burst":1048561,"lat":1},"bytes":389145600,"packets":760050,"drops":17791,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":14250000,"burst":1048572,"lat":0},"bytes":399567360,"packets":780405,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3728,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3728,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e169f30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 824922 Rx 370712 Loss 55.061 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 824922 Rx 766806 Loss 7.045 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 824922 Rx 773675 Loss 6.212 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 824922 Rx 459508 Loss 44.297 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 824922 Rx 684879 Loss 16.977 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 824922 Rx 780405 Loss 5.397 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 824922 Rx 782540 Loss 5.138 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 824922 Rx 760050 Loss 7.864
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_shaper[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py INFO asyncssh:logging.py:92 [conn=213, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=167] Channel closed DEBUG agg1:Logger.py:156 dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=213, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=168] Command: dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=213, chan=168] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=168] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=169] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=213, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=170] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=170] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=170] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:38:53 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=213, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=171] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=213, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=172] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=213, chan=172] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=172] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":250,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=213, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=173] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=213, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=174] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=213, chan=174] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=174] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=175] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=213, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=176] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=176] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=176] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:38:53 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=213, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=177] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=178] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=178] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=178] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":8375000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":14000000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":15375000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":12500000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":14125000,"burst":1048569,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":6750000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":13875000,"burst":1048561,"lat":1}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":14250000,"burst":1048572,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=213, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=179] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=179] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=179] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=179] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=213, chan=180] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=180] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=213, chan=180] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=180] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=180] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=181] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=181] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=181] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=181] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=181] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=213, chan=182] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=182] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=213, chan=182] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=182] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=182] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=183] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=183] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=183] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=183] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=183] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=184] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=184] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=184] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=184] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=184] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=185] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=185] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=185] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=185] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=185] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=186] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=186] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=186] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=186] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=186] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=187] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=187] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=187] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=187] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=187] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=188] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=188] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=188] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=188] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=188] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=189] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=189] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=189] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=189] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=189] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=190] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=190] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=190] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=190] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=190] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=191] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=191] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=191] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=191] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=191] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=192] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=192] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=192] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=192] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=192] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=193] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=193] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=193] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=193] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=193] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=194] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=194] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=194] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=194] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=194] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=195] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=195] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=195] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=195] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=195] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=196] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=196] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=196] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=196] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=196] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=197] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=197] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=197] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=197] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=197] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=198] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=198] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=198] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=198] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=198] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=199] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=199] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=199] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=199] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=199] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=213, chan=200] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=200] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=213, chan=200] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=200] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=200] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=201] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=201] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=201] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=201] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=201] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=213, chan=202] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=202] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=213, chan=202] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=202] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=202] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=203] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=203] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=203] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=203] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=203] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=204] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=204] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=204] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=204] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=204] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=205] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=205] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=205] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=205] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=205] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=206] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=206] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=206] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=206] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=206] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=207] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=207] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=207] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=207] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=207] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=208] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=208] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=208] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=208] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=208] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=209] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=209] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=209] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=209] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=209] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=210] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=210] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=210] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=210] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=210] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=211] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=211] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=211] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=211] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=211] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=212] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=212] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=212] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=212] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=212] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=213] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=213] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=213] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=213] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=213] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=214] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=214] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=214] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=214] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=214] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=215] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=215] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=215] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=215] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=215] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=216] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=216] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=216] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=216] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=216] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=217] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=217] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=217] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=217] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=217] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=218] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=218] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=213, chan=218] Received exit status 1 INFO asyncssh:logging.py:92 [conn=213, chan=218] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=218] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=213, chan=219] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=219] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=219] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=219] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=219] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=213, chan=220] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=220] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=213, chan=220] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=220] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=220] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=221] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=221] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=221] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=221] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=221] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=213, chan=222] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=222] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=213, chan=222] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=222] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=222] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=223] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=223] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=223] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=223] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=223] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=213, chan=224] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=224] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=213, chan=224] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=224] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=224] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=225] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=225] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=225] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=225] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=225] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=213, chan=226] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=226] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=213, chan=226] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=226] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=226] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=227] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=227] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=227] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=227] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=227] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=213, chan=228] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=228] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=213, chan=228] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=228] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=228] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=229] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=229] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=229] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=229] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=229] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=213, chan=230] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=230] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=213, chan=230] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=230] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=230] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=231] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=231] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=231] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=231] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=231] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=213, chan=232] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=232] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=213, chan=232] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=232] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=232] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=233] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=233] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=233] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=233] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=233] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=213, chan=234] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=234] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=213, chan=234] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=234] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=234] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=235] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=235] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=235] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=235] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=235] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=213, chan=236] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=236] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=213, chan=236] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=236] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=236] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=237] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=237] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=237] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=237] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=237] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=213, chan=238] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=238] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=213, chan=238] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=238] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=238] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=239] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=239] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=239] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=239] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=239] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=213, chan=240] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=240] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=213, chan=240] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=240] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=240] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=241] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=241] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=241] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=241] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=241] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=213, chan=242] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=242] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=213, chan=242] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=242] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=242] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=243] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=243] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=243] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=243] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=243] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=213, chan=244] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=244] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=213, chan=244] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=244] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=244] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=245] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=245] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=245] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=245] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=245] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=213, chan=246] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=246] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=213, chan=246] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=246] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=246] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=247] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=247] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=247] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=247] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=247] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=213, chan=248] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=248] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=213, chan=248] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=248] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=248] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=249] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=249] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=249] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=249] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=249] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=213, chan=250] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=250] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=213, chan=250] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=250] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=250] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=251] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=251] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=251] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=251] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=251] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=213, chan=252] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=252] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=213, chan=252] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=252] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=252] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=253] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=253] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=253] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=253] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=253] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=213, chan=254] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=254] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=213, chan=254] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=254] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=254] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=255] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=255] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=255] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=255] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=255] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=213, chan=256] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=256] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=213, chan=256] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=256] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=256] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=257] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=257] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=257] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=257] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=257] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=213, chan=258] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=258] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=213, chan=258] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=258] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=258] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=259] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=259] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=259] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=259] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=259] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=213, chan=260] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=260] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=213, chan=260] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=260] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=260] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=261] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=261] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=261] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=261] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=261] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=213, chan=262] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=262] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=213, chan=262] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=262] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=262] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=263] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=263] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=263] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=263] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=263] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=213, chan=264] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=264] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=213, chan=264] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=264] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=264] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=265] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=265] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=265] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=265] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=265] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=213, chan=266] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=266] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=213, chan=266] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=266] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=266] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=267] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=267] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=267] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=267] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=267] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=213, chan=268] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=268] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=213, chan=268] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=268] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=268] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=269] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=269] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=269] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=269] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=269] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=213, chan=270] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=270] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=213, chan=270] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=270] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=270] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=271] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=271] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=271] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=271] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=271] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=213, chan=272] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=272] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=213, chan=272] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=272] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=272] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=273] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=273] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=273] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=273] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=273] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=213, chan=274] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=274] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=213, chan=274] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=274] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=274] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=275] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=275] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=275] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=275] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=275] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=213, chan=276] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=276] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=213, chan=276] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=276] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=276] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=277] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=277] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=277] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=277] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=277] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=213, chan=278] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=278] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=213, chan=278] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=278] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=278] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=279] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=279] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=279] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=279] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=279] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=213, chan=280] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=280] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=213, chan=280] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=280] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=280] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=281] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=281] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=281] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=281] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=281] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=213, chan=282] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=282] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=213, chan=282] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=282] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=282] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=283] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=283] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=283] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=283] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=283] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=213, chan=284] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=284] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=213, chan=284] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=284] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=284] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=285] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=285] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=285] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=285] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=285] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=213, chan=286] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=286] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=213, chan=286] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=286] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=286] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=287] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=287] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=287] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=287] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=287] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=213, chan=288] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=288] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=213, chan=288] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=288] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=288] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=289] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=289] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=289] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=289] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=289] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=213, chan=290] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=290] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=213, chan=290] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=290] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=290] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=291] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=291] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=291] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=291] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=291] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=213, chan=292] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=292] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=213, chan=292] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=292] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=292] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=293] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=293] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=293] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=293] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=293] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=213, chan=294] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=294] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=213, chan=294] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=294] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=294] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=295] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=295] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=295] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=295] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=295] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=213, chan=296] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=296] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=213, chan=296] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=296] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=296] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=297] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=297] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=297] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=297] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=297] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=213, chan=298] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=298] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=213, chan=298] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=298] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=298] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=299] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=299] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=299] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=299] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=299] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=213, chan=300] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=300] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=213, chan=300] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=300] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=300] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=301] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=301] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=301] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=301] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=301] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=213, chan=302] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=302] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=213, chan=302] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=302] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=302] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=303] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=303] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=303] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=303] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=303] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=213, chan=304] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=304] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=213, chan=304] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=304] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=304] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=305] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=305] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=305] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=305] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=305] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=213, chan=306] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=306] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=213, chan=306] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=306] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=306] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=307] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=307] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=307] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=307] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=307] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=213, chan=308] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=308] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=213, chan=308] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=308] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=308] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=309] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=309] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=309] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=309] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=309] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=213, chan=310] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=310] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=213, chan=310] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=310] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=310] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/qos/test_qos_shaper.py::test_qos_shaper[L3] 176.39
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-14411' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_shaper[L3]">Starting testcase:test_qos_shaper[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=213, chan=311] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=214] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=214] Local address: 172.17.0.3, port 54850 INFO asyncssh:logging.py:92 [conn=214] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=214] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=214] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=214, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:38:55 AM UTC
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=214, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=1] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=214, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=2] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:38:55 AM UTC INFO asyncssh:logging.py:92 [conn=214, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=214, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=214, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=214, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=214, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=7] Channel closed DEBUG agg1:Logger.py:156 dcb app add dev swp1 dscp-prio 24:0 43:1 22:2 62:3 28:4 19:5 3:6 0:7 INFO asyncssh:logging.py:92 [conn=214, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=8] Command: dcb app add dev swp1 dscp-prio 24:0 43:1 22:2 62:3 28:4 19:5 3:6 0:7 INFO asyncssh:logging.py:92 [conn=214, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=9] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=214, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=10] Command: dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=214, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=10] Channel closed DEBUG agg1:Logger.py:156 {"dscp_prio":[[0,7],[3,6],[19,5],[22,2],[24,0],[28,4],[43,1],[62,3]]} INFO asyncssh:logging.py:92 [conn=214, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=214, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=12] Command: tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=214, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=214, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=14] Command: tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=214, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=214, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=18] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13143094,"packets":101762,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2298911,"packets":19954,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1618384,"packets":13563,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2971563,"packets":26072,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6254236,"packets":42173,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":8109,"packets":62,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":1845,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3620,"packets":29,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":710,"packets":7,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4427,"packets":19,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4427,"packets":19,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=214, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13145954,"packets":101783,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2298911,"packets":19954,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1618616,"packets":13564,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2974107,"packets":26090,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6254320,"packets":42175,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":8342,"packets":63,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2078,"packets":17,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":368850432,"packets":720411,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":368850432,"packets":720411,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":368849920,"packets":720410,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":368849920,"packets":720410,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":368850432,"packets":720411,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":368854542,"packets":720442,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":368850630,"packets":720417,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":368849920,"packets":720410,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4660,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4660,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e2b5330>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 720410 Rx 720410 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 720410 Rx 720410 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 720410 Rx 720410 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 720411 Rx 720411 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 720411 Rx 720411 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 720410 Rx 720410 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 720411 Rx 720411 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 720411 Rx 720411 Loss 0.000 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=214, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=22] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=214, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=214, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=24] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=214, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=24] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=214, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=26] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=214, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=214, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=44] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=214, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=214, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=46] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=214, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=46] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=48] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=48] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=48] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=50] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=50] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=50] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=52] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=52] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=52] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=54] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=54] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=54] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=56] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=56] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=56] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=58] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=58] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=58] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=60] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=60] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=60] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=62] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=62] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=62] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=214, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=64] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=214, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=214, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=66] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=214, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=214, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=68] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=214, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=214, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=70] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=214, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=214, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=72] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=214, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=214, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=74] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=214, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=214, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=76] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=214, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=214, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=78] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=214, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=214, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=80] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=214, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=214, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=82] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=214, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=214, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=84] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=214, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=214, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=86] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=214, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=214, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=88] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=214, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=214, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=90] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=214, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=214, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=92] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=214, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=214, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=94] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=214, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=214, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=96] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=214, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=214, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=98] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=214, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=214, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=100] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=214, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=214, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=102] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=214, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=214, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=104] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=214, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=214, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=106] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=214, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=214, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=108] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=214, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=214, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=110] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=214, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=214, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=112] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=214, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=214, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=114] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=214, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=214, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=116] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=214, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=214, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=118] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=214, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=214, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=120] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=214, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=214, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=122] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=214, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=214, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=124] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=214, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=214, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=126] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=214, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=214, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=128] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=214, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=214, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=130] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=214, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=214, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=132] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=214, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=214, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=134] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=214, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=214, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=136] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=214, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=214, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=138] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=214, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=214, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=140] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=214, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=214, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=142] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=214, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=214, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=144] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=214, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=214, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=146] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=214, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=214, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=148] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=214, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=214, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=150] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=214, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=214, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=152] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=214, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=214, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=154] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=214, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=154] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=155] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=214, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=156] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=214, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=156] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=157] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=214, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=158] Command: tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=214, chan=158] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=158] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=159] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 99Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 97Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 79Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 70Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 86Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 118Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 59Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 50Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=214, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=160] Command: tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 99Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 97Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 79Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 70Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 86Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 118Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 59Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 50Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=214, chan=160] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=160] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=161] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=162] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=162] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=162] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":8750000,"burst":1048573,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":12125000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":7375000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":10750000,"burst":1048565,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":9875000,"burst":1048567,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":12375000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":6250000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":14750000,"burst":1048562,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=214, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=163] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=164] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=164] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=164] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13252380,"packets":102806,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2306327,"packets":20026,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1624328,"packets":13620,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3062173,"packets":26939,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6259552,"packets":42221,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":8342,"packets":63,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":8750000,"burst":1048573,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":12125000,"burst":1048570,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":7375000,"burst":1048570,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":10750000,"burst":1048565,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":9875000,"burst":1048567,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":12375000,"burst":1048570,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":6250000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":14750000,"burst":1048562,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4660,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4660,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=214, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=165] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=166] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=166] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=166] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13255752,"packets":102827,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2306327,"packets":20026,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1624560,"packets":13621,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3065271,"packets":26958,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6259594,"packets":42222,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":8645,"packets":65,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":303,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":8750000,"burst":1048573,"lat":0},"bytes":246063104,"packets":480592,"drops":185225,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":12125000,"burst":1048570,"lat":0},"bytes":340649984,"packets":665332,"drops":18162,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":7375000,"burst":1048570,"lat":0},"bytes":207586816,"packets":405443,"drops":259883,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":10750000,"burst":1048565,"lat":0},"bytes":302112256,"packets":590063,"drops":78995,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":9875000,"burst":1048567,"lat":0},"bytes":277614080,"packets":542215,"drops":130289,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":12375000,"burst":1048570,"lat":0},"bytes":347629710,"packets":678967,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":6250000,"burst":1048575,"lat":0},"bytes":176036864,"packets":343822,"drops":332715,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":14750000,"burst":1048562,"lat":0},"bytes":343954944,"packets":671787,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5126,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4893,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":248,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e1bf790>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 826118 Rx 343822 Loss 58.381 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 826119 Rx 405443 Loss 50.922 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 826119 Rx 671787 Loss 18.682 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 826119 Rx 542215 Loss 34.366 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 826119 Rx 678963 Loss 17.813 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 826119 Rx 590063 Loss 28.574 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 826119 Rx 665332 Loss 19.463 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 826119 Rx 480592 Loss 41.825
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_shaper[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py INFO asyncssh:logging.py:92 [conn=214, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=167] Channel closed DEBUG agg1:Logger.py:156 dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=214, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=168] Command: dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=214, chan=168] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=168] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=169] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=214, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=170] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=170] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=170] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:41:49 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=214, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=171] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=214, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=172] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=214, chan=172] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=172] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":251,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=214, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=173] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=214, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=174] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=214, chan=174] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=174] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=175] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=214, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=176] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=176] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=176] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:41:49 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=214, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=177] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=178] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=214, chan=178] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=178] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":8750000,"burst":1048573,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":12125000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":7375000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":10750000,"burst":1048565,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":9875000,"burst":1048567,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":12375000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":6250000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":14750000,"burst":1048562,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=214, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=179] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=179] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=179] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=179] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=214, chan=180] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=180] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=214, chan=180] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=180] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=180] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=181] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=181] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=181] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=181] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=181] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=214, chan=182] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=182] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=214, chan=182] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=182] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=182] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=183] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=183] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=183] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=183] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=183] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=184] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=184] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=184] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=184] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=184] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=185] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=185] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=185] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=185] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=185] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=186] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=186] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=186] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=186] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=186] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=187] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=187] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=187] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=187] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=187] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=188] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=188] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=188] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=188] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=188] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=189] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=189] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=189] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=189] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=189] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=190] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=190] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=190] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=190] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=190] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=191] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=191] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=191] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=191] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=191] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=192] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=192] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=192] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=192] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=192] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=193] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=193] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=193] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=193] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=193] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=194] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=194] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=194] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=194] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=194] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=195] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=195] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=195] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=195] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=195] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=196] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=196] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=196] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=196] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=196] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=197] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=197] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=197] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=197] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=197] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=198] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=198] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=214, chan=198] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=198] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=198] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=214, chan=199] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=199] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=199] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=199] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=199] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=214, chan=200] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=200] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=214, chan=200] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=200] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=200] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=201] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=201] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=201] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=201] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=201] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=214, chan=202] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=202] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=214, chan=202] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=202] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=202] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=203] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=203] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=203] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=203] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=203] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=204] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=204] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=204] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=204] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=204] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=205] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=205] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=205] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=205] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=205] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=206] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=206] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=206] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=206] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=206] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=207] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=207] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=207] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=207] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=207] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=208] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=208] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=208] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=208] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=208] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=209] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=209] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=209] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=209] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=209] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=210] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=210] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=210] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=210] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=210] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=211] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=211] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=211] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=211] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=211] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=212] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=212] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=212] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=212] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=212] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=213] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=213] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=213] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=213] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=213] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=214] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=214] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=214] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=214] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=214] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=215] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=215] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=215] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=215] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=215] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=216] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=216] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=216] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=216] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=216] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=217] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=217] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=217] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=217] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=217] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=218] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=218] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=214, chan=218] Received exit status 1 INFO asyncssh:logging.py:92 [conn=214, chan=218] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=218] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=214, chan=219] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=219] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=219] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=219] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=219] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=214, chan=220] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=220] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=214, chan=220] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=220] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=220] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=221] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=221] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=221] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=221] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=221] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=214, chan=222] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=222] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=214, chan=222] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=222] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=222] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=223] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=223] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=223] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=223] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=223] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=214, chan=224] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=224] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=214, chan=224] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=224] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=224] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=225] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=225] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=225] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=225] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=225] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=214, chan=226] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=226] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=214, chan=226] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=226] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=226] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=227] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=227] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=227] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=227] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=227] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=214, chan=228] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=228] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=214, chan=228] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=228] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=228] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=229] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=229] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=229] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=229] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=229] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=214, chan=230] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=230] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=214, chan=230] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=230] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=230] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=231] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=231] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=231] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=231] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=231] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=214, chan=232] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=232] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=214, chan=232] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=232] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=232] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=233] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=233] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=233] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=233] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=233] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=214, chan=234] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=234] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=214, chan=234] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=234] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=234] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=235] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=235] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=235] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=235] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=235] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=214, chan=236] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=236] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=214, chan=236] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=236] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=236] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=237] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=237] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=237] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=237] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=237] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=214, chan=238] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=238] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=214, chan=238] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=238] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=238] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=239] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=239] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=239] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=239] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=239] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=214, chan=240] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=240] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=214, chan=240] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=240] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=240] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=241] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=241] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=241] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=241] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=241] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=214, chan=242] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=242] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=214, chan=242] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=242] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=242] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=243] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=243] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=243] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=243] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=243] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=214, chan=244] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=244] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=214, chan=244] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=244] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=244] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=245] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=245] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=245] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=245] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=245] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=214, chan=246] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=246] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=214, chan=246] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=246] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=246] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=247] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=247] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=247] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=247] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=247] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=214, chan=248] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=248] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=214, chan=248] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=248] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=248] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=249] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=249] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=249] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=249] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=249] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=214, chan=250] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=250] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=214, chan=250] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=250] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=250] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=251] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=251] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=251] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=251] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=251] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=214, chan=252] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=252] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=214, chan=252] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=252] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=252] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=253] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=253] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=253] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=253] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=253] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=214, chan=254] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=254] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=214, chan=254] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=254] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=254] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=255] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=255] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=255] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=255] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=255] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=214, chan=256] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=256] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=214, chan=256] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=256] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=256] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=257] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=257] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=257] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=257] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=257] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=214, chan=258] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=258] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=214, chan=258] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=258] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=258] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=259] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=259] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=259] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=259] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=259] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=214, chan=260] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=260] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=214, chan=260] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=260] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=260] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=261] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=261] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=261] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=261] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=261] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=214, chan=262] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=262] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=214, chan=262] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=262] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=262] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=263] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=263] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=263] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=263] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=263] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=214, chan=264] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=264] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=214, chan=264] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=264] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=264] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=265] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=265] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=265] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=265] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=265] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=214, chan=266] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=266] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=214, chan=266] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=266] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=266] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=267] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=267] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=267] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=267] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=267] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=214, chan=268] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=268] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=214, chan=268] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=268] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=268] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=269] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=269] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=269] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=269] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=269] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=214, chan=270] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=270] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=214, chan=270] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=270] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=270] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=271] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=271] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=271] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=271] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=271] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=214, chan=272] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=272] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=214, chan=272] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=272] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=272] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=273] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=273] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=273] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=273] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=273] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=214, chan=274] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=274] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=214, chan=274] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=274] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=274] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=275] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=275] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=275] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=275] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=275] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=214, chan=276] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=276] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=214, chan=276] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=276] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=276] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=277] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=277] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=277] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=277] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=277] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=214, chan=278] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=278] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=214, chan=278] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=278] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=278] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=279] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=279] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=279] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=279] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=279] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=214, chan=280] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=280] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=214, chan=280] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=280] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=280] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=281] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=281] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=281] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=281] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=281] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=214, chan=282] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=282] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=214, chan=282] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=282] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=282] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=283] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=283] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=283] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=283] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=283] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=214, chan=284] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=284] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=214, chan=284] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=284] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=284] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=285] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=285] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=285] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=285] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=285] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=214, chan=286] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=286] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=214, chan=286] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=286] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=286] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=287] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=287] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=287] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=287] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=287] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=214, chan=288] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=288] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=214, chan=288] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=288] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=288] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=289] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=289] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=289] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=289] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=289] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=214, chan=290] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=290] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=214, chan=290] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=290] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=290] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=291] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=291] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=291] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=291] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=291] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=214, chan=292] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=292] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=214, chan=292] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=292] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=292] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=293] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=293] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=293] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=293] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=293] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=214, chan=294] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=294] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=214, chan=294] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=294] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=294] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=295] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=295] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=295] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=295] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=295] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=214, chan=296] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=296] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=214, chan=296] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=296] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=296] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=297] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=297] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=297] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=297] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=297] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=214, chan=298] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=298] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=214, chan=298] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=298] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=298] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=299] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=299] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=299] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=299] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=299] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=214, chan=300] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=300] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=214, chan=300] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=300] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=300] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=301] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=301] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=301] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=301] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=301] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=214, chan=302] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=302] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=214, chan=302] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=302] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=302] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=303] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=303] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=303] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=303] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=303] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=214, chan=304] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=304] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=214, chan=304] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=304] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=304] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=305] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=305] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=305] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=305] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=305] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=214, chan=306] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=306] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=214, chan=306] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=306] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=306] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=307] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=307] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=307] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=307] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=307] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=214, chan=308] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=308] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=214, chan=308] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=308] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=308] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=214, chan=309] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=309] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=309] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=309] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=309] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=214, chan=310] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=310] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=214, chan=310] Received exit status 2 INFO asyncssh:logging.py:92 [conn=214, chan=310] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=310] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[sp-L2] 146.86
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-14734' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[sp-L2]">Starting testcase:test_qos_trust_mode[sp-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=214, chan=311] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=215] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=215] Local address: 172.17.0.3, port 44824 INFO asyncssh:logging.py:92 [conn=215] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=215] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=215] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=215, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:41:52 AM UTC
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=215, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=1] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=215, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=2] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:41:52 AM UTC INFO asyncssh:logging.py:92 [conn=215, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=215, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=215, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=215, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=215, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan delete dev swp1 vid 1 && bridge vlan delete dev swp2 vid 1 INFO asyncssh:logging.py:92 [conn=215, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=8] Command: bridge vlan delete dev swp1 vid 1 && bridge vlan delete dev swp2 vid 1 INFO asyncssh:logging.py:92 [conn=215, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 2434 && bridge vlan add dev swp2 vid 2434 INFO asyncssh:logging.py:92 [conn=215, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=10] Command: bridge vlan add dev swp1 vid 2434 && bridge vlan add dev swp2 vid 2434 INFO asyncssh:logging.py:92 [conn=215, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=215, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=12] Command: tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=215, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=215, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=14] Command: tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=215, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=215, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=215, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': 2434, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 2434, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e260a60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2153782 Rx 2153782 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2153782 Rx 2153782 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2153781 Rx 2153781 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2153781 Rx 2153781 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2153781 Rx 2153781 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2153781 Rx 2153781 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2153781 Rx 2153781 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2153781 Rx 2153781 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] PCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 0 | 0 | 344.18 | 0.00 | 24.44 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 1 | 1 | 344.18 | 0.00 | 24.44 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 2 | 2 | 344.18 | 0.00 | 24.44 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 3 | 3 | 344.18 | 0.00 | 24.44 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 4 | 4 | 344.18 | 0.00 | 24.44 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 5 | 5 | 344.18 | 0.00 | 24.44 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 6 | 6 | 344.18 | 0.00 | 24.44 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 7 | 7 | 344.18 | 0.00 | 24.44 | True INFO asyncssh:logging.py:92 [conn=215, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show dev swp2 INFO asyncssh:logging.py:92 [conn=215, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=18] Command: tc -j -s qdisc show dev swp2 INFO asyncssh:logging.py:92 [conn=215, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":1525,"packets":9,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1102735872,"packets":2153781,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1102736384,"packets":2153782,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1102735872,"packets":2153781,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1102735872,"packets":2153781,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1102735872,"packets":2153781,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1102739546,"packets":2153800,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1102736232,"packets":2153785,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1102735872,"packets":2153781,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT aggregation 1] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT aggregation 1] 8 | 0 | 1102739546 | 344.18 | 344.18 | 0.0 | 24.44 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 7 | 1 | 1102736384 | 344.18 | 344.18 | 0.0 | 24.44 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 6 | 2 | 1102735872 | 344.18 | 344.18 | 0.0 | 24.44 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 5 | 3 | 1102735872 | 344.18 | 344.18 | 0.0 | 24.44 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 4 | 4 | 1102735872 | 344.18 | 344.18 | 0.0 | 24.44 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 3 | 5 | 1102735872 | 344.18 | 344.18 | 0.0 | 24.44 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 2 | 6 | 1102735872 | 344.18 | 344.18 | 0.0 | 24.44 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 1 | 7 | 1102736232 | 344.18 | 344.18 | 0.0 | 24.44 | True
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[sp-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=215, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=19] Channel closed DEBUG agg1:Logger.py:156 dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=215, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=20] Command: dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=215, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=215, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:44:16 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=215, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=215, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=215, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":252,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=215, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=215, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=215, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=215, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=28] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:44:16 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=215, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=215, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=215, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=215, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=215, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=215, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=215, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=215, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=215, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=215, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=215, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=215, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=215, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=215, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=215, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=215, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=215, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=215, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=52] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=215, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=215, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=215, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=215, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=56] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=215, chan=56] Received exit status 1 INFO asyncssh:logging.py:92 [conn=215, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=56] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=215, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=215, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=58] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=215, chan=58] Received exit status 1 INFO asyncssh:logging.py:92 [conn=215, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=58] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=215, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=215, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=60] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=215, chan=60] Received exit status 1 INFO asyncssh:logging.py:92 [conn=215, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=60] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=215, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=215, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=62] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=215, chan=62] Received exit status 1 INFO asyncssh:logging.py:92 [conn=215, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=62] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=215, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=215, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=64] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=215, chan=64] Received exit status 1 INFO asyncssh:logging.py:92 [conn=215, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=64] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=215, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=215, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=66] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=215, chan=66] Received exit status 1 INFO asyncssh:logging.py:92 [conn=215, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=66] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=215, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=215, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=68] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=215, chan=68] Received exit status 1 INFO asyncssh:logging.py:92 [conn=215, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=68] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=215, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=215, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=70] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=215, chan=70] Received exit status 1 INFO asyncssh:logging.py:92 [conn=215, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=70] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=215, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=215, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=72] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=215, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=215, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=74] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=215, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=215, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=76] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=215, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=215, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=78] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=215, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=215, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=80] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=215, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=215, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=82] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=215, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=215, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=84] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=215, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=215, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=86] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=215, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=215, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=88] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=215, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=215, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=90] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=215, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=215, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=92] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=215, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=215, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=94] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=215, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=215, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=96] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=215, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=215, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=98] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=215, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=215, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=100] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=215, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=215, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=102] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=215, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=215, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=104] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=215, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=215, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=106] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=215, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=215, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=108] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=215, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=215, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=110] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=215, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=215, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=112] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=215, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=215, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=114] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=215, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=215, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=116] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=215, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=215, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=118] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=215, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=215, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=120] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=215, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=215, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=122] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=215, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=215, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=124] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=215, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=215, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=126] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=215, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=215, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=128] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=215, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=215, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=130] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=215, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=215, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=132] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=215, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=215, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=134] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=215, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=215, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=136] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=215, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=215, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=138] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=215, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=215, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=140] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=215, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=215, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=142] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=215, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=215, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=144] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=215, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=215, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=146] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=215, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=215, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=148] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=215, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=215, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=150] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=215, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=215, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=152] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=215, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=215, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=154] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=215, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=154] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=155] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=215, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=156] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=215, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=156] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=157] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=215, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=158] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=215, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=158] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=159] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=215, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=160] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=215, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=160] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=215, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=161] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=215, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=162] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=215, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=215, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=162] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[sp-L3] 143.83
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-14909' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[sp-L3]">Starting testcase:test_qos_trust_mode[sp-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=215, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=216] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=216] Local address: 172.17.0.3, port 35678 INFO asyncssh:logging.py:92 [conn=216] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=216] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=216] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=216, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:44:19 AM UTC
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=216, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=1] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=216, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=2] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:44:19 AM UTC INFO asyncssh:logging.py:92 [conn=216, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=216, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=216, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=216, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=216, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=7] Channel closed DEBUG agg1:Logger.py:156 dcb app add dev swp1 dscp-prio 62:0 47:1 44:2 10:3 20:4 35:5 5:6 49:7 INFO asyncssh:logging.py:92 [conn=216, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=8] Command: dcb app add dev swp1 dscp-prio 62:0 47:1 44:2 10:3 20:4 35:5 5:6 49:7 INFO asyncssh:logging.py:92 [conn=216, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=9] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=216, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=10] Command: dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=216, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=10] Channel closed DEBUG agg1:Logger.py:156 {"dscp_prio":[[5,6],[10,3],[20,4],[35,5],[44,2],[47,1],[49,7],[62,0]]} INFO asyncssh:logging.py:92 [conn=216, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=216, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=12] Command: tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=216, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=216, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=14] Command: tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=216, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=216, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=216, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e0b6800>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2156093 Rx 2156093 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2156093 Rx 2156093 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2156093 Rx 2156093 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2156093 Rx 2156093 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2156093 Rx 2156093 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2156094 Rx 2156094 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2156093 Rx 2156093 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2156094 Rx 2156094 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 62 | 0 | 344.19 | 0.00 | 24.47 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 47 | 1 | 344.19 | 0.00 | 24.47 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 44 | 2 | 344.19 | 0.00 | 24.47 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 10 | 3 | 344.19 | 0.00 | 24.47 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 20 | 4 | 344.19 | 0.00 | 24.47 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 35 | 5 | 344.19 | 0.00 | 24.47 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 5 | 6 | 344.19 | 0.00 | 24.47 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 49 | 7 | 344.19 | 0.00 | 24.47 | True INFO asyncssh:logging.py:92 [conn=216, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show dev swp2 INFO asyncssh:logging.py:92 [conn=216, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=18] Command: tc -j -s qdisc show dev swp2 INFO asyncssh:logging.py:92 [conn=216, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2435,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1103919616,"packets":2156093,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1103920128,"packets":2156094,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1103919616,"packets":2156093,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1103919616,"packets":2156093,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1103919616,"packets":2156093,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1103924970,"packets":2156130,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1103920380,"packets":2156101,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1103919616,"packets":2156093,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT aggregation 1] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT aggregation 1] 8 | 0 | 1103924970 | 344.19 | 344.19 | 0.0 | 24.47 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 7 | 1 | 1103920128 | 344.19 | 344.19 | 0.0 | 24.47 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 6 | 2 | 1103919616 | 344.19 | 344.19 | 0.0 | 24.47 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 5 | 3 | 1103919616 | 344.19 | 344.19 | 0.0 | 24.47 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 4 | 4 | 1103919616 | 344.19 | 344.19 | 0.0 | 24.47 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 3 | 5 | 1103919616 | 344.19 | 344.19 | 0.0 | 24.47 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 2 | 6 | 1103919616 | 344.19 | 344.19 | 0.0 | 24.47 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 1 | 7 | 1103920380 | 344.19 | 344.19 | 0.0 | 24.47 | True
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[sp-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=216, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=19] Channel closed DEBUG agg1:Logger.py:156 dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=216, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=20] Command: dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=216, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=216, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:46:40 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=216, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=216, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=216, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":253,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=216, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=216, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=216, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=216, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=28] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:46:40 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=216, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=216, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=216, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=216, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=216, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=216, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=216, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=216, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=216, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=216, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=216, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=216, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=216, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=216, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=216, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=216, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=216, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=216, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=52] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=216, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=216, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=216, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=216, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=56] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=216, chan=56] Received exit status 1 INFO asyncssh:logging.py:92 [conn=216, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=56] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=216, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=216, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=58] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=216, chan=58] Received exit status 1 INFO asyncssh:logging.py:92 [conn=216, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=58] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=216, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=216, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=60] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=216, chan=60] Received exit status 1 INFO asyncssh:logging.py:92 [conn=216, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=60] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=216, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=216, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=62] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=216, chan=62] Received exit status 1 INFO asyncssh:logging.py:92 [conn=216, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=62] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=216, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=216, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=64] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=216, chan=64] Received exit status 1 INFO asyncssh:logging.py:92 [conn=216, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=64] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=216, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=216, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=66] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=216, chan=66] Received exit status 1 INFO asyncssh:logging.py:92 [conn=216, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=66] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=216, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=216, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=68] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=216, chan=68] Received exit status 1 INFO asyncssh:logging.py:92 [conn=216, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=68] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=216, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=216, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=70] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=216, chan=70] Received exit status 1 INFO asyncssh:logging.py:92 [conn=216, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=70] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=216, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=216, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=72] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=216, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=216, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=74] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=216, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=216, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=76] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=216, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=216, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=78] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=216, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=216, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=80] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=216, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=216, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=82] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=216, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=216, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=84] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=216, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=216, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=86] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=216, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=216, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=88] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=216, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=216, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=90] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=216, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=216, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=92] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=216, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=216, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=94] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=216, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=216, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=96] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=216, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=216, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=98] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=216, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=216, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=100] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=216, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=216, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=102] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=216, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=216, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=104] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=216, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=216, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=106] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=216, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=216, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=108] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=216, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=216, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=110] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=216, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=216, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=112] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=216, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=216, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=114] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=216, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=216, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=116] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=216, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=216, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=118] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=216, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=216, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=120] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=216, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=216, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=122] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=216, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=216, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=124] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=216, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=216, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=126] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=216, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=216, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=128] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=216, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=216, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=130] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=216, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=216, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=132] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=216, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=216, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=134] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=216, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=216, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=136] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=216, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=216, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=138] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=216, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=216, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=140] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=216, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=216, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=142] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=216, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=216, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=144] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=216, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=216, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=146] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=216, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=216, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=148] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=216, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=216, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=150] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=216, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=216, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=152] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=216, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=216, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=154] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=216, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=154] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=155] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=216, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=156] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=216, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=156] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=157] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=216, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=158] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=216, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=158] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=159] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=216, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=160] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=216, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=160] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=216, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=161] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=216, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=162] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=216, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=216, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=162] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[wrr-L2] 142.84
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-15084' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[wrr-L2]">Starting testcase:test_qos_trust_mode[wrr-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=216, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=217] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=217] Local address: 172.17.0.3, port 45756 INFO asyncssh:logging.py:92 [conn=217] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=217] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=217] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=217, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:46:42 AM UTC
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=217, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=1] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=217, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=2] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:46:42 AM UTC INFO asyncssh:logging.py:92 [conn=217, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=217, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=217, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=217, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=217, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan delete dev swp1 vid 1 && bridge vlan delete dev swp2 vid 1 INFO asyncssh:logging.py:92 [conn=217, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=8] Command: bridge vlan delete dev swp1 vid 1 && bridge vlan delete dev swp2 vid 1 INFO asyncssh:logging.py:92 [conn=217, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 1701 && bridge vlan add dev swp2 vid 1701 INFO asyncssh:logging.py:92 [conn=217, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=10] Command: bridge vlan add dev swp1 vid 1701 && bridge vlan add dev swp2 vid 1701 INFO asyncssh:logging.py:92 [conn=217, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 10 root ets bands 8 quanta 9 8 7 6 6 6 5 3 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=217, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=12] Command: tc qdisc add dev swp2 handle 10 root ets bands 8 quanta 9 8 7 6 6 6 5 3 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=217, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=217, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=14] Command: tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=217, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=217, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=217, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[9,8,7,6,6,6,5,3],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': 1701, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 1701, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e176e30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2152373 Rx 2152373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2152373 Rx 2152373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2152373 Rx 2152373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2152373 Rx 2152373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2152373 Rx 2152373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2152373 Rx 2152373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2152372 Rx 2152372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2152372 Rx 2152372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] PCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 0 | 0 | 344.18 | 0.00 | 24.43 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 1 | 1 | 344.18 | 0.00 | 24.43 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 2 | 2 | 344.18 | 0.00 | 24.43 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 3 | 3 | 344.18 | 0.00 | 24.43 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 4 | 4 | 344.18 | 0.00 | 24.43 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 5 | 5 | 344.18 | 0.00 | 24.43 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 6 | 6 | 344.18 | 0.00 | 24.43 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 7 | 7 | 344.18 | 0.00 | 24.43 | True INFO asyncssh:logging.py:92 [conn=217, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show dev swp2 INFO asyncssh:logging.py:92 [conn=217, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=18] Command: tc -j -s qdisc show dev swp2 INFO asyncssh:logging.py:92 [conn=217, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[9,8,7,6,6,6,5,3],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":1435,"packets":8,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1102014976,"packets":2152373,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1102014976,"packets":2152373,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1102014464,"packets":2152372,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1102014976,"packets":2152373,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1102014976,"packets":2152373,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1102018024,"packets":2152390,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1102014734,"packets":2152375,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1102014976,"packets":2152373,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT aggregation 1] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT aggregation 1] 8 | 0 | 1102018024 | 344.18 | 344.18 | 0.0 | 24.43 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 7 | 1 | 1102014976 | 344.18 | 344.18 | 0.0 | 24.43 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 6 | 2 | 1102014976 | 344.18 | 344.18 | 0.0 | 24.43 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 5 | 3 | 1102014976 | 344.18 | 344.18 | 0.0 | 24.43 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 4 | 4 | 1102014976 | 344.18 | 344.18 | 0.0 | 24.43 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 3 | 5 | 1102014976 | 344.18 | 344.18 | 0.0 | 24.43 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 2 | 6 | 1102014464 | 344.18 | 344.18 | 0.0 | 24.43 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 1 | 7 | 1102014734 | 344.18 | 344.18 | 0.0 | 24.43 | True
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[wrr-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=217, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=19] Channel closed DEBUG agg1:Logger.py:156 dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=217, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=20] Command: dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=217, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=217, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:49:03 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=217, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=217, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=217, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":254,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=217, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=217, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=217, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=217, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=28] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:49:03 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=217, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=217, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=217, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[9,8,7,6,6,6,5,3],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=217, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=217, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=217, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=217, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=217, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=217, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=217, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=217, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=217, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=217, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=217, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=217, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=217, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=217, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=52] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=217, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=217, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=217, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=217, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=56] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=217, chan=56] Received exit status 1 INFO asyncssh:logging.py:92 [conn=217, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=56] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=217, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=217, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=58] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=217, chan=58] Received exit status 1 INFO asyncssh:logging.py:92 [conn=217, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=58] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=217, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=217, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=60] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=217, chan=60] Received exit status 1 INFO asyncssh:logging.py:92 [conn=217, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=60] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=217, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=217, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=62] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=217, chan=62] Received exit status 1 INFO asyncssh:logging.py:92 [conn=217, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=62] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=217, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=217, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=64] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=217, chan=64] Received exit status 1 INFO asyncssh:logging.py:92 [conn=217, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=64] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=217, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=217, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=66] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=217, chan=66] Received exit status 1 INFO asyncssh:logging.py:92 [conn=217, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=66] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=217, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=217, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=68] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=217, chan=68] Received exit status 1 INFO asyncssh:logging.py:92 [conn=217, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=68] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=217, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=217, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=70] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=217, chan=70] Received exit status 1 INFO asyncssh:logging.py:92 [conn=217, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=70] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=217, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=217, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=72] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=217, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=217, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=74] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=217, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=217, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=76] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=217, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=217, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=78] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=217, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=217, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=80] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=217, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=217, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=82] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=217, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=217, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=84] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=217, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=217, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=86] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=217, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=217, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=88] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=217, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=217, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=90] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=217, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=217, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=92] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=217, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=217, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=94] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=217, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=217, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=96] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=217, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=217, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=98] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=217, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=217, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=100] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=217, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=217, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=102] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=217, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=217, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=104] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=217, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=217, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=106] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=217, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=217, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=108] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=217, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=217, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=110] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=217, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=217, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=112] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=217, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=217, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=114] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=217, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=217, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=116] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=217, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=217, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=118] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=217, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=217, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=120] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=217, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=217, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=122] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=217, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=217, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=124] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=217, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=217, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=126] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=217, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=217, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=128] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=217, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=217, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=130] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=217, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=217, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=132] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=217, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=217, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=134] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=217, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=217, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=136] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=217, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=217, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=138] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=217, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=217, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=140] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=217, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=217, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=142] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=217, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=217, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=144] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=217, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=217, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=146] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=217, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=217, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=148] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=217, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=217, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=150] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=217, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=217, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=152] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=217, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=217, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=154] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=217, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=154] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=155] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=217, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=156] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=217, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=156] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=157] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=217, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=158] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=217, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=158] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=159] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=217, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=160] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=217, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=160] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=161] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=217, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=162] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=217, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=162] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[wrr-L3] 143.25
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-15259' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[wrr-L3]">Starting testcase:test_qos_trust_mode[wrr-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=217, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=218] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=218] Local address: 172.17.0.3, port 34556 INFO asyncssh:logging.py:92 [conn=218] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=218] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=218] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=218, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:49:05 AM UTC
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=218, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=1] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=218, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=2] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:49:05 AM UTC INFO asyncssh:logging.py:92 [conn=218, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=218, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=218, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=218, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=218, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=7] Channel closed DEBUG agg1:Logger.py:156 dcb app add dev swp1 dscp-prio 47:0 38:1 41:2 18:3 23:4 60:5 36:6 59:7 INFO asyncssh:logging.py:92 [conn=218, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=8] Command: dcb app add dev swp1 dscp-prio 47:0 38:1 41:2 18:3 23:4 60:5 36:6 59:7 INFO asyncssh:logging.py:92 [conn=218, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=9] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=218, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=10] Command: dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=218, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=10] Channel closed DEBUG agg1:Logger.py:156 {"dscp_prio":[[18,3],[23,4],[36,6],[38,1],[41,2],[47,0],[59,7],[60,5]]} INFO asyncssh:logging.py:92 [conn=218, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 10 root ets bands 8 quanta 10 9 9 7 6 5 4 3 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=218, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=12] Command: tc qdisc add dev swp2 handle 10 root ets bands 8 quanta 10 9 9 7 6 5 4 3 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=218, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=218, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=14] Command: tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=218, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[10,9,9,7,6,5,4,3],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e0e70a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2156775 Rx 2156775 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2156775 Rx 2156775 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2156775 Rx 2156775 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2156776 Rx 2156776 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2156775 Rx 2156775 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2156776 Rx 2156776 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2156775 Rx 2156775 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2156775 Rx 2156775 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 47 | 0 | 344.18 | 0.00 | 24.48 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 38 | 1 | 344.18 | 0.00 | 24.48 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 41 | 2 | 344.18 | 0.00 | 24.48 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 18 | 3 | 344.18 | 0.00 | 24.48 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 23 | 4 | 344.18 | 0.00 | 24.48 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 60 | 5 | 344.18 | 0.00 | 24.48 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 36 | 6 | 344.18 | 0.00 | 24.48 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 59 | 7 | 344.18 | 0.00 | 24.48 | True INFO asyncssh:logging.py:92 [conn=218, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show dev swp2 INFO asyncssh:logging.py:92 [conn=218, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=18] Command: tc -j -s qdisc show dev swp2 INFO asyncssh:logging.py:92 [conn=218, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[10,9,9,7,6,5,4,3],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2435,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1104268800,"packets":2156775,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1104269312,"packets":2156776,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1104268800,"packets":2156775,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1104268800,"packets":2156775,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1104268800,"packets":2156775,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1104274154,"packets":2156812,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1104269564,"packets":2156783,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1104268800,"packets":2156775,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT aggregation 1] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT aggregation 1] 8 | 0 | 1104274154 | 344.18 | 344.18 | 0.0 | 24.48 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 7 | 1 | 1104269312 | 344.18 | 344.18 | 0.0 | 24.48 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 6 | 2 | 1104268800 | 344.18 | 344.18 | 0.0 | 24.48 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 5 | 3 | 1104268800 | 344.18 | 344.18 | 0.0 | 24.48 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 4 | 4 | 1104268800 | 344.18 | 344.18 | 0.0 | 24.48 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 3 | 5 | 1104268800 | 344.18 | 344.18 | 0.0 | 24.48 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 2 | 6 | 1104268800 | 344.18 | 344.18 | 0.0 | 24.48 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 1 | 7 | 1104269564 | 344.18 | 344.18 | 0.0 | 24.48 | True
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[wrr-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=218, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=19] Channel closed DEBUG agg1:Logger.py:156 dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=218, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=20] Command: dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=218, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=218, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:51:26 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=218, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=218, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=218, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":255,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=218, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=218, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=218, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=218, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=28] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:51:26 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=218, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[10,9,9,7,6,5,4,3],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=218, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=218, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=218, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=218, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=218, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=218, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=52] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=218, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=218, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=218, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=218, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=56] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=218, chan=56] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=56] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=218, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=58] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=218, chan=58] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=58] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=218, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=60] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=218, chan=60] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=60] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=218, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=62] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=218, chan=62] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=62] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=218, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=64] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=218, chan=64] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=64] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=218, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=66] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=218, chan=66] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=66] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=218, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=68] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=218, chan=68] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=68] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=218, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=70] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=218, chan=70] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=70] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=218, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=72] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=218, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=218, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=74] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=218, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=218, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=76] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=218, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=218, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=78] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=218, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=218, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=80] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=218, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=218, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=82] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=218, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=218, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=84] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=218, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=218, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=86] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=218, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=218, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=88] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=218, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=218, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=90] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=218, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=218, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=92] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=218, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=218, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=94] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=218, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=218, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=96] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=218, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=218, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=98] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=218, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=218, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=100] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=218, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=218, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=102] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=218, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=218, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=104] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=218, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=218, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=106] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=218, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=218, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=108] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=218, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=218, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=110] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=218, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=218, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=112] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=218, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=218, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=114] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=218, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=218, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=116] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=218, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=218, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=118] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=218, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=218, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=120] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=218, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=218, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=122] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=218, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=218, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=124] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=218, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=218, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=126] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=218, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=218, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=128] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=218, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=218, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=130] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=218, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=218, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=132] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=218, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=218, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=134] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=218, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=218, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=136] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=218, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=218, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=138] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=218, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=218, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=140] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=218, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=218, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=142] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=218, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=218, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=144] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=218, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=218, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=146] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=218, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=218, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=148] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=218, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=218, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=150] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=218, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=218, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=152] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=218, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=218, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=154] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=218, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=154] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=155] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=218, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=156] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=218, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=156] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=157] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=218, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=158] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=218, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=158] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=159] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=218, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=160] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=218, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=160] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=161] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=218, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=162] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=218, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=162] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py::test_storm_control_br_and_mc_lag_and_vlan_membership 211.94
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_br_and_mc_lag_and_vlan_membership">Starting testcase:test_storm_control_br_and_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-15435' coro=<test_storm_control_br_and_mc_lag_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=218, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=219] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=219] Local address: 172.17.0.3, port 41898 INFO asyncssh:logging.py:92 [conn=219] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=219] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=219] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=219, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:51:29 AM UTC INFO asyncssh:logging.py:92 [conn=219, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=219, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=219, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond1 up && ip link set dev swp1 down && ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=219, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=4] Command: ip link set dev bond1 up && ip link set dev swp1 down && ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=219, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=219, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=219, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond2 up && ip link set dev swp3 down && ip link set dev swp3 master bond2 INFO asyncssh:logging.py:92 [conn=219, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=8] Command: ip link set dev bond2 up && ip link set dev swp3 down && ip link set dev swp3 master bond2 INFO asyncssh:logging.py:92 [conn=219, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=219, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=219, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=219, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=219, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=219, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=219, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=219, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=16] Command: ip link set dev swp2 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=219, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=219, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=219, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=219, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=219, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=21] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 1 pvid untagged && bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=219, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=22] Command: bridge vlan add dev swp2 vid 1 pvid untagged && bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=219, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=23] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=219, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=219, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=25] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=26] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=27] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=28] Command: devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=28] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=219, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=29] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 12010 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=30] Command: devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 12010 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=31] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=32] Command: devlink -j port param show pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=32] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":12010}]}]}} INFO asyncssh:logging.py:92 [conn=219, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=33] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 42099 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=34] Command: devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 42099 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=35] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=36] Command: devlink -j port param show pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=36] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":42099}]}]}} INFO asyncssh:logging.py:92 [conn=219, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=37] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=38] Command: devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=39] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=40] Command: devlink -j port param show pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=40] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=219, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=41] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=42] Command: devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=43] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=44] Command: devlink -j port param show pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=44] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=219, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=45] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=46] Command: devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=46] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=47] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=48] Command: devlink -j port param show pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=48] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/3":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]}]}} INFO asyncssh:logging.py:92 [conn=219, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=49] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=50] Command: devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=51] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=52] Command: devlink -j port param show pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=219, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=52] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/4":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_br INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e0b5720>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 705488 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 15169660 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=219, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=53] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=219, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=219, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=54] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":12010}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":42099}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":97367}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=219, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=55] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=56] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=57] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=58] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=59] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=60] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=219, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=60] Channel closed DEBUG agg1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_br_and_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=219, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=61] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=219, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=62] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:54:55 AM UTC INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=219, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=63] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=219, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=219, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=64] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":256,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":257,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":258,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":94.16,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=219, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=65] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=219, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=219, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=66] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=67] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=219, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=219, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=68] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=219, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=69] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=219, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=70] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:54:56 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=219, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=71] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=219, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=72] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:55:00 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=219, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=73] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=219, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=219, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=74] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":258,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=219, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=75] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=219, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=219, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=76] Channel closed DEBUG agg1:Logger.py:156
Passed functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py::test_storm_control_br_and_unk_un_and_vlan_membership 208.78
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_br_and_unk_un_and_vlan_membership">Starting testcase:test_storm_control_br_and_unk_un_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-15524' coro=<test_storm_control_br_and_unk_un_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=219, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=220] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=220] Local address: 172.17.0.3, port 58632 INFO asyncssh:logging.py:92 [conn=220] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=220] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=220] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=220, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:55:00 AM UTC INFO asyncssh:logging.py:92 [conn=220, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=220, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=220, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond1 up && ip link set dev swp1 down && ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=220, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=4] Command: ip link set dev bond1 up && ip link set dev swp1 down && ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=220, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=220, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=220, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond2 up && ip link set dev swp3 down && ip link set dev swp3 master bond2 INFO asyncssh:logging.py:92 [conn=220, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=8] Command: ip link set dev bond2 up && ip link set dev swp3 down && ip link set dev swp3 master bond2 INFO asyncssh:logging.py:92 [conn=220, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=220, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=220, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=220, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=220, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=220, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=220, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=220, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=16] Command: ip link set dev swp2 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=220, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=220, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=220, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=220, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=220, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=21] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 1 pvid untagged && bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=220, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=22] Command: bridge vlan add dev swp2 vid 1 pvid untagged && bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=220, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=23] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=220, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=220, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=25] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=26] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=27] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=28] Command: devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=28] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=220, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=29] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=30] Command: devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=31] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=32] Command: devlink -j port param show pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=32] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]}]}} INFO asyncssh:logging.py:92 [conn=220, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=33] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=34] Command: devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=35] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=36] Command: devlink -j port param show pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=36] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}]}} INFO asyncssh:logging.py:92 [conn=220, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=37] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=38] Command: devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=39] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=40] Command: devlink -j port param show pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=40] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=220, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=41] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=42] Command: devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=43] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=44] Command: devlink -j port param show pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=44] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=220, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=45] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 20511 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=46] Command: devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 20511 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=46] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=47] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=48] Command: devlink -j port param show pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=48] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/3":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":20511}]}]}} INFO asyncssh:logging.py:92 [conn=220, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=49] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=50] Command: devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=51] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=52] Command: devlink -j port param show pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=220, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=52] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/4":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_br INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_unk_un INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_unk_un INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_unk_un INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e0b79a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 11966543 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 405504 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=220, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=53] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=220, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=220, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=54] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":20511}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=220, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=55] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=56] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=57] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=58] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=59] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=60] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=220, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=60] Channel closed DEBUG agg1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_br_and_unk_un_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=220, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=61] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=220, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=62] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:58:24 AM UTC INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=220, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=63] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=220, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=220, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=64] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":259,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":260,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":261,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":97.41,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=220, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=65] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=220, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=220, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=66] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=67] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=220, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=220, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=68] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=220, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=69] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=220, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=70] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:58:25 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=220, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=71] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=220, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=72] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:58:29 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=220, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=73] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=220, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=220, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=74] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":261,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=220, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=75] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=220, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=220, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=76] Channel closed DEBUG agg1:Logger.py:156
Passed functional/storm_control/test_storm_control_broadcast_traffic.py::test_storm_control_broadcast_traffic 162.21
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_broadcast_traffic">Starting testcase:test_storm_control_broadcast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_broadcast_traffic.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-15612' coro=<test_storm_control_broadcast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_broadcast_traffic.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=220, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=221] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=221] Local address: 172.17.0.3, port 55746 INFO asyncssh:logging.py:92 [conn=221] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=221] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=221] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=221, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 04:58:29 AM UTC INFO asyncssh:logging.py:92 [conn=221, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=221, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=221, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=221, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=221, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=221, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=221, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=7] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=221, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=8] Command: devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=221, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=8] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=221, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=9] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 118227 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=10] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 118227 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=11] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=221, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=12] Command: devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=221, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=12] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118227}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e0e7310>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 5918182 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 570160 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 570185 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 570183 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=221, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=13] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=221, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=14] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=221, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=14] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118227}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=221, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=15] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=16] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=17] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=18] Command: devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=19] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=20] Command: devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=21] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=22] Command: devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=22] Channel closed DEBUG agg1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_broadcast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_broadcast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=221, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=221, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:01:06 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=221, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=221, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:01:11 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=221, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=221, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=221, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":262,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=221, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=221, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=221, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=30] Channel closed DEBUG agg1:Logger.py:156
Passed functional/storm_control/test_storm_control_interaction_policer_rules.py::test_storm_control_interaction_policer_rules 260.49
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-15713' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_interaction_policer_rules">Starting testcase:test_storm_control_interaction_policer_rules from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_policer_rules.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=222, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=223] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=223] Local address: 172.17.0.3, port 32896 INFO asyncssh:logging.py:92 [conn=223] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=223] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=223] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=223, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:05:39 AM UTC INFO asyncssh:logging.py:92 [conn=223, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=223, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=223, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=223, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=223, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=223, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=223, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=223, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=223, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=223, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:05:39 AM UTC INFO asyncssh:logging.py:92 [conn=223, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=223, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=223, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=11] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 37686 cmode runtime INFO asyncssh:logging.py:92 [conn=223, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=12] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 37686 cmode runtime INFO asyncssh:logging.py:92 [conn=223, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=13] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=223, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=14] Command: devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=223, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=14] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37686}]}]}} INFO asyncssh:logging.py:92 [conn=223, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=15] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 109413 cmode runtime INFO asyncssh:logging.py:92 [conn=223, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=16] Command: devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 109413 cmode runtime INFO asyncssh:logging.py:92 [conn=223, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=17] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=223, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=18] Command: devlink -j port param show pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=223, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=18] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":109413}]}]}} INFO asyncssh:logging.py:92 [conn=223, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=19] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 75373 cmode runtime INFO asyncssh:logging.py:92 [conn=223, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=20] Command: devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 75373 cmode runtime INFO asyncssh:logging.py:92 [conn=223, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=21] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=223, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=22] Command: devlink -j port param show pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=223, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=22] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75373}]}]}} INFO asyncssh:logging.py:92 [conn=223, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress && tc qdisc add dev swp2 ingress && tc qdisc add dev swp3 ingress INFO asyncssh:logging.py:92 [conn=223, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=24] Command: tc qdisc add dev swp1 ingress && tc qdisc add dev swp2 ingress && tc qdisc add dev swp3 ingress INFO asyncssh:logging.py:92 [conn=223, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=223, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=26] Command: tc filter add dev swp1 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=223, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp2 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=223, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=28] Command: tc filter add dev swp2 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=223, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp3 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=223, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=30] Command: tc filter add dev swp3 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=223, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp3->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp3->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp3->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=223, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=31] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=223, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=32] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=223, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=32] Channel closed DEBUG agg1:Logger.py:156 4073 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=223, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 49152 && tc filter delete dev swp2 ingress pref 49152 && tc filter delete dev swp3 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=223, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=34] Command: tc filter delete dev swp1 ingress pref 49152 && tc filter delete dev swp2 ingress pref 49152 && tc filter delete dev swp3 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=223, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=223, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=36] Command: ip link add br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=223, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=223, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=38] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=223, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=223, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=40] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=223, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=223, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=42] Command: tc filter add dev swp1 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=223, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp2 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=223, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=44] Command: tc filter add dev swp2 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=223, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=44] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp3 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=223, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=46] Command: tc filter add dev swp3 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=223, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=46] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e1bcac0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 17078627 Rx 13805 Frames Delta 17064822 Loss 99.919 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 17078627 Rx 13881 Frames Delta 17064746 Loss 99.919 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 4269657 Rx 13122 Frames Delta 4256535 Loss 99.693 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp3->swp4 Tx 4269657 Rx 4269655 Frames Delta 2 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp3->swp2 Tx 4269657 Rx 4269655 Frames Delta 2 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp3->swp1 Tx 4269656 Rx 4269655 Frames Delta 1 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=223, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=47] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=223, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=48] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=223, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=48] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37686}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":109413}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75373}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=223, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=49] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=223, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=50] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=223, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=51] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=223, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=52] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=223, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=52] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=53] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=223, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=54] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=223, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=54] Channel closed DEBUG agg1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_interaction_policer_rules from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_policer_rules.py INFO asyncssh:logging.py:92 [conn=223, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=55] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=223, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=223, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=57] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=223, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=58] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:09:55 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=223, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=60] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=60] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp2","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp3","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=223, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=223, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=62] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=223, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=223, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=64] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=223, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=66] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=68] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=70] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=72] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=74] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=76] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=78] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=80] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=223, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=82] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=223, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=223, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=84] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=223, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=84] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=223, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=86] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=223, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=223, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=88] Command: tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=223, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=88] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=223, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=90] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=223, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 ingress INFO asyncssh:logging.py:92 [conn=223, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=92] Command: tc qdisc delete dev swp3 ingress INFO asyncssh:logging.py:92 [conn=223, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=92] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=223, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=94] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=223, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=223, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=96] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=223, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=223, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=98] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=223, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=223, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=100] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=223, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=223, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=102] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=223, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=223, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=104] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=223, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=223, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=106] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=223, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=223, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=108] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=223, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=223, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=110] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=223, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=223, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=112] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=223, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=223, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=114] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=223, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=223, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=116] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=223, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=223, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=118] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=223, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=223, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=120] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=223, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=223, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=122] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=223, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=223, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=124] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=223, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=223, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=126] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=223, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=223, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=128] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=223, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=223, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=130] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=223, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=223, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=132] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=223, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=223, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=134] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=223, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=223, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=136] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=223, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=223, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=138] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=223, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=223, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=140] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=223, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=223, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=142] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=223, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=223, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=144] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=223, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=223, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=146] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=223, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=223, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=148] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=223, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=223, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=150] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=223, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=223, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=152] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=223, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=223, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=154] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=223, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=154] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=155] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=223, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=156] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=223, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=156] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=157] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=223, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=158] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=223, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=158] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=159] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=223, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=160] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=223, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=160] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=161] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=223, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=162] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=223, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=162] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=163] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=223, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=164] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=223, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=164] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=165] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=223, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=166] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=223, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=166] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=167] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=223, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=168] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=223, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=168] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=169] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=223, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=170] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=223, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=170] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=171] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=223, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=172] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=223, chan=172] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=172] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=173] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=223, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=174] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=223, chan=174] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=174] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=175] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=223, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=176] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=223, chan=176] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=176] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=177] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=223, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=178] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=223, chan=178] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=178] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=179] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=179] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=179] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=179] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=223, chan=180] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=180] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=223, chan=180] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=180] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=180] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=181] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=181] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=181] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=181] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=181] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=223, chan=182] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=182] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=223, chan=182] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=182] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=182] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=183] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=183] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=183] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=183] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=183] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=223, chan=184] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=184] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=223, chan=184] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=184] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=184] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=223, chan=185] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=185] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=185] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=185] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=185] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=223, chan=186] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=186] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=186] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=186] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=186] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:09:57 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=223, chan=187] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=187] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=187] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=187] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=187] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=223, chan=188] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=188] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=188] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=188] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=188] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:09:59 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=223, chan=189] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=189] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=189] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=189] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=189] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=223, chan=190] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=190] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=223, chan=190] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=190] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=190] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":264,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=223, chan=191] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=191] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=191] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=191] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=191] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=223, chan=192] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=192] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=223, chan=192] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=192] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=192] Channel closed DEBUG agg1:Logger.py:156
Passed functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py::test_storm_control_mc_lag_and_vlan_membership 205.17
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_mc_lag_and_vlan_membership">Starting testcase:test_storm_control_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-16095' coro=<test_storm_control_mc_lag_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=224, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=225] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=225] Local address: 172.17.0.3, port 51888 INFO asyncssh:logging.py:92 [conn=225] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=225] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=225] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=225, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:13:22 AM UTC INFO asyncssh:logging.py:92 [conn=225, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=225, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=225, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond1 up && ip link set dev swp1 down && ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=225, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=4] Command: ip link set dev bond1 up && ip link set dev swp1 down && ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=225, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=225, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=225, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond2 up && ip link set dev swp3 down && ip link set dev swp3 master bond2 INFO asyncssh:logging.py:92 [conn=225, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=8] Command: ip link set dev bond2 up && ip link set dev swp3 down && ip link set dev swp3 master bond2 INFO asyncssh:logging.py:92 [conn=225, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=225, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=225, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=225, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=225, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=225, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=225, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=225, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=16] Command: ip link set dev swp2 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=225, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=225, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=225, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=225, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=225, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=21] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 1 pvid untagged && bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=225, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=22] Command: bridge vlan add dev swp2 vid 1 pvid untagged && bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=225, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=23] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=225, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=225, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=25] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=26] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=27] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=28] Command: devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=28] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=225, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=29] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=30] Command: devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=31] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=32] Command: devlink -j port param show pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=32] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]}]}} INFO asyncssh:logging.py:92 [conn=225, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=33] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=34] Command: devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=35] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=36] Command: devlink -j port param show pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=36] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}]}} INFO asyncssh:logging.py:92 [conn=225, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=37] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=38] Command: devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=39] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=40] Command: devlink -j port param show pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=40] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=225, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=41] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=42] Command: devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=43] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=44] Command: devlink -j port param show pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=44] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=225, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=45] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=46] Command: devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=46] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=47] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=48] Command: devlink -j port param show pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=48] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/3":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]}]}} INFO asyncssh:logging.py:92 [conn=225, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=49] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=50] Command: devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=51] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=52] Command: devlink -j port param show pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=225, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=52] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/4":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_mc_swp4->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_mc_swp4->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_mc_swp4->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e0e5960>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 1187788 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 15334442 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=225, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=53] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=225, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=225, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=54] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=225, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=55] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=56] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=57] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=58] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=59] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=60] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=225, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=60] Channel closed DEBUG agg1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=225, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=61] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=225, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=62] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:16:42 AM UTC INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=225, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=63] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=225, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=225, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=64] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":4,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":266,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":267,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":268,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":101.22,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=225, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=65] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=225, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=225, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=66] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=67] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=225, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=225, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=68] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=225, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=69] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=225, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=70] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:16:43 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=225, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=71] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=225, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=72] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:16:47 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=225, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=73] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=225, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=225, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=74] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":268,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=225, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=75] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=225, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=225, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=76] Channel closed DEBUG agg1:Logger.py:156
Passed functional/storm_control/test_storm_control_packets.py::test_storm_control_packets 590.27
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-16183' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_packets">Starting testcase:test_storm_control_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_packets.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=225, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=226] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=226] Local address: 172.17.0.3, port 33262 INFO asyncssh:logging.py:92 [conn=226] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=226] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=226] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=226, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:16:47 AM UTC INFO asyncssh:logging.py:92 [conn=226, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=226, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=226, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=226, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=226, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=226, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=226, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=226, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=226, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=6] Channel closed DEBUG agg1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=226, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=226, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:16:48 AM UTC INFO asyncssh:logging.py:92 [conn=226, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=226, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=226, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address add 192.168.1.5/24 broadcast 192.168.1.255 dev swp1 && ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp2 INFO asyncssh:logging.py:92 [conn=226, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=12] Command: ip address add 192.168.1.5/24 broadcast 192.168.1.255 dev swp1 && ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp2 INFO asyncssh:logging.py:92 [conn=226, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=13] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=14] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=15] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=226, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=16] Command: devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=226, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=16] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":13500}]}]}} INFO asyncssh:logging.py:92 [conn=226, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=17] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=18] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=19] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=226, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=20] Command: devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=226, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=20] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":13500}]}]}} INFO asyncssh:logging.py:92 [conn=226, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=21] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=22] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=23] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=226, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=24] Command: devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=226, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=24] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":13500}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_192.168.1.6/24', 'count': 1, 'ip': '192.168.1.6', 'gw': '192.168.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_192.168.1.7/24', 'count': 1, 'ip': '192.168.1.7', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=226, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=25] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=226, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=26] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=226, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=26] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=226, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=226, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=28] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=226, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.5","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.5","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.6/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_192.168.1.7/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=226, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=29] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=226, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=30] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=226, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=30] Channel closed DEBUG agg1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 200 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=226, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=31] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=226, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=32] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=226, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=32] Channel closed DEBUG agg1:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 201 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=226, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=33] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=226, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=34] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=226, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=34] Channel closed DEBUG agg1:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 201 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=226, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=35] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=226, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=36] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=226, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=36] Channel closed DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=226, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=37] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=226, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=38] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=226, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=38] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=226, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=39] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=226, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=40] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=226, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=40] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=226, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=41] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=226, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=42] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=226, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=42] Channel closed DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=226, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=43] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=226, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=44] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=226, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=44] Channel closed DEBUG agg1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 200 expected 200 for trap_code vrrp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=226, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=45] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=46] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=46] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=47] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=226, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=48] Command: devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=226, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=48] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}]}} INFO asyncssh:logging.py:92 [conn=226, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=49] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=50] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=51] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=226, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=52] Command: devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=226, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=52] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}]}} INFO asyncssh:logging.py:92 [conn=226, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=53] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=54] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=55] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=226, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=56] Command: devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=226, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=56] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=226, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=57] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=226, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=58] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=226, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=58] Channel closed DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=226, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=59] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=226, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=60] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=226, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=60] Channel closed DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=226, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=61] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=226, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=62] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=226, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=62] Channel closed DEBUG agg1:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 201 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=226, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=63] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=226, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=64] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=226, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=64] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=226, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=65] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=226, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=66] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=226, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=66] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=226, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=67] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=226, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=68] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=226, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=68] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=226, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=69] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=226, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=70] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=226, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=70] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=226, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=71] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=226, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=72] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=226, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=72] Channel closed DEBUG agg1:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 201 expected 200 for trap_code vrrp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=226, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=73] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=226, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=74] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=226, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=74] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=226, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=75] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=76] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=76] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=77] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=78] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=78] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=79] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=80] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=226, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=80] Channel closed DEBUG agg1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_packets.py INFO asyncssh:logging.py:92 [conn=226, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=81] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=226, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=82] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=226, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=82] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=226, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=83] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=226, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=84] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=84] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:26:31 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=226, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=85] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=226, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=86] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=226, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=86] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=87] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=226, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=88] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=226, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=88] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=226, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=89] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=226, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=90] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=226, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=90] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=226, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=91] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=226, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=92] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:26:33 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Passed functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py::test_storm_control_unk_un_lag_and_vlan_membership 216.60
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_unk_un_lag_and_vlan_membership">Starting testcase:test_storm_control_unk_un_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-16370' coro=<test_storm_control_unk_un_lag_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=228, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=229] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=229] Local address: 172.17.0.3, port 32972 INFO asyncssh:logging.py:92 [conn=229] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=229] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=229] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=229, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:33:24 AM UTC INFO asyncssh:logging.py:92 [conn=229, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=229, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=229, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond1 up && ip link set dev swp1 down && ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=229, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=4] Command: ip link set dev bond1 up && ip link set dev swp1 down && ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=229, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=229, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=229, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond2 up && ip link set dev swp3 down && ip link set dev swp3 master bond2 INFO asyncssh:logging.py:92 [conn=229, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=8] Command: ip link set dev bond2 up && ip link set dev swp3 down && ip link set dev swp3 master bond2 INFO asyncssh:logging.py:92 [conn=229, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=229, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=229, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=229, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=229, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=229, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=229, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=229, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=16] Command: ip link set dev swp2 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=229, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=229, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=229, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=229, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=229, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=21] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 1 pvid untagged && bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=229, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=22] Command: bridge vlan add dev swp2 vid 1 pvid untagged && bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=229, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=23] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=229, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=229, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=25] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=26] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=27] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=28] Command: devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=28] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=29] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=30] Command: devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=31] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=32] Command: devlink -j port param show pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=32] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=33] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=34] Command: devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=35] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=36] Command: devlink -j port param show pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=36] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=37] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=38] Command: devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=39] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=40] Command: devlink -j port param show pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=40] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=41] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=42] Command: devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=43] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=44] Command: devlink -j port param show pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=44] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=45] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=46] Command: devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=46] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=47] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=48] Command: devlink -j port param show pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=48] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/3":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=49] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=50] Command: devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=51] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=52] Command: devlink -j port param show pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=52] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/4":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_unk_un_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_unk_un_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_unk_un_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e2b4310>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 13763106 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 1179426 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=229, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=53] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=229, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=229, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=54] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=55] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=56] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=57] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=58] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=59] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=60] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=60] Channel closed DEBUG agg1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_unk_un_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=229, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=61] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=229, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=62] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:36:55 AM UTC INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=229, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=63] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=229, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=229, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=64] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":271,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":272,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":273,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":90.92,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=229, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=65] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=229, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=229, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=66] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=67] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=229, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=229, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=68] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=229, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=69] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=229, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=70] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:36:55 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=229, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=71] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=229, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=72] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:37:01 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=229, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=73] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=229, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=229, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=74] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":273,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=229, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=75] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=229, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=229, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=76] Channel closed DEBUG agg1:Logger.py:156
Passed functional/storm_control/test_storm_control_unknown_unicast_traffic.py::test_storm_control_unknown_unicast_traffic 161.26
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_unknown_unicast_traffic">Starting testcase:test_storm_control_unknown_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unknown_unicast_traffic.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-16458' coro=<test_storm_control_unknown_unicast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unknown_unicast_traffic.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=229, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=230] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=230] Local address: 172.17.0.3, port 45980 INFO asyncssh:logging.py:92 [conn=230] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=230] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=230] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=230, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:37:01 AM UTC INFO asyncssh:logging.py:92 [conn=230, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=230, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=230, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=230, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=230, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=230, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=230, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=7] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=230, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=8] Command: devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=230, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=8] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=230, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=9] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 23093 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=10] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 23093 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=11] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=230, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=12] Command: devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=230, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=12] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":23093}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e1d5450>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 8546672 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 162024 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 162050 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 162048 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=230, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=13] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=230, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=14] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=230, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=14] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":23093}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=230, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=15] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=16] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=17] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=18] Command: devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=19] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=20] Command: devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=21] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=22] Command: devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=22] Channel closed DEBUG agg1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_unknown_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unknown_unicast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=230, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=230, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:39:37 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=230, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=230, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:39:42 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=230, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=230, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=230, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":274,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=230, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=230, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=230, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=30] Channel closed DEBUG agg1:Logger.py:156
Passed functional/storm_control/test_storm_control_unregistered_multicast_traffic.py::test_storm_control_unregistered_multicast_traffic 158.69
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_unregistered_multicast_traffic">Starting testcase:test_storm_control_unregistered_multicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unregistered_multicast_traffic.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-16498' coro=<test_storm_control_unregistered_multicast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unregistered_multicast_traffic.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=230, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=231] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=231] Local address: 172.17.0.3, port 40458 INFO asyncssh:logging.py:92 [conn=231] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=231] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=231] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=231, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:39:42 AM UTC INFO asyncssh:logging.py:92 [conn=231, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=231, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=231, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=231, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=231, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=231, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=231, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=7] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=8] Command: devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=8] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=231, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=9] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 118689 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=10] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 118689 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=11] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=12] Command: devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=12] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118689}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e1d5d20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 6797987 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 664442 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 664467 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 1000479 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=231, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=13] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=231, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=14] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=231, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=14] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118689}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=231, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=15] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=16] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=17] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=18] Command: devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=19] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=20] Command: devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=21] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=22] Command: devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=22] Channel closed DEBUG agg1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_unregistered_multicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unregistered_multicast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=231, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=231, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:42:15 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=231, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=231, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:42:20 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=231, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=231, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=231, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":275,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=231, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=231, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=231, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=30] Channel closed DEBUG agg1:Logger.py:156
Passed functional/storm_control/test_storm_negative_known_unicast_traffic.py::test_storm_negative_known_unicast_traffic 175.31
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_negative_known_unicast_traffic">Starting testcase:test_storm_negative_known_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_negative_known_unicast_traffic.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-16538' coro=<test_storm_negative_known_unicast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_negative_known_unicast_traffic.py:53> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=231, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=232] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=232] Local address: 172.17.0.3, port 32790 INFO asyncssh:logging.py:92 [conn=232] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=232] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=232] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=232, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:42:21 AM UTC INFO asyncssh:logging.py:92 [conn=232, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=232, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=232, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=232, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=232, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=232, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=232, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge fdb add 68:16:3d:2e:b4:c8 dev swp1 static master INFO asyncssh:logging.py:92 [conn=232, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=8] Command: bridge fdb add 68:16:3d:2e:b4:c8 dev swp1 static master INFO asyncssh:logging.py:92 [conn=232, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=9] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=232, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=10] Command: devlink -j port param show pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=232, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=10] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=232, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=11] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 50420 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=12] Command: devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 50420 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=13] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=232, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=14] Command: devlink -j port param show pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=232, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=14] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":50420}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7df2eaa0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 4300428 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 4300431 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 2254351 INFO asyncssh:logging.py:92 [conn=232, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge fdb delete 68:16:3d:2e:b4:c8 dev swp1 static master INFO asyncssh:logging.py:92 [conn=232, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=16] Command: bridge fdb delete 68:16:3d:2e:b4:c8 dev swp1 static master INFO asyncssh:logging.py:92 [conn=232, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7df2d210>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 11136641 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 20944444 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 419063 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 2673390 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=232, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=17] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=232, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=232, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=18] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":50420}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=232, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=19] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=20] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=21] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=22] Command: devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=23] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=24] Command: devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=25] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=26] Command: devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=26] Channel closed DEBUG agg1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_negative_known_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_negative_known_unicast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=232, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=232, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=28] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:45:11 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=232, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=232, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:45:16 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=232, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=232, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=232, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":276,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=232, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=232, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=232, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=34] Channel closed DEBUG agg1:Logger.py:156
Passed functional/table_size/test_table_size.py::test_ipv4_route_table_fill 72.16
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_route_table_fill">Starting testcase:test_ipv4_route_table_fill from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-16659' coro=<test_ipv4_route_table_fill() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py:70> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=234, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=235] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=235] Local address: 172.17.0.3, port 55030 INFO asyncssh:logging.py:92 [conn=235] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=235] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=235] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=235, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:47:27 AM UTC INFO asyncssh:logging.py:92 [conn=235, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=1] Channel closed DEBUG agg1:Logger.py:156 cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=235, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=2] Command: cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=235, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=2] Channel closed DEBUG agg1:Logger.py:156 arm64-accton-as5114-48x-r0 INFO asyncssh:logging.py:92 [conn=235, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=235, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=4] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=235, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=5] Channel closed DEBUG agg1:Logger.py:156 for x in `seq 40` do for y in `seq 250` do ip ro add dev swp1 1.1.$x.$y done done INFO asyncssh:logging.py:92 [conn=235, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=6] Command: for x in `seq 40` do for y in `seq 250` do ip ro add dev swp1 1.1.$x.$y done done INFO asyncssh:logging.py:92 [conn=235, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip route | grep rt_offload | wc -l INFO asyncssh:logging.py:92 [conn=235, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=8] Command: ip route | grep rt_offload | wc -l INFO asyncssh:logging.py:92 [conn=235, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=8] Channel closed DEBUG agg1:Logger.py:156 10001
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_route_table_fill from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=235, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=9] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=235, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=10] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:48:37 AM UTC INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=235, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=235, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=12] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=235, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=235, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=235, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:e2:8b:f7:07:bc","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=235, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=235, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=16] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=235, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=16] Channel closed DEBUG agg1:Logger.py:156
Passed functional/table_size/test_table_size.py::test_bridging_mac_table_size 107.19
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_mac_table_size">Starting testcase:test_bridging_mac_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-16684' coro=<test_bridging_mac_table_size() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py:111> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=235, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=236] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=236] Local address: 172.17.0.3, port 47126 INFO asyncssh:logging.py:92 [conn=236] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=236] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=236] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=236, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:48:40 AM UTC INFO asyncssh:logging.py:92 [conn=236, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=236, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=236, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=236, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=236, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=236, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=236, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning on && bridge link set dev swp2 learning on && bridge link set dev swp3 learning on && bridge link set dev swp4 learning on INFO asyncssh:logging.py:92 [conn=236, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=8] Command: bridge link set dev swp1 learning on && bridge link set dev swp2 learning on && bridge link set dev swp3 learning on && bridge link set dev swp4 learning on INFO asyncssh:logging.py:92 [conn=236, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e0b69b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI streamA SIP-DIP N/A Tx 104813 Rx 104813 Loss 0.000 INFO asyncssh:logging.py:92 [conn=236, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=236, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=236, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=10] Channel closed DEBUG agg1:Logger.py:156 4002
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_mac_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=236, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=236, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:50:26 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=236, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=236, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:50:26 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=236, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=236, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=236, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":279,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=236, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=236, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=236, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=18] Channel closed DEBUG agg1:Logger.py:156
Passed functional/table_size/test_table_size.py::test_acl_table_size 418.05
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_table_size">Starting testcase:test_acl_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-16711' coro=<test_acl_table_size() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py:200> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=236, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=237] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=237] Local address: 172.17.0.3, port 33482 INFO asyncssh:logging.py:92 [conn=237] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=237] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=237] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=237, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:50:27 AM UTC INFO asyncssh:logging.py:92 [conn=237, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=1] Channel closed DEBUG agg1:Logger.py:156 cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=237, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=2] Command: cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=237, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=2] Channel closed DEBUG agg1:Logger.py:156 arm64-accton-as5114-48x-r0 INFO asyncssh:logging.py:92 [conn=237, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=3] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 handle 10 ingress INFO asyncssh:logging.py:92 [conn=237, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=4] Command: tc qdisc add dev swp1 handle 10 ingress INFO asyncssh:logging.py:92 [conn=237, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=5] Channel closed DEBUG agg1:Logger.py:156 for x in `seq 1636` do tc filter add dev swp1 ingress flower action pass done INFO asyncssh:logging.py:92 [conn=237, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=6] Command: for x in `seq 1636` do tc filter add dev swp1 ingress flower action pass done INFO asyncssh:logging.py:92 [conn=237, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter show dev swp1 ingress | grep in_hw_count | wc -l INFO asyncssh:logging.py:92 [conn=237, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=8] Command: tc filter show dev swp1 ingress | grep in_hw_count | wc -l INFO asyncssh:logging.py:92 [conn=237, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=8] Channel closed DEBUG agg1:Logger.py:156 1536 INFO asyncssh:logging.py:92 [conn=237, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter show dev swp1 ingress | grep used_hw_stats | wc -l INFO asyncssh:logging.py:92 [conn=237, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=10] Command: tc filter show dev swp1 ingress | grep used_hw_stats | wc -l INFO asyncssh:logging.py:92 [conn=237, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=10] Channel closed DEBUG agg1:Logger.py:156 1536 INFO asyncssh:logging.py:92 [conn=237, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 handle 10 ingress INFO asyncssh:logging.py:92 [conn=237, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=12] Command: tc qdisc delete dev swp1 handle 10 ingress INFO asyncssh:logging.py:92 [conn=237, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 handle 10 ingress INFO asyncssh:logging.py:92 [conn=237, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=14] Command: tc qdisc add dev swp1 handle 10 ingress INFO asyncssh:logging.py:92 [conn=237, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc chain add dev swp1 ingress chain 0 flower INFO asyncssh:logging.py:92 [conn=237, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=16] Command: tc chain add dev swp1 ingress chain 0 flower INFO asyncssh:logging.py:92 [conn=237, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=17] Channel closed DEBUG agg1:Logger.py:156 for x in `seq 9292` do tc filter add dev swp1 ingress flower action pass done INFO asyncssh:logging.py:92 [conn=237, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=18] Command: for x in `seq 9292` do tc filter add dev swp1 ingress flower action pass done INFO asyncssh:logging.py:92 [conn=237, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc f show dev swp1 ingress | grep in_hw_count | wc -l INFO asyncssh:logging.py:92 [conn=237, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=20] Command: tc f show dev swp1 ingress | grep in_hw_count | wc -l INFO asyncssh:logging.py:92 [conn=237, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=20] Channel closed DEBUG agg1:Logger.py:156 9192 INFO asyncssh:logging.py:92 [conn=237, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc f show dev swp1 ingress | grep used_hw_stats | wc -l INFO asyncssh:logging.py:92 [conn=237, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=22] Command: tc f show dev swp1 ingress | grep used_hw_stats | wc -l INFO asyncssh:logging.py:92 [conn=237, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=22] Channel closed DEBUG agg1:Logger.py:156 9192
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py INFO asyncssh:logging.py:92 [conn=237, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=237, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:57:00 AM UTC INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=237, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=237, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=237, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=237, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=237, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=237, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=237, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=237, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=237, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=237, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=237, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=237, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=237, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=237, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=237, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=237, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=237, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=237, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=237, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=237, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=50] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=237, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=237, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=237, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=237, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=237, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=237, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=237, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=237, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=58] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=237, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=237, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=60] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=237, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=237, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=62] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=237, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=237, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=64] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=237, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=237, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=66] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=237, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=237, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=68] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=237, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=237, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=70] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=237, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=237, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=72] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=237, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=237, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=74] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=237, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=237, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=76] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=237, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=237, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=78] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=237, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=237, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=80] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=237, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=237, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=82] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=237, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=237, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=84] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=237, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=237, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=86] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=237, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=237, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=88] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=237, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=237, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=90] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=237, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=237, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=92] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=237, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=237, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=94] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=237, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=237, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=96] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=237, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=237, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=98] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=237, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=237, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=100] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=237, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=237, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=102] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=237, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=237, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=104] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=237, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=237, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=106] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=237, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=237, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=108] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=237, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=237, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=110] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=237, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=237, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=112] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=237, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=237, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=114] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=237, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=237, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=116] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=237, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=237, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=118] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=237, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=237, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=120] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=237, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=237, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=122] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=237, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=237, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=124] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=237, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=237, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=126] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=237, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=237, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=128] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=237, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=237, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=130] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=237, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=237, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=132] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=237, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=237, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=134] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=237, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=237, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=136] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=237, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=237, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=138] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=237, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=237, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=140] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=237, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=237, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=142] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=237, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=237, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=237, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=144] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=237, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=237, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/vlan/test_vlan_all_supported_modes.py::test_vlan_all_supported_modes_broadcast 230.42
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_all_supported_modes_broadcast">Starting testcase:test_vlan_all_supported_modes_broadcast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-16866' coro=<test_vlan_all_supported_modes_broadcast() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py:43> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=237, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=238] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=238] Local address: 172.17.0.3, port 35274 INFO asyncssh:logging.py:92 [conn=238] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=238] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=238] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=238, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 05:57:25 AM UTC INFO asyncssh:logging.py:92 [conn=238, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=238, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=238, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=238, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=238, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=238, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=238, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp1 vid 3 untagged && bridge vlan add dev swp1 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=238, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=8] Command: bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp1 vid 3 untagged && bridge vlan add dev swp1 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=238, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 2 INFO asyncssh:logging.py:92 [conn=238, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=10] Command: bridge vlan add dev swp2 vid 2 INFO asyncssh:logging.py:92 [conn=238, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=238, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=12] Command: bridge vlan add dev swp3 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=238, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=238, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=14] Command: bridge vlan add dev swp4 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=238, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e12a410>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 246 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 245 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 245 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 246 Rx 246 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 245 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 245 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 246 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 245 Rx 245 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 245 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 246 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 245 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 245 Rx 245 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged traffic SIP-DIP N/A Tx 246 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged traffic SIP-DIP N/A Tx 245 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged traffic SIP-DIP N/A Tx 245 Rx 245 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_all_supported_modes_broadcast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=238, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=238, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:01:14 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=238, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=238, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:01:15 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=238, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=238, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=238, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":280,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=238, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=238, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=238, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/vlan/test_vlan_all_supported_modes.py::test_vlan_all_supported_modes_multicast 235.76
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_all_supported_modes_multicast">Starting testcase:test_vlan_all_supported_modes_multicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-16898' coro=<test_vlan_all_supported_modes_multicast() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py:124> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=238, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=239] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=239] Local address: 172.17.0.3, port 47400 INFO asyncssh:logging.py:92 [conn=239] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=239] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=239] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=239, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:01:15 AM UTC INFO asyncssh:logging.py:92 [conn=239, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=239, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=239, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=239, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=239, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=239, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=239, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp1 vid 3 untagged && bridge vlan add dev swp1 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=239, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=8] Command: bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp1 vid 3 untagged && bridge vlan add dev swp1 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=239, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 2 INFO asyncssh:logging.py:92 [conn=239, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=10] Command: bridge vlan add dev swp2 vid 2 INFO asyncssh:logging.py:92 [conn=239, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=239, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=12] Command: bridge vlan add dev swp3 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=239, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=239, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=14] Command: bridge vlan add dev swp4 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=239, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e1767a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 25 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 25 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 25 Rx 25 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 25 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 25 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 25 Rx 25 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 25 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 25 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged traffic SIP-DIP N/A Tx 25 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged traffic SIP-DIP N/A Tx 25 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged traffic SIP-DIP N/A Tx 24 Rx 24 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_all_supported_modes_multicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=239, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=239, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:05:10 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=239, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=239, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:05:11 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=239, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=239, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=239, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":281,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=239, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=239, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=239, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/vlan/test_vlan_all_supported_modes.py::test_vlan_all_supported_modes_unicast 263.34
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_all_supported_modes_unicast">Starting testcase:test_vlan_all_supported_modes_unicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-16930' coro=<test_vlan_all_supported_modes_unicast() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py:207> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=239, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=240] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=240] Local address: 172.17.0.3, port 39704 INFO asyncssh:logging.py:92 [conn=240] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=240] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=240] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=240, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:05:11 AM UTC INFO asyncssh:logging.py:92 [conn=240, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=240, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=240, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=240, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=240, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=240, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=240, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp1 vid 3 untagged && bridge vlan add dev swp1 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=240, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=8] Command: bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp1 vid 3 untagged && bridge vlan add dev swp1 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=240, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 2 INFO asyncssh:logging.py:92 [conn=240, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=10] Command: bridge vlan add dev swp2 vid 2 INFO asyncssh:logging.py:92 [conn=240, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=240, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=12] Command: bridge vlan add dev swp3 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=240, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=240, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=14] Command: bridge vlan add dev swp4 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=240, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> X INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:6 -> 10.36.118.199:1:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 -> 10.36.118.199:1:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:8 -> 10.36.118.199:1:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e129ae0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 -> 1 SIP-DIP N/A Tx 199 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 -> 1 SIP-DIP N/A Tx 199 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:5 -> 1 SIP-DIP N/A Tx 198 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 -> 2 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 -> 2 SIP-DIP N/A Tx 199 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:5 -> 2 SIP-DIP N/A Tx 198 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 -> 3 SIP-DIP N/A Tx 199 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 -> 3 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:5 -> 3 SIP-DIP N/A Tx 198 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 -> 4 SIP-DIP N/A Tx 199 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 -> 4 SIP-DIP N/A Tx 199 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:5 -> 4 SIP-DIP N/A Tx 198 Rx 198 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 -> X SIP-DIP N/A Tx 199 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 -> X SIP-DIP N/A Tx 199 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:5 -> X SIP-DIP N/A Tx 198 Rx 198 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:6 -> 10.36.118.199:1:5 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:7 -> 10.36.118.199:1:5 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:8 -> 10.36.118.199:1:5 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_all_supported_modes_unicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=240, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=240, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:09:32 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=240, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=240, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:09:34 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=240, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=240, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=240, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":282,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=240, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=240, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=240, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/vlan/test_vlan_configuration_checks.py::test_vlan_can_set_max_vlans 156.70
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_can_set_max_vlans">Starting testcase:test_vlan_can_set_max_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-16962' coro=<test_vlan_can_set_max_vlans() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py:26> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO asyncssh:logging.py:92 [conn=240, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=241] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=241] Local address: 172.17.0.3, port 39190 INFO asyncssh:logging.py:92 [conn=241] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=241] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=241] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=241, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:09:34 AM UTC INFO asyncssh:logging.py:92 [conn=241, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=241, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=241, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=241, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=241, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp6 up master br0 INFO asyncssh:logging.py:92 [conn=241, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=6] Command: ip link set dev swp6 up master br0 INFO asyncssh:logging.py:92 [conn=241, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=7] Channel closed DEBUG agg1:Logger.py:156 time for i in {1..4094}; do bridge vlan add vid $i dev swp6; done INFO asyncssh:logging.py:92 [conn=241, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=8] Command: time for i in {1..4094}; do bridge vlan add vid $i dev swp6; done INFO asyncssh:logging.py:92 [conn=241, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=8] Channel closed DEBUG agg1:Logger.py:156 real 1m44.924s user 0m3.211s sys 1m41.249s INFO asyncssh:logging.py:92 [conn=241, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp6 INFO asyncssh:logging.py:92 [conn=241, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=10] Command: bridge -j vlan show dev swp6 INFO asyncssh:logging.py:92 [conn=241, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"ifname":"swp6","vlans":[{"vlan":1},{"vlan":2},{"vlan":3},{"vlan":4},{"vlan":5},{"vlan":6},{"vlan":7},{"vlan":8},{"vlan":9},{"vlan":10},{"vlan":11},{"vlan":12},{"vlan":13},{"vlan":14},{"vlan":15},{"vlan":16},{"vlan":17},{"vlan":18},{"vlan":19},{"vlan":20},{"vlan":21},{"vlan":22},{"vlan":23},{"vlan":24},{"vlan":25},{"vlan":26},{"vlan":27},{"vlan":28},{"vlan":29},{"vlan":30},{"vlan":31},{"vlan":32},{"vlan":33},{"vlan":34},{"vlan":35},{"vlan":36},{"vlan":37},{"vlan":38},{"vlan":39},{"vlan":40},{"vlan":41},{"vlan":42},{"vlan":43},{"vlan":44},{"vlan":45},{"vlan":46},{"vlan":47},{"vlan":48},{"vlan":49},{"vlan":50},{"vlan":51},{"vlan":52},{"vlan":53},{"vlan":54},{"vlan":55},{"vlan":56},{"vlan":57},{"vlan":58},{"vlan":59},{"vlan":60},{"vlan":61},{"vlan":62},{"vlan":63},{"vlan":64},{"vlan":65},{"vlan":66},{"vlan":67},{"vlan":68},{"vlan":69},{"vlan":70},{"vlan":71},{"vlan":72},{"vlan":73},{"vlan":74},{"vlan":75},{"vlan":76},{"vlan":77},{"vlan":78},{"vlan":79},{"vlan":80},{"vlan":81},{"vlan":82},{"vlan":83},{"vlan":84},{"vlan":85},{"vlan":86},{"vlan":87},{"vlan":88},{"vlan":89},{"vlan":90},{"vlan":91},{"vlan":92},{"vlan":93},{"vlan":94},{"vlan":95},{"vlan":96},{"vlan":97},{"vlan":98},{"vlan":99},{"vlan":100},{"vlan":101},{"vlan":102},{"vlan":103},{"vlan":104},{"vlan":105},{"vlan":106},{"vlan":107},{"vlan":108},{"vlan":109},{"vlan":110},{"vlan":111},{"vlan":112},{"vlan":113},{"vlan":114},{"vlan":115},{"vlan":116},{"vlan":117},{"vlan":118},{"vlan":119},{"vlan":120},{"vlan":121},{"vlan":122},{"vlan":123},{"vlan":124},{"vlan":125},{"vlan":126},{"vlan":127},{"vlan":128},{"vlan":129},{"vlan":130},{"vlan":131},{"vlan":132},{"vlan":133},{"vlan":134},{"vlan":135},{"vlan":136},{"vlan":137},{"vlan":138},{"vlan":139},{"vlan":140},{"vlan":141},{"vlan":142},{"vlan":143},{"vlan":144},{"vlan":145},{"vlan":146},{"vlan":147},{"vlan":148},{"vlan":149},{"vlan":150},{"vlan":151},{"vlan":152},{"vlan":153},{"vlan":154},{"vlan":155},{"vlan":156},{"vlan":157},{"vlan":158},{"vlan":159},{"vlan":160},{"vlan":161},{"vlan":162},{"vlan":163},{"vlan":164},{"vlan":165},{"vlan":166},{"vlan":167},{"vlan":168},{"vlan":169},{"vlan":170},{"vlan":171},{"vlan":172},{"vlan":173},{"vlan":174},{"vlan":175},{"vlan":176},{"vlan":177},{"vlan":178},{"vlan":179},{"vlan":180},{"vlan":181},{"vlan":182},{"vlan":183},{"vlan":184},{"vlan":185},{"vlan":186},{"vlan":187},{"vlan":188},{"vlan":189},{"vlan":190},{"vlan":191},{"vlan":192},{"vlan":193},{"vlan":194},{"vlan":195},{"vlan":196},{"vlan":197},{"vlan":198},{"vlan":199},{"vlan":200},{"vlan":201},{"vlan":202},{"vlan":203},{"vlan":204},{"vlan":205},{"vlan":206},{"vlan":207},{"vlan":208},{"vlan":209},{"vlan":210},{"vlan":211},{"vlan":212},{"vlan":213},{"vlan":214},{"vlan":215},{"vlan":216},{"vlan":217},{"vlan":218},{"vlan":219},{"vlan":220},{"vlan":221},{"vlan":222},{"vlan":223},{"vlan":224},{"vlan":225},{"vlan":226},{"vlan":227},{"vlan":228},{"vlan":229},{"vlan":230},{"vlan":231},{"vlan":232},{"vlan":233},{"vlan":234},{"vlan":235},{"vlan":236},{"vlan":237},{"vlan":238},{"vlan":239},{"vlan":240},{"vlan":241},{"vlan":242},{"vlan":243},{"vlan":244},{"vlan":245},{"vlan":246},{"vlan":247},{"vlan":248},{"vlan":249},{"vlan":250},{"vlan":251},{"vlan":252},{"vlan":253},{"vlan":254},{"vlan":255},{"vlan":256},{"vlan":257},{"vlan":258},{"vlan":259},{"vlan":260},{"vlan":261},{"vlan":262},{"vlan":263},{"vlan":264},{"vlan":265},{"vlan":266},{"vlan":267},{"vlan":268},{"vlan":269},{"vlan":270},{"vlan":271},{"vlan":272},{"vlan":273},{"vlan":274},{"vlan":275},{"vlan":276},{"vlan":277},{"vlan":278},{"vlan":279},{"vlan":280},{"vlan":281},{"vlan":282},{"vlan":283},{"vlan":284},{"vlan":285},{"vlan":286},{"vlan":287},{"vlan":288},{"vlan":289},{"vlan":290},{"vlan":291},{"vlan":292},{"vlan":293},{"vlan":294},{"vlan":295},{"vlan":296},{"vlan":297},{"vlan":298},{"vlan":299},{"vlan":300},{"vlan":301},{"vlan":302},{"vlan":303},{"vlan":304},{"vlan":305},{"vlan":306},{"vlan":307},{"vlan":308},{"vlan":309},{"vlan":310},{"vlan":311},{"vlan":312},{"vlan":313},{"vlan":314},{"vlan":315},{"vlan":316},{"vlan":317},{"vlan":318},{"vlan":319},{"vlan":320},{"vlan":321},{"vlan":322},{"vlan":323},{"vlan":324},{"vlan":325},{"vlan":326},{"vlan":327},{"vlan":328},{"vlan":329},{"vlan":330},{"vlan":331},{"vlan":332},{"vlan":333},{"vlan":334},{"vlan":335},{"vlan":336},{"vlan":337},{"vlan":338},{"vlan":339},{"vlan":340},{"vlan":341},{"vlan":342},{"vlan":343},{"vlan":344},{"vlan":345},{"vlan":346},{"vlan":347},{"vlan":348},{"vlan":349},{"vlan":350},{"vlan":351},{"vlan":352},{"vlan":353},{"vlan":354},{"vlan":355},{"vlan":356},{"vlan":357},{"vlan":358},{"vlan":359},{"vlan":360},{"vlan":361},{"vlan":362},{"vlan":363},{"vlan":364},{"vlan":365},{"vlan":366},{"vlan":367},{"vlan":368},{"vlan":369},{"vlan":370},{"vlan":371},{"vlan":372},{"vlan":373},{"vlan":374},{"vlan":375},{"vlan":376},{"vlan":377},{"vlan":378},{"vlan":379},{"vlan":380},{"vlan":381},{"vlan":382},{"vlan":383},{"vlan":384},{"vlan":385},{"vlan":386},{"vlan":387},{"vlan":388},{"vlan":389},{"vlan":390},{"vlan":391},{"vlan":392},{"vlan":393},{"vlan":394},{"vlan":395},{"vlan":396},{"vlan":397},{"vlan":398},{"vlan":399},{"vlan":400},{"vlan":401},{"vlan":402},{"vlan":403},{"vlan":404},{"vlan":405},{"vlan":406},{"vlan":407},{"vlan":408},{"vlan":409},{"vlan":410},{"vlan":411},{"vlan":412},{"vlan":413},{"vlan":414},{"vlan":415},{"vlan":416},{"vlan":417},{"vlan":418},{"vlan":419},{"vlan":420},{"vlan":421},{"vlan":422},{"vlan":423},{"vlan":424},{"vlan":425},{"vlan":426},{"vlan":427},{"vlan":428},{"vlan":429},{"vlan":430},{"vlan":431},{"vlan":432},{"vlan":433},{"vlan":434},{"vlan":435},{"vlan":436},{"vlan":437},{"vlan":438},{"vlan":439},{"vlan":440},{"vlan":441},{"vlan":442},{"vlan":443},{"vlan":444},{"vlan":445},{"vlan":446},{"vlan":447},{"vlan":448},{"vlan":449},{"vlan":450},{"vlan":451},{"vlan":452},{"vlan":453},{"vlan":454},{"vlan":455},{"vlan":456},{"vlan":457},{"vlan":458},{"vlan":459},{"vlan":460},{"vlan":461},{"vlan":462},{"vlan":463},{"vlan":464},{"vlan":465},{"vlan":466},{"vlan":467},{"vlan":468},{"vlan":469},{"vlan":470},{"vlan":471},{"vlan":472},{"vlan":473},{"vlan":474},{"vlan":475},{"vlan":476},{"vlan":477},{"vlan":478},{"vlan":479},{"vlan":480},{"vlan":481},{"vlan":482},{"vlan":483},{"vlan":484},{"vlan":485},{"vlan":486},{"vlan":487},{"vlan":488},{"vlan":489},{"vlan":490},{"vlan":491},{"vlan":492},{"vlan":493},{"vlan":494},{"vlan":495},{"vlan":496},{"vlan":497},{"vlan":498},{"vlan":499},{"vlan":500},{"vlan":501},{"vlan":502},{"vlan":503},{"vlan":504},{"vlan":505},{"vlan":506},{"vlan":507},{"vlan":508},{"vlan":509},{"vlan":510},{"vlan":511},{"vlan":512},{"vlan":513},{"vlan":514},{"vlan":515},{"vlan":516},{"vlan":517},{"vlan":518},{"vlan":519},{"vlan":520},{"vlan":521},{"vlan":522},{"vlan":523},{"vlan":524},{"vlan":525},{"vlan":526},{"vlan":527},{"vlan":528},{"vlan":529},{"vlan":530},{"vlan":531},{"vlan":532},{"vlan":533},{"vlan":534},{"vlan":535},{"vlan":536},{"vlan":537},{"vlan":538},{"vlan":539},{"vlan":540},{"vlan":541},{"vlan":542},{"vlan":543},{"vlan":544},{"vlan":545},{"vlan":546},{"vlan":547},{"vlan":548},{"vlan":549},{"vlan":550},{"vlan":551},{"vlan":552},{"vlan":553},{"vlan":554},{"vlan":555},{"vlan":556},{"vlan":557},{"vlan":558},{"vlan":559},{"vlan":560},{"vlan":561},{"vlan":562},{"vlan":563},{"vlan":564},{"vlan":565},{"vlan":566},{"vlan":567},{"vlan":568},{"vlan":569},{"vlan":570},{"vlan":571},{"vlan":572},{"vlan":573},{"vlan":574},{"vlan":575},{"vlan":576},{"vlan":577},{"vlan":578},{"vlan":579},{"vlan":580},{"vlan":581},{"vlan":582},{"vlan":583},{"vlan":584},{"vlan":585},{"vlan":586},{"vlan":587},{"vlan":588},{"vlan":589},{"vlan":590},{"vlan":591},{"vlan":592},{"vlan":593},{"vlan":594},{"vlan":595},{"vlan":596},{"vlan":597},{"vlan":598},{"vlan":599},{"vlan":600},{"vlan":601},{"vlan":602},{"vlan":603},{"vlan":604},{"vlan":605},{"vlan":606},{"vlan":607},{"vlan":608},{"vlan":609},{"vlan":610},{"vlan":611},{"vlan":612},{"vlan":613},{"vlan":614},{"vlan":615},{"vlan":616},{"vlan":617},{"vlan":618},{"vlan":619},{"vlan":620},{"vlan":621},{"vlan":622},{"vlan":623},{"vlan":624},{"vlan":625},{"vlan":626},{"vlan":627},{"vlan":628},{"vlan":629},{"vlan":630},{"vlan":631},{"vlan":632},{"vlan":633},{"vlan":634},{"vlan":635},{"vlan":636},{"vlan":637},{"vlan":638},{"vlan":639},{"vlan":640},{"vlan":641},{"vlan":642},{"vlan":643},{"vlan":644},{"vlan":645},{"vlan":646},{"vlan":647},{"vlan":648},{"vlan":649},{"vlan":650},{"vlan":651},{"vlan":652},{"vlan":653},{"vlan":654},{"vlan":655},{"vlan":656},{"vlan":657},{"vlan":658},{"vlan":659},{"vlan":660},{"vlan":661},{"vlan":662},{"vlan":663},{"vlan":664},{"vlan":665},{"vlan":666},{"vlan":667},{"vlan":668},{"vlan":669},{"vlan":670},{"vlan":671},{"vlan":672},{"vlan":673},{"vlan":674},{"vlan":675},{"vlan":676},{"vlan":677},{"vlan":678},{"vlan":679},{"vlan":680},{"vlan":681},{"vlan":682},{"vlan":683},{"vlan":684},{"vlan":685},{"vlan":686},{"vlan":687},{"vlan":688},{"vlan":689},{"vlan":690},{"vlan":691},{"vlan":692},{"vlan":693},{"vlan":694},{"vlan":695},{"vlan":696},{"vlan":697},{"vlan":698},{"vlan":699},{"vlan":700},{"vlan":701},{"vlan":702},{"vlan":703},{"vlan":704},{"vlan":705},{"vlan":706},{"vlan":707},{"vlan":708},{"vlan":709},{"vlan":710},{"vlan":711},{"vlan":712},{"vlan":713},{"vlan":714},{"vlan":715},{"vlan":716},{"vlan":717},{"vlan":718},{"vlan":719},{"vlan":720},{"vlan":721},{"vlan":722},{"vlan":723},{"vlan":724},{"vlan":725},{"vlan":726},{"vlan":727},{"vlan":728},{"vlan":729},{"vlan":730},{"vlan":731},{"vlan":732},{"vlan":733},{"vlan":734},{"vlan":735},{"vlan":736},{"vlan":737},{"vlan":738},{"vlan":739},{"vlan":740},{"vlan":741},{"vlan":742},{"vlan":743},{"vlan":744},{"vlan":745},{"vlan":746},{"vlan":747},{"vlan":748},{"vlan":749},{"vlan":750},{"vlan":751},{"vlan":752},{"vlan":753},{"vlan":754},{"vlan":755},{"vlan":756},{"vlan":757},{"vlan":758},{"vlan":759},{"vlan":760},{"vlan":761},{"vlan":762},{"vlan":763},{"vlan":764},{"vlan":765},{"vlan":766},{"vlan":767},{"vlan":768},{"vlan":769},{"vlan":770},{"vlan":771},{"vlan":772},{"vlan":773},{"vlan":774},{"vlan":775},{"vlan":776},{"vlan":777},{"vlan":778},{"vlan":779},{"vlan":780},{"vlan":781},{"vlan":782},{"vlan":783},{"vlan":784},{"vlan":785},{"vlan":786},{"vlan":787},{"vlan":788},{"vlan":789},{"vlan":790},{"vlan":791},{"vlan":792},{"vlan":793},{"vlan":794},{"vlan":795},{"vlan":796},{"vlan":797},{"vlan":798},{"vlan":799},{"vlan":800},{"vlan":801},{"vlan":802},{"vlan":803},{"vlan":804},{"vlan":805},{"vlan":806},{"vlan":807},{"vlan":808},{"vlan":809},{"vlan":810},{"vlan":811},{"vlan":812},{"vlan":813},{"vlan":814},{"vlan":815},{"vlan":816},{"vlan":817},{"vlan":818},{"vlan":819},{"vlan":820},{"vlan":821},{"vlan":822},{"vlan":823},{"vlan":824},{"vlan":825},{"vlan":826},{"vlan":827},{"vlan":828},{"vlan":829},{"vlan":830},{"vlan":831},{"vlan":832},{"vlan":833},{"vlan":834},{"vlan":835},{"vlan":836},{"vlan":837},{"vlan":838},{"vlan":839},{"vlan":840},{"vlan":841},{"vlan":842},{"vlan":843},{"vlan":844},{"vlan":845},{"vlan":846},{"vlan":847},{"vlan":848},{"vlan":849},{"vlan":850},{"vlan":851},{"vlan":852},{"vlan":853},{"vlan":854},{"vlan":855},{"vlan":856},{"vlan":857},{"vlan":858},{"vlan":859},{"vlan":860},{"vlan":861},{"vlan":862},{"vlan":863},{"vlan":864},{"vlan":865},{"vlan":866},{"vlan":867},{"vlan":868},{"vlan":869},{"vlan":870},{"vlan":871},{"vlan":872},{"vlan":873},{"vlan":874},{"vlan":875},{"vlan":876},{"vlan":877},{"vlan":878},{"vlan":879},{"vlan":880},{"vlan":881},{"vlan":882},{"vlan":883},{"vlan":884},{"vlan":885},{"vlan":886},{"vlan":887},{"vlan":888},{"vlan":889},{"vlan":890},{"vlan":891},{"vlan":892},{"vlan":893},{"vlan":894},{"vlan":895},{"vlan":896},{"vlan":897},{"vlan":898},{"vlan":899},{"vlan":900},{"vlan":901},{"vlan":902},{"vlan":903},{"vlan":904},{"vlan":905},{"vlan":906},{"vlan":907},{"vlan":908},{"vlan":909},{"vlan":910},{"vlan":911},{"vlan":912},{"vlan":913},{"vlan":914},{"vlan":915},{"vlan":916},{"vlan":917},{"vlan":918},{"vlan":919},{"vlan":920},{"vlan":921},{"vlan":922},{"vlan":923},{"vlan":924},{"vlan":925},{"vlan":926},{"vlan":927},{"vlan":928},{"vlan":929},{"vlan":930},{"vlan":931},{"vlan":932},{"vlan":933},{"vlan":934},{"vlan":935},{"vlan":936},{"vlan":937},{"vlan":938},{"vlan":939},{"vlan":940},{"vlan":941},{"vlan":942},{"vlan":943},{"vlan":944},{"vlan":945},{"vlan":946},{"vlan":947},{"vlan":948},{"vlan":949},{"vlan":950},{"vlan":951},{"vlan":952},{"vlan":953},{"vlan":954},{"vlan":955},{"vlan":956},{"vlan":957},{"vlan":958},{"vlan":959},{"vlan":960},{"vlan":961},{"vlan":962},{"vlan":963},{"vlan":964},{"vlan":965},{"vlan":966},{"vlan":967},{"vlan":968},{"vlan":969},{"vlan":970},{"vlan":971},{"vlan":972},{"vlan":973},{"vlan":974},{"vlan":975},{"vlan":976},{"vlan":977},{"vlan":978},{"vlan":979},{"vlan":980},{"vlan":981},{"vlan":982},{"vlan":983},{"vlan":984},{"vlan":985},{"vlan":986},{"vlan":987},{"vlan":988},{"vlan":989},{"vlan":990},{"vlan":991},{"vlan":992},{"vlan":993},{"vlan":994},{"vlan":995},{"vlan":996},{"vlan":997},{"vlan":998},{"vlan":999},{"vlan":1000},{"vlan":1001},{"vlan":1002},{"vlan":1003},{"vlan":1004},{"vlan":1005},{"vlan":1006},{"vlan":1007},{"vlan":1008},{"vlan":1009},{"vlan":1010},{"vlan":1011},{"vlan":1012},{"vlan":1013},{"vlan":1014},{"vlan":1015},{"vlan":1016},{"vlan":1017},{"vlan":1018},{"vlan":1019},{"vlan":1020},{"vlan":1021},{"vlan":1022},{"vlan":1023},{"vlan":1024},{"vlan":1025},{"vlan":1026},{"vlan":1027},{"vlan":1028},{"vlan":1029},{"vlan":1030},{"vlan":1031},{"vlan":1032},{"vlan":1033},{"vlan":1034},{"vlan":1035},{"vlan":1036},{"vlan":1037},{"vlan":1038},{"vlan":1039},{"vlan":1040},{"vlan":1041},{"vlan":1042},{"vlan":1043},{"vlan":1044},{"vlan":1045},{"vlan":1046},{"vlan":1047},{"vlan":1048},{"vlan":1049},{"vlan":1050},{"vlan":1051},{"vlan":1052},{"vlan":1053},{"vlan":1054},{"vlan":1055},{"vlan":1056},{"vlan":1057},{"vlan":1058},{"vlan":1059},{"vlan":1060},{"vlan":1061},{"vlan":1062},{"vlan":1063},{"vlan":1064},{"vlan":1065},{"vlan":1066},{"vlan":1067},{"vlan":1068},{"vlan":1069},{"vlan":1070},{"vlan":1071},{"vlan":1072},{"vlan":1073},{"vlan":1074},{"vlan":1075},{"vlan":1076},{"vlan":1077},{"vlan":1078},{"vlan":1079},{"vlan":1080},{"vlan":1081},{"vlan":1082},{"vlan":1083},{"vlan":1084},{"vlan":1085},{"vlan":1086},{"vlan":1087},{"vlan":1088},{"vlan":1089},{"vlan":1090},{"vlan":1091},{"vlan":1092},{"vlan":1093},{"vlan":1094},{"vlan":1095},{"vlan":1096},{"vlan":1097},{"vlan":1098},{"vlan":1099},{"vlan":1100},{"vlan":1101},{"vlan":1102},{"vlan":1103},{"vlan":1104},{"vlan":1105},{"vlan":1106},{"vlan":1107},{"vlan":1108},{"vlan":1109},{"vlan":1110},{"vlan":1111},{"vlan":1112},{"vlan":1113},{"vlan":1114},{"vlan":1115},{"vlan":1116},{"vlan":1117},{"vlan":1118},{"vlan":1119},{"vlan":1120},{"vlan":1121},{"vlan":1122},{"vlan":1123},{"vlan":1124},{"vlan":1125},{"vlan":1126},{"vlan":1127},{"vlan":1128},{"vlan":1129},{"vlan":1130},{"vlan":1131},{"vlan":1132},{"vlan":1133},{"vlan":1134},{"vlan":1135},{"vlan":1136},{"vlan":1137},{"vlan":1138},{"vlan":1139},{"vlan":1140},{"vlan":1141},{"vlan":1142},{"vlan":1143},{"vlan":1144},{"vlan":1145},{"vlan":1146},{"vlan":1147},{"vlan":1148},{"vlan":1149},{"vlan":1150},{"vlan":1151},{"vlan":1152},{"vlan":1153},{"vlan":1154},{"vlan":1155},{"vlan":1156},{"vlan":1157},{"vlan":1158},{"vlan":1159},{"vlan":1160},{"vlan":1161},{"vlan":1162},{"vlan":1163},{"vlan":1164},{"vlan":1165},{"vlan":1166},{"vlan":1167},{"vlan":1168},{"vlan":1169},{"vlan":1170},{"vlan":1171},{"vlan":1172},{"vlan":1173},{"vlan":1174},{"vlan":1175},{"vlan":1176},{"vlan":1177},{"vlan":1178},{"vlan":1179},{"vlan":1180},{"vlan":1181},{"vlan":1182},{"vlan":1183},{"vlan":1184},{"vlan":1185},{"vlan":1186},{"vlan":1187},{"vlan":1188},{"vlan":1189},{"vlan":1190},{"vlan":1191},{"vlan":1192},{"vlan":1193},{"vlan":1194},{"vlan":1195},{"vlan":1196},{"vlan":1197},{"vlan":1198},{"vlan":1199},{"vlan":1200},{"vlan":1201},{"vlan":1202},{"vlan":1203},{"vlan":1204},{"vlan":1205},{"vlan":1206},{"vlan":1207},{"vlan":1208},{"vlan":1209},{"vlan":1210},{"vlan":1211},{"vlan":1212},{"vlan":1213},{"vlan":1214},{"vlan":1215},{"vlan":1216},{"vlan":1217},{"vlan":1218},{"vlan":1219},{"vlan":1220},{"vlan":1221},{"vlan":1222},{"vlan":1223},{"vlan":1224},{"vlan":1225},{"vlan":1226},{"vlan":1227},{"vlan":1228},{"vlan":1229},{"vlan":1230},{"vlan":1231},{"vlan":1232},{"vlan":1233},{"vlan":1234},{"vlan":1235},{"vlan":1236},{"vlan":1237},{"vlan":1238},{"vlan":1239},{"vlan":1240},{"vlan":1241},{"vlan":1242},{"vlan":1243},{"vlan":1244},{"vlan":1245},{"vlan":1246},{"vlan":1247},{"vlan":1248},{"vlan":1249},{"vlan":1250},{"vlan":1251},{"vlan":1252},{"vlan":1253},{"vlan":1254},{"vlan":1255},{"vlan":1256},{"vlan":1257},{"vlan":1258},{"vlan":1259},{"vlan":1260},{"vlan":1261},{"vlan":1262},{"vlan":1263},{"vlan":1264},{"vlan":1265},{"vlan":1266},{"vlan":1267},{"vlan":1268},{"vlan":1269},{"vlan":1270},{"vlan":1271},{"vlan":1272},{"vlan":1273},{"vlan":1274},{"vlan":1275},{"vlan":1276},{"vlan":1277},{"vlan":1278},{"vlan":1279},{"vlan":1280},{"vlan":1281},{"vlan":1282},{"vlan":1283},{"vlan":1284},{"vlan":1285},{"vlan":1286},{"vlan":1287},{"vlan":1288},{"vlan":1289},{"vlan":1290},{"vlan":1291},{"vlan":1292},{"vlan":1293},{"vlan":1294},{"vlan":1295},{"vlan":1296},{"vlan":1297},{"vlan":1298},{"vlan":1299},{"vlan":1300},{"vlan":1301},{"vlan":1302},{"vlan":1303},{"vlan":1304},{"vlan":1305},{"vlan":1306},{"vlan":1307},{"vlan":1308},{"vlan":1309},{"vlan":1310},{"vlan":1311},{"vlan":1312},{"vlan":1313},{"vlan":1314},{"vlan":1315},{"vlan":1316},{"vlan":1317},{"vlan":1318},{"vlan":1319},{"vlan":1320},{"vlan":1321},{"vlan":1322},{"vlan":1323},{"vlan":1324},{"vlan":1325},{"vlan":1326},{"vlan":1327},{"vlan":1328},{"vlan":1329},{"vlan":1330},{"vlan":1331},{"vlan":1332},{"vlan":1333},{"vlan":1334},{"vlan":1335},{"vlan":1336},{"vlan":1337},{"vlan":1338},{"vlan":1339},{"vlan":1340},{"vlan":1341},{"vlan":1342},{"vlan":1343},{"vlan":1344},{"vlan":1345},{"vlan":1346},{"vlan":1347},{"vlan":1348},{"vlan":1349},{"vlan":1350},{"vlan":1351},{"vlan":1352},{"vlan":1353},{"vlan":1354},{"vlan":1355},{"vlan":1356},{"vlan":1357},{"vlan":1358},{"vlan":1359},{"vlan":1360},{"vlan":1361},{"vlan":1362},{"vlan":1363},{"vlan":1364},{"vlan":1365},{"vlan":1366},{"vlan":1367},{"vlan":1368},{"vlan":1369},{"vlan":1370},{"vlan":1371},{"vlan":1372},{"vlan":1373},{"vlan":1374},{"vlan":1375},{"vlan":1376},{"vlan":1377},{"vlan":1378},{"vlan":1379},{"vlan":1380},{"vlan":1381},{"vlan":1382},{"vlan":1383},{"vlan":1384},{"vlan":1385},{"vlan":1386},{"vlan":1387},{"vlan":1388},{"vlan":1389},{"vlan":1390},{"vlan":1391},{"vlan":1392},{"vlan":1393},{"vlan":1394},{"vlan":1395},{"vlan":1396},{"vlan":1397},{"vlan":1398},{"vlan":1399},{"vlan":1400},{"vlan":1401},{"vlan":1402},{"vlan":1403},{"vlan":1404},{"vlan":1405},{"vlan":1406},{"vlan":1407},{"vlan":1408},{"vlan":1409},{"vlan":1410},{"vlan":1411},{"vlan":1412},{"vlan":1413},{"vlan":1414},{"vlan":1415},{"vlan":1416},{"vlan":1417},{"vlan":1418},{"vlan":1419},{"vlan":1420},{"vlan":1421},{"vlan":1422},{"vlan":1423},{"vlan":1424},{"vlan":1425},{"vlan":1426},{"vlan":1427},{"vlan":1428},{"vlan":1429},{"vlan":1430},{"vlan":1431},{"vlan":1432},{"vlan":1433},{"vlan":1434},{"vlan":1435},{"vlan":1436},{"vlan":1437},{"vlan":1438},{"vlan":1439},{"vlan":1440},{"vlan":1441},{"vlan":1442},{"vlan":1443},{"vlan":1444},{"vlan":1445},{"vlan":1446},{"vlan":1447},{"vlan":1448},{"vlan":1449},{"vlan":1450},{"vlan":1451},{"vlan":1452},{"vlan":1453},{"vlan":1454},{"vlan":1455},{"vlan":1456},{"vlan":1457},{"vlan":1458},{"vlan":1459},{"vlan":1460},{"vlan":1461},{"vlan":1462},{"vlan":1463},{"vlan":1464},{"vlan":1465},{"vlan":1466},{"vlan":1467},{"vlan":1468},{"vlan":1469},{"vlan":1470},{"vlan":1471},{"vlan":1472},{"vlan":1473},{"vlan":1474},{"vlan":1475},{"vlan":1476},{"vlan":1477},{"vlan":1478},{"vlan":1479},{"vlan":1480},{"vlan":1481},{"vlan":1482},{"vlan":1483},{"vlan":1484},{"vlan":1485},{"vlan":1486},{"vlan":1487},{"vlan":1488},{"vlan":1489},{"vlan":1490},{"vlan":1491},{"vlan":1492},{"vlan":1493},{"vlan":1494},{"vlan":1495},{"vlan":1496},{"vlan":1497},{"vlan":1498},{"vlan":1499},{"vlan":1500},{"vlan":1501},{"vlan":1502},{"vlan":1503},{"vlan":1504},{"vlan":1505},{"vlan":1506},{"vlan":1507},{"vlan":1508},{"vlan":1509},{"vlan":1510},{"vlan":1511},{"vlan":1512},{"vlan":1513},{"vlan":1514},{"vlan":1515},{"vlan":1516},{"vlan":1517},{"vlan":1518},{"vlan":1519},{"vlan":1520},{"vlan":1521},{"vlan":1522},{"vlan":1523},{"vlan":1524},{"vlan":1525},{"vlan":1526},{"vlan":1527},{"vlan":1528},{"vlan":1529},{"vlan":1530},{"vlan":1531},{"vlan":1532},{"vlan":1533},{"vlan":1534},{"vlan":1535},{"vlan":1536},{"vlan":1537},{"vlan":1538},{"vlan":1539},{"vlan":1540},{"vlan":1541},{"vlan":1542},{"vlan":1543},{"vlan":1544},{"vlan":1545},{"vlan":1546},{"vlan":1547},{"vlan":1548},{"vlan":1549},{"vlan":1550},{"vlan":1551},{"vlan":1552},{"vlan":1553},{"vlan":1554},{"vlan":1555},{"vlan":1556},{"vlan":1557},{"vlan":1558},{"vlan":1559},{"vlan":1560},{"vlan":1561},{"vlan":1562},{"vlan":1563},{"vlan":1564},{"vlan":1565},{"vlan":1566},{"vlan":1567},{"vlan":1568},{"vlan":1569},{"vlan":1570},{"vlan":1571},{"vlan":1572},{"vlan":1573},{"vlan":1574},{"vlan":1575},{"vlan":1576},{"vlan":1577},{"vlan":1578},{"vlan":1579},{"vlan":1580},{"vlan":1581},{"vlan":1582},{"vlan":1583},{"vlan":1584},{"vlan":1585},{"vlan":1586},{"vlan":1587},{"vlan":1588},{"vlan":1589},{"vlan":1590},{"vlan":1591},{"vlan":1592},{"vlan":1593},{"vlan":1594},{"vlan":1595},{"vlan":1596},{"vlan":1597},{"vlan":1598},{"vlan":1599},{"vlan":1600},{"vlan":1601},{"vlan":1602},{"vlan":1603},{"vlan":1604},{"vlan":1605},{"vlan":1606},{"vlan":1607},{"vlan":1608},{"vlan":1609},{"vlan":1610},{"vlan":1611},{"vlan":1612},{"vlan":1613},{"vlan":1614},{"vlan":1615},{"vlan":1616},{"vlan":1617},{"vlan":1618},{"vlan":1619},{"vlan":1620},{"vlan":1621},{"vlan":1622},{"vlan":1623},{"vlan":1624},{"vlan":1625},{"vlan":1626},{"vlan":1627},{"vlan":1628},{"vlan":1629},{"vlan":1630},{"vlan":1631},{"vlan":1632},{"vlan":1633},{"vlan":1634},{"vlan":1635},{"vlan":1636},{"vlan":1637},{"vlan":1638},{"vlan":1639},{"vlan":1640},{"vlan":1641},{"vlan":1642},{"vlan":1643},{"vlan":1644},{"vlan":1645},{"vlan":1646},{"vlan":1647},{"vlan":1648},{"vlan":1649},{"vlan":1650},{"vlan":1651},{"vlan":1652},{"vlan":1653},{"vlan":1654},{"vlan":1655},{"vlan":1656},{"vlan":1657},{"vlan":1658},{"vlan":1659},{"vlan":1660},{"vlan":1661},{"vlan":1662},{"vlan":1663},{"vlan":1664},{"vlan":1665},{"vlan":1666},{"vlan":1667},{"vlan":1668},{"vlan":1669},{"vlan":1670},{"vlan":1671},{"vlan":1672},{"vlan":1673},{"vlan":1674},{"vlan":1675},{"vlan":1676},{"vlan":1677},{"vlan":1678},{"vlan":1679},{"vlan":1680},{"vlan":1681},{"vlan":1682},{"vlan":1683},{"vlan":1684},{"vlan":1685},{"vlan":1686},{"vlan":1687},{"vlan":1688},{"vlan":1689},{"vlan":1690},{"vlan":1691},{"vlan":1692},{"vlan":1693},{"vlan":1694},{"vlan":1695},{"vlan":1696},{"vlan":1697},{"vlan":1698},{"vlan":1699},{"vlan":1700},{"vlan":1701},{"vlan":1702},{"vlan":1703},{"vlan":1704},{"vlan":1705},{"vlan":1706},{"vlan":1707},{"vlan":1708},{"vlan":1709},{"vlan":1710},{"vlan":1711},{"vlan":1712},{"vlan":1713},{"vlan":1714},{"vlan":1715},{"vlan":1716},{"vlan":1717},{"vlan":1718},{"vlan":1719},{"vlan":1720},{"vlan":1721},{"vlan":1722},{"vlan":1723},{"vlan":1724},{"vlan":1725},{"vlan":1726},{"vlan":1727},{"vlan":1728},{"vlan":1729},{"vlan":1730},{"vlan":1731},{"vlan":1732},{"vlan":1733},{"vlan":1734},{"vlan":1735},{"vlan":1736},{"vlan":1737},{"vlan":1738},{"vlan":1739},{"vlan":1740},{"vlan":1741},{"vlan":1742},{"vlan":1743},{"vlan":1744},{"vlan":1745},{"vlan":1746},{"vlan":1747},{"vlan":1748},{"vlan":1749},{"vlan":1750},{"vlan":1751},{"vlan":1752},{"vlan":1753},{"vlan":1754},{"vlan":1755},{"vlan":1756},{"vlan":1757},{"vlan":1758},{"vlan":1759},{"vlan":1760},{"vlan":1761},{"vlan":1762},{"vlan":1763},{"vlan":1764},{"vlan":1765},{"vlan":1766},{"vlan":1767},{"vlan":1768},{"vlan":1769},{"vlan":1770},{"vlan":1771},{"vlan":1772},{"vlan":1773},{"vlan":1774},{"vlan":1775},{"vlan":1776},{"vlan":1777},{"vlan":1778},{"vlan":1779},{"vlan":1780},{"vlan":1781},{"vlan":1782},{"vlan":1783},{"vlan":1784},{"vlan":1785},{"vlan":1786},{"vlan":1787},{"vlan":1788},{"vlan":1789},{"vlan":1790},{"vlan":1791},{"vlan":1792},{"vlan":1793},{"vlan":1794},{"vlan":1795},{"vlan":1796},{"vlan":1797},{"vlan":1798},{"vlan":1799},{"vlan":1800},{"vlan":1801},{"vlan":1802},{"vlan":1803},{"vlan":1804},{"vlan":1805},{"vlan":1806},{"vlan":1807},{"vlan":1808},{"vlan":1809},{"vlan":1810},{"vlan":1811},{"vlan":1812},{"vlan":1813},{"vlan":1814},{"vlan":1815},{"vlan":1816},{"vlan":1817},{"vlan":1818},{"vlan":1819},{"vlan":1820},{"vlan":1821},{"vlan":1822},{"vlan":1823},{"vlan":1824},{"vlan":1825},{"vlan":1826},{"vlan":1827},{"vlan":1828},{"vlan":1829},{"vlan":1830},{"vlan":1831},{"vlan":1832},{"vlan":1833},{"vlan":1834},{"vlan":1835},{"vlan":1836},{"vlan":1837},{"vlan":1838},{"vlan":1839},{"vlan":1840},{"vlan":1841},{"vlan":1842},{"vlan":1843},{"vlan":1844},{"vlan":1845},{"vlan":1846},{"vlan":1847},{"vlan":1848},{"vlan":1849},{"vlan":1850},{"vlan":1851},{"vlan":1852},{"vlan":1853},{"vlan":1854},{"vlan":1855},{"vlan":1856},{"vlan":1857},{"vlan":1858},{"vlan":1859},{"vlan":1860},{"vlan":1861},{"vlan":1862},{"vlan":1863},{"vlan":1864},{"vlan":1865},{"vlan":1866},{"vlan":1867},{"vlan":1868},{"vlan":1869},{"vlan":1870},{"vlan":1871},{"vlan":1872},{"vlan":1873},{"vlan":1874},{"vlan":1875},{"vlan":1876},{"vlan":1877},{"vlan":1878},{"vlan":1879},{"vlan":1880},{"vlan":1881},{"vlan":1882},{"vlan":1883},{"vlan":1884},{"vlan":1885},{"vlan":1886},{"vlan":1887},{"vlan":1888},{"vlan":1889},{"vlan":1890},{"vlan":1891},{"vlan":1892},{"vlan":1893},{"vlan":1894},{"vlan":1895},{"vlan":1896},{"vlan":1897},{"vlan":1898},{"vlan":1899},{"vlan":1900},{"vlan":1901},{"vlan":1902},{"vlan":1903},{"vlan":1904},{"vlan":1905},{"vlan":1906},{"vlan":1907},{"vlan":1908},{"vlan":1909},{"vlan":1910},{"vlan":1911},{"vlan":1912},{"vlan":1913},{"vlan":1914},{"vlan":1915},{"vlan":1916},{"vlan":1917},{"vlan":1918},{"vlan":1919},{"vlan":1920},{"vlan":1921},{"vlan":1922},{"vlan":1923},{"vlan":1924},{"vlan":1925},{"vlan":1926},{"vlan":1927},{"vlan":1928},{"vlan":1929},{"vlan":1930},{"vlan":1931},{"vlan":1932},{"vlan":1933},{"vlan":1934},{"vlan":1935},{"vlan":1936},{"vlan":1937},{"vlan":1938},{"vlan":1939},{"vlan":1940},{"vlan":1941},{"vlan":1942},{"vlan":1943},{"vlan":1944},{"vlan":1945},{"vlan":1946},{"vlan":1947},{"vlan":1948},{"vlan":1949},{"vlan":1950},{"vlan":1951},{"vlan":1952},{"vlan":1953},{"vlan":1954},{"vlan":1955},{"vlan":1956},{"vlan":1957},{"vlan":1958},{"vlan":1959},{"vlan":1960},{"vlan":1961},{"vlan":1962},{"vlan":1963},{"vlan":1964},{"vlan":1965},{"vlan":1966},{"vlan":1967},{"vlan":1968},{"vlan":1969},{"vlan":1970},{"vlan":1971},{"vlan":1972},{"vlan":1973},{"vlan":1974},{"vlan":1975},{"vlan":1976},{"vlan":1977},{"vlan":1978},{"vlan":1979},{"vlan":1980},{"vlan":1981},{"vlan":1982},{"vlan":1983},{"vlan":1984},{"vlan":1985},{"vlan":1986},{"vlan":1987},{"vlan":1988},{"vlan":1989},{"vlan":1990},{"vlan":1991},{"vlan":1992},{"vlan":1993},{"vlan":1994},{"vlan":1995},{"vlan":1996},{"vlan":1997},{"vlan":1998},{"vlan":1999},{"vlan":2000},{"vlan":2001},{"vlan":2002},{"vlan":2003},{"vlan":2004},{"vlan":2005},{"vlan":2006},{"vlan":2007},{"vlan":2008},{"vlan":2009},{"vlan":2010},{"vlan":2011},{"vlan":2012},{"vlan":2013},{"vlan":2014},{"vlan":2015},{"vlan":2016},{"vlan":2017},{"vlan":2018},{"vlan":2019},{"vlan":2020},{"vlan":2021},{"vlan":2022},{"vlan":2023},{"vlan":2024},{"vlan":2025},{"vlan":2026},{"vlan":2027},{"vlan":2028},{"vlan":2029},{"vlan":2030},{"vlan":2031},{"vlan":2032},{"vlan":2033},{"vlan":2034},{"vlan":2035},{"vlan":2036},{"vlan":2037},{"vlan":2038},{"vlan":2039},{"vlan":2040},{"vlan":2041},{"vlan":2042},{"vlan":2043},{"vlan":2044},{"vlan":2045},{"vlan":2046},{"vlan":2047},{"vlan":2048},{"vlan":2049},{"vlan":2050},{"vlan":2051},{"vlan":2052},{"vlan":2053},{"vlan":2054},{"vlan":2055},{"vlan":2056},{"vlan":2057},{"vlan":2058},{"vlan":2059},{"vlan":2060},{"vlan":2061},{"vlan":2062},{"vlan":2063},{"vlan":2064},{"vlan":2065},{"vlan":2066},{"vlan":2067},{"vlan":2068},{"vlan":2069},{"vlan":2070},{"vlan":2071},{"vlan":2072},{"vlan":2073},{"vlan":2074},{"vlan":2075},{"vlan":2076},{"vlan":2077},{"vlan":2078},{"vlan":2079},{"vlan":2080},{"vlan":2081},{"vlan":2082},{"vlan":2083},{"vlan":2084},{"vlan":2085},{"vlan":2086},{"vlan":2087},{"vlan":2088},{"vlan":2089},{"vlan":2090},{"vlan":2091},{"vlan":2092},{"vlan":2093},{"vlan":2094},{"vlan":2095},{"vlan":2096},{"vlan":2097},{"vlan":2098},{"vlan":2099},{"vlan":2100},{"vlan":2101},{"vlan":2102},{"vlan":2103},{"vlan":2104},{"vlan":2105},{"vlan":2106},{"vlan":2107},{"vlan":2108},{"vlan":2109},{"vlan":2110},{"vlan":2111},{"vlan":2112},{"vlan":2113},{"vlan":2114},{"vlan":2115},{"vlan":2116},{"vlan":2117},{"vlan":2118},{"vlan":2119},{"vlan":2120},{"vlan":2121},{"vlan":2122},{"vlan":2123},{"vlan":2124},{"vlan":2125},{"vlan":2126},{"vlan":2127},{"vlan":2128},{"vlan":2129},{"vlan":2130},{"vlan":2131},{"vlan":2132},{"vlan":2133},{"vlan":2134},{"vlan":2135},{"vlan":2136},{"vlan":2137},{"vlan":2138},{"vlan":2139},{"vlan":2140},{"vlan":2141},{"vlan":2142},{"vlan":2143},{"vlan":2144},{"vlan":2145},{"vlan":2146},{"vlan":2147},{"vlan":2148},{"vlan":2149},{"vlan":2150},{"vlan":2151},{"vlan":2152},{"vlan":2153},{"vlan":2154},{"vlan":2155},{"vlan":2156},{"vlan":2157},{"vlan":2158},{"vlan":2159},{"vlan":2160},{"vlan":2161},{"vlan":2162},{"vlan":2163},{"vlan":2164},{"vlan":2165},{"vlan":2166},{"vlan":2167},{"vlan":2168},{"vlan":2169},{"vlan":2170},{"vlan":2171},{"vlan":2172},{"vlan":2173},{"vlan":2174},{"vlan":2175},{"vlan":2176},{"vlan":2177},{"vlan":2178},{"vlan":2179},{"vlan":2180},{"vlan":2181},{"vlan":2182},{"vlan":2183},{"vlan":2184},{"vlan":2185},{"vlan":2186},{"vlan":2187},{"vlan":2188},{"vlan":2189},{"vlan":2190},{"vlan":2191},{"vlan":2192},{"vlan":2193},{"vlan":2194},{"vlan":2195},{"vlan":2196},{"vlan":2197},{"vlan":2198},{"vlan":2199},{"vlan":2200},{"vlan":2201},{"vlan":2202},{"vlan":2203},{"vlan":2204},{"vlan":2205},{"vlan":2206},{"vlan":2207},{"vlan":2208},{"vlan":2209},{"vlan":2210},{"vlan":2211},{"vlan":2212},{"vlan":2213},{"vlan":2214},{"vlan":2215},{"vlan":2216},{"vlan":2217},{"vlan":2218},{"vlan":2219},{"vlan":2220},{"vlan":2221},{"vlan":2222},{"vlan":2223},{"vlan":2224},{"vlan":2225},{"vlan":2226},{"vlan":2227},{"vlan":2228},{"vlan":2229},{"vlan":2230},{"vlan":2231},{"vlan":2232},{"vlan":2233},{"vlan":2234},{"vlan":2235},{"vlan":2236},{"vlan":2237},{"vlan":2238},{"vlan":2239},{"vlan":2240},{"vlan":2241},{"vlan":2242},{"vlan":2243},{"vlan":2244},{"vlan":2245},{"vlan":2246},{"vlan":2247},{"vlan":2248},{"vlan":2249},{"vlan":2250},{"vlan":2251},{"vlan":2252},{"vlan":2253},{"vlan":2254},{"vlan":2255},{"vlan":2256},{"vlan":2257},{"vlan":2258},{"vlan":2259},{"vlan":2260},{"vlan":2261},{"vlan":2262},{"vlan":2263},{"vlan":2264},{"vlan":2265},{"vlan":2266},{"vlan":2267},{"vlan":2268},{"vlan":2269},{"vlan":2270},{"vlan":2271},{"vlan":2272},{"vlan":2273},{"vlan":2274},{"vlan":2275},{"vlan":2276},{"vlan":2277},{"vlan":2278},{"vlan":2279},{"vlan":2280},{"vlan":2281},{"vlan":2282},{"vlan":2283},{"vlan":2284},{"vlan":2285},{"vlan":2286},{"vlan":2287},{"vlan":2288},{"vlan":2289},{"vlan":2290},{"vlan":2291},{"vlan":2292},{"vlan":2293},{"vlan":2294},{"vlan":2295},{"vlan":2296},{"vlan":2297},{"vlan":2298},{"vlan":2299},{"vlan":2300},{"vlan":2301},{"vlan":2302},{"vlan":2303},{"vlan":2304},{"vlan":2305},{"vlan":2306},{"vlan":2307},{"vlan":2308},{"vlan":2309},{"vlan":2310},{"vlan":2311},{"vlan":2312},{"vlan":2313},{"vlan":2314},{"vlan":2315},{"vlan":2316},{"vlan":2317},{"vlan":2318},{"vlan":2319},{"vlan":2320},{"vlan":2321},{"vlan":2322},{"vlan":2323},{"vlan":2324},{"vlan":2325},{"vlan":2326},{"vlan":2327},{"vlan":2328},{"vlan":2329},{"vlan":2330},{"vlan":2331},{"vlan":2332},{"vlan":2333},{"vlan":2334},{"vlan":2335},{"vlan":2336},{"vlan":2337},{"vlan":2338},{"vlan":2339},{"vlan":2340},{"vlan":2341},{"vlan":2342},{"vlan":2343},{"vlan":2344},{"vlan":2345},{"vlan":2346},{"vlan":2347},{"vlan":2348},{"vlan":2349},{"vlan":2350},{"vlan":2351},{"vlan":2352},{"vlan":2353},{"vlan":2354},{"vlan":2355},{"vlan":2356},{"vlan":2357},{"vlan":2358},{"vlan":2359},{"vlan":2360},{"vlan":2361},{"vlan":2362},{"vlan":2363},{"vlan":2364},{"vlan":2365},{"vlan":2366},{"vlan":2367},{"vlan":2368},{"vlan":2369},{"vlan":2370},{"vlan":2371},{"vlan":2372},{"vlan":2373},{"vlan":2374},{"vlan":2375},{"vlan":2376},{"vlan":2377},{"vlan":2378},{"vlan":2379},{"vlan":2380},{"vlan":2381},{"vlan":2382},{"vlan":2383},{"vlan":2384},{"vlan":2385},{"vlan":2386},{"vlan":2387},{"vlan":2388},{"vlan":2389},{"vlan":2390},{"vlan":2391},{"vlan":2392},{"vlan":2393},{"vlan":2394},{"vlan":2395},{"vlan":2396},{"vlan":2397},{"vlan":2398},{"vlan":2399},{"vlan":2400},{"vlan":2401},{"vlan":2402},{"vlan":2403},{"vlan":2404},{"vlan":2405},{"vlan":2406},{"vlan":2407},{"vlan":2408},{"vlan":2409},{"vlan":2410},{"vlan":2411},{"vlan":2412},{"vlan":2413},{"vlan":2414},{"vlan":2415},{"vlan":2416},{"vlan":2417},{"vlan":2418},{"vlan":2419},{"vlan":2420},{"vlan":2421},{"vlan":2422},{"vlan":2423},{"vlan":2424},{"vlan":2425},{"vlan":2426},{"vlan":2427},{"vlan":2428},{"vlan":2429},{"vlan":2430},{"vlan":2431},{"vlan":2432},{"vlan":2433},{"vlan":2434},{"vlan":2435},{"vlan":2436},{"vlan":2437},{"vlan":2438},{"vlan":2439},{"vlan":2440},{"vlan":2441},{"vlan":2442},{"vlan":2443},{"vlan":2444},{"vlan":2445},{"vlan":2446},{"vlan":2447},{"vlan":2448},{"vlan":2449},{"vlan":2450},{"vlan":2451},{"vlan":2452},{"vlan":2453},{"vlan":2454},{"vlan":2455},{"vlan":2456},{"vlan":2457},{"vlan":2458},{"vlan":2459},{"vlan":2460},{"vlan":2461},{"vlan":2462},{"vlan":2463},{"vlan":2464},{"vlan":2465},{"vlan":2466},{"vlan":2467},{"vlan":2468},{"vlan":2469},{"vlan":2470},{"vlan":2471},{"vlan":2472},{"vlan":2473},{"vlan":2474},{"vlan":2475},{"vlan":2476},{"vlan":2477},{"vlan":2478},{"vlan":2479},{"vlan":2480},{"vlan":2481},{"vlan":2482},{"vlan":2483},{"vlan":2484},{"vlan":2485},{"vlan":2486},{"vlan":2487},{"vlan":2488},{"vlan":2489},{"vlan":2490},{"vlan":2491},{"vlan":2492},{"vlan":2493},{"vlan":2494},{"vlan":2495},{"vlan":2496},{"vlan":2497},{"vlan":2498},{"vlan":2499},{"vlan":2500},{"vlan":2501},{"vlan":2502},{"vlan":2503},{"vlan":2504},{"vlan":2505},{"vlan":2506},{"vlan":2507},{"vlan":2508},{"vlan":2509},{"vlan":2510},{"vlan":2511},{"vlan":2512},{"vlan":2513},{"vlan":2514},{"vlan":2515},{"vlan":2516},{"vlan":2517},{"vlan":2518},{"vlan":2519},{"vlan":2520},{"vlan":2521},{"vlan":2522},{"vlan":2523},{"vlan":2524},{"vlan":2525},{"vlan":2526},{"vlan":2527},{"vlan":2528},{"vlan":2529},{"vlan":2530},{"vlan":2531},{"vlan":2532},{"vlan":2533},{"vlan":2534},{"vlan":2535},{"vlan":2536},{"vlan":2537},{"vlan":2538},{"vlan":2539},{"vlan":2540},{"vlan":2541},{"vlan":2542},{"vlan":2543},{"vlan":2544},{"vlan":2545},{"vlan":2546},{"vlan":2547},{"vlan":2548},{"vlan":2549},{"vlan":2550},{"vlan":2551},{"vlan":2552},{"vlan":2553},{"vlan":2554},{"vlan":2555},{"vlan":2556},{"vlan":2557},{"vlan":2558},{"vlan":2559},{"vlan":2560},{"vlan":2561},{"vlan":2562},{"vlan":2563},{"vlan":2564},{"vlan":2565},{"vlan":2566},{"vlan":2567},{"vlan":2568},{"vlan":2569},{"vlan":2570},{"vlan":2571},{"vlan":2572},{"vlan":2573},{"vlan":2574},{"vlan":2575},{"vlan":2576},{"vlan":2577},{"vlan":2578},{"vlan":2579},{"vlan":2580},{"vlan":2581},{"vlan":2582},{"vlan":2583},{"vlan":2584},{"vlan":2585},{"vlan":2586},{"vlan":2587},{"vlan":2588},{"vlan":2589},{"vlan":2590},{"vlan":2591},{"vlan":2592},{"vlan":2593},{"vlan":2594},{"vlan":2595},{"vlan":2596},{"vlan":2597},{"vlan":2598},{"vlan":2599},{"vlan":2600},{"vlan":2601},{"vlan":2602},{"vlan":2603},{"vlan":2604},{"vlan":2605},{"vlan":2606},{"vlan":2607},{"vlan":2608},{"vlan":2609},{"vlan":2610},{"vlan":2611},{"vlan":2612},{"vlan":2613},{"vlan":2614},{"vlan":2615},{"vlan":2616},{"vlan":2617},{"vlan":2618},{"vlan":2619},{"vlan":2620},{"vlan":2621},{"vlan":2622},{"vlan":2623},{"vlan":2624},{"vlan":2625},{"vlan":2626},{"vlan":2627},{"vlan":2628},{"vlan":2629},{"vlan":2630},{"vlan":2631},{"vlan":2632},{"vlan":2633},{"vlan":2634},{"vlan":2635},{"vlan":2636},{"vlan":2637},{"vlan":2638},{"vlan":2639},{"vlan":2640},{"vlan":2641},{"vlan":2642},{"vlan":2643},{"vlan":2644},{"vlan":2645},{"vlan":2646},{"vlan":2647},{"vlan":2648},{"vlan":2649},{"vlan":2650},{"vlan":2651},{"vlan":2652},{"vlan":2653},{"vlan":2654},{"vlan":2655},{"vlan":2656},{"vlan":2657},{"vlan":2658},{"vlan":2659},{"vlan":2660},{"vlan":2661},{"vlan":2662},{"vlan":2663},{"vlan":2664},{"vlan":2665},{"vlan":2666},{"vlan":2667},{"vlan":2668},{"vlan":2669},{"vlan":2670},{"vlan":2671},{"vlan":2672},{"vlan":2673},{"vlan":2674},{"vlan":2675},{"vlan":2676},{"vlan":2677},{"vlan":2678},{"vlan":2679},{"vlan":2680},{"vlan":2681},{"vlan":2682},{"vlan":2683},{"vlan":2684},{"vlan":2685},{"vlan":2686},{"vlan":2687},{"vlan":2688},{"vlan":2689},{"vlan":2690},{"vlan":2691},{"vlan":2692},{"vlan":2693},{"vlan":2694},{"vlan":2695},{"vlan":2696},{"vlan":2697},{"vlan":2698},{"vlan":2699},{"vlan":2700},{"vlan":2701},{"vlan":2702},{"vlan":2703},{"vlan":2704},{"vlan":2705},{"vlan":2706},{"vlan":2707},{"vlan":2708},{"vlan":2709},{"vlan":2710},{"vlan":2711},{"vlan":2712},{"vlan":2713},{"vlan":2714},{"vlan":2715},{"vlan":2716},{"vlan":2717},{"vlan":2718},{"vlan":2719},{"vlan":2720},{"vlan":2721},{"vlan":2722},{"vlan":2723},{"vlan":2724},{"vlan":2725},{"vlan":2726},{"vlan":2727},{"vlan":2728},{"vlan":2729},{"vlan":2730},{"vlan":2731},{"vlan":2732},{"vlan":2733},{"vlan":2734},{"vlan":2735},{"vlan":2736},{"vlan":2737},{"vlan":2738},{"vlan":2739},{"vlan":2740},{"vlan":2741},{"vlan":2742},{"vlan":2743},{"vlan":2744},{"vlan":2745},{"vlan":2746},{"vlan":2747},{"vlan":2748},{"vlan":2749},{"vlan":2750},{"vlan":2751},{"vlan":2752},{"vlan":2753},{"vlan":2754},{"vlan":2755},{"vlan":2756},{"vlan":2757},{"vlan":2758},{"vlan":2759},{"vlan":2760},{"vlan":2761},{"vlan":2762},{"vlan":2763},{"vlan":2764},{"vlan":2765},{"vlan":2766},{"vlan":2767},{"vlan":2768},{"vlan":2769},{"vlan":2770},{"vlan":2771},{"vlan":2772},{"vlan":2773},{"vlan":2774},{"vlan":2775},{"vlan":2776},{"vlan":2777},{"vlan":2778},{"vlan":2779},{"vlan":2780},{"vlan":2781},{"vlan":2782},{"vlan":2783},{"vlan":2784},{"vlan":2785},{"vlan":2786},{"vlan":2787},{"vlan":2788},{"vlan":2789},{"vlan":2790},{"vlan":2791},{"vlan":2792},{"vlan":2793},{"vlan":2794},{"vlan":2795},{"vlan":2796},{"vlan":2797},{"vlan":2798},{"vlan":2799},{"vlan":2800},{"vlan":2801},{"vlan":2802},{"vlan":2803},{"vlan":2804},{"vlan":2805},{"vlan":2806},{"vlan":2807},{"vlan":2808},{"vlan":2809},{"vlan":2810},{"vlan":2811},{"vlan":2812},{"vlan":2813},{"vlan":2814},{"vlan":2815},{"vlan":2816},{"vlan":2817},{"vlan":2818},{"vlan":2819},{"vlan":2820},{"vlan":2821},{"vlan":2822},{"vlan":2823},{"vlan":2824},{"vlan":2825},{"vlan":2826},{"vlan":2827},{"vlan":2828},{"vlan":2829},{"vlan":2830},{"vlan":2831},{"vlan":2832},{"vlan":2833},{"vlan":2834},{"vlan":2835},{"vlan":2836},{"vlan":2837},{"vlan":2838},{"vlan":2839},{"vlan":2840},{"vlan":2841},{"vlan":2842},{"vlan":2843},{"vlan":2844},{"vlan":2845},{"vlan":2846},{"vlan":2847},{"vlan":2848},{"vlan":2849},{"vlan":2850},{"vlan":2851},{"vlan":2852},{"vlan":2853},{"vlan":2854},{"vlan":2855},{"vlan":2856},{"vlan":2857},{"vlan":2858},{"vlan":2859},{"vlan":2860},{"vlan":2861},{"vlan":2862},{"vlan":2863},{"vlan":2864},{"vlan":2865},{"vlan":2866},{"vlan":2867},{"vlan":2868},{"vlan":2869},{"vlan":2870},{"vlan":2871},{"vlan":2872},{"vlan":2873},{"vlan":2874},{"vlan":2875},{"vlan":2876},{"vlan":2877},{"vlan":2878},{"vlan":2879},{"vlan":2880},{"vlan":2881},{"vlan":2882},{"vlan":2883},{"vlan":2884},{"vlan":2885},{"vlan":2886},{"vlan":2887},{"vlan":2888},{"vlan":2889},{"vlan":2890},{"vlan":2891},{"vlan":2892},{"vlan":2893},{"vlan":2894},{"vlan":2895},{"vlan":2896},{"vlan":2897},{"vlan":2898},{"vlan":2899},{"vlan":2900},{"vlan":2901},{"vlan":2902},{"vlan":2903},{"vlan":2904},{"vlan":2905},{"vlan":2906},{"vlan":2907},{"vlan":2908},{"vlan":2909},{"vlan":2910},{"vlan":2911},{"vlan":2912},{"vlan":2913},{"vlan":2914},{"vlan":2915},{"vlan":2916},{"vlan":2917},{"vlan":2918},{"vlan":2919},{"vlan":2920},{"vlan":2921},{"vlan":2922},{"vlan":2923},{"vlan":2924},{"vlan":2925},{"vlan":2926},{"vlan":2927},{"vlan":2928},{"vlan":2929},{"vlan":2930},{"vlan":2931},{"vlan":2932},{"vlan":2933},{"vlan":2934},{"vlan":2935},{"vlan":2936},{"vlan":2937},{"vlan":2938},{"vlan":2939},{"vlan":2940},{"vlan":2941},{"vlan":2942},{"vlan":2943},{"vlan":2944},{"vlan":2945},{"vlan":2946},{"vlan":2947},{"vlan":2948},{"vlan":2949},{"vlan":2950},{"vlan":2951},{"vlan":2952},{"vlan":2953},{"vlan":2954},{"vlan":2955},{"vlan":2956},{"vlan":2957},{"vlan":2958},{"vlan":2959},{"vlan":2960},{"vlan":2961},{"vlan":2962},{"vlan":2963},{"vlan":2964},{"vlan":2965},{"vlan":2966},{"vlan":2967},{"vlan":2968},{"vlan":2969},{"vlan":2970},{"vlan":2971},{"vlan":2972},{"vlan":2973},{"vlan":2974},{"vlan":2975},{"vlan":2976},{"vlan":2977},{"vlan":2978},{"vlan":2979},{"vlan":2980},{"vlan":2981},{"vlan":2982},{"vlan":2983},{"vlan":2984},{"vlan":2985},{"vlan":2986},{"vlan":2987},{"vlan":2988},{"vlan":2989},{"vlan":2990},{"vlan":2991},{"vlan":2992},{"vlan":2993},{"vlan":2994},{"vlan":2995},{"vlan":2996},{"vlan":2997},{"vlan":2998},{"vlan":2999},{"vlan":3000},{"vlan":3001},{"vlan":3002},{"vlan":3003},{"vlan":3004},{"vlan":3005},{"vlan":3006},{"vlan":3007},{"vlan":3008},{"vlan":3009},{"vlan":3010},{"vlan":3011},{"vlan":3012},{"vlan":3013},{"vlan":3014},{"vlan":3015},{"vlan":3016},{"vlan":3017},{"vlan":3018},{"vlan":3019},{"vlan":3020},{"vlan":3021},{"vlan":3022},{"vlan":3023},{"vlan":3024},{"vlan":3025},{"vlan":3026},{"vlan":3027},{"vlan":3028},{"vlan":3029},{"vlan":3030},{"vlan":3031},{"vlan":3032},{"vlan":3033},{"vlan":3034},{"vlan":3035},{"vlan":3036},{"vlan":3037},{"vlan":3038},{"vlan":3039},{"vlan":3040},{"vlan":3041},{"vlan":3042},{"vlan":3043},{"vlan":3044},{"vlan":3045},{"vlan":3046},{"vlan":3047},{"vlan":3048},{"vlan":3049},{"vlan":3050},{"vlan":3051},{"vlan":3052},{"vlan":3053},{"vlan":3054},{"vlan":3055},{"vlan":3056},{"vlan":3057},{"vlan":3058},{"vlan":3059},{"vlan":3060},{"vlan":3061},{"vlan":3062},{"vlan":3063},{"vlan":3064},{"vlan":3065},{"vlan":3066},{"vlan":3067},{"vlan":3068},{"vlan":3069},{"vlan":3070},{"vlan":3071},{"vlan":3072},{"vlan":3073},{"vlan":3074},{"vlan":3075},{"vlan":3076},{"vlan":3077},{"vlan":3078},{"vlan":3079},{"vlan":3080},{"vlan":3081},{"vlan":3082},{"vlan":3083},{"vlan":3084},{"vlan":3085},{"vlan":3086},{"vlan":3087},{"vlan":3088},{"vlan":3089},{"vlan":3090},{"vlan":3091},{"vlan":3092},{"vlan":3093},{"vlan":3094},{"vlan":3095},{"vlan":3096},{"vlan":3097},{"vlan":3098},{"vlan":3099},{"vlan":3100},{"vlan":3101},{"vlan":3102},{"vlan":3103},{"vlan":3104},{"vlan":3105},{"vlan":3106},{"vlan":3107},{"vlan":3108},{"vlan":3109},{"vlan":3110},{"vlan":3111},{"vlan":3112},{"vlan":3113},{"vlan":3114},{"vlan":3115},{"vlan":3116},{"vlan":3117},{"vlan":3118},{"vlan":3119},{"vlan":3120},{"vlan":3121},{"vlan":3122},{"vlan":3123},{"vlan":3124},{"vlan":3125},{"vlan":3126},{"vlan":3127},{"vlan":3128},{"vlan":3129},{"vlan":3130},{"vlan":3131},{"vlan":3132},{"vlan":3133},{"vlan":3134},{"vlan":3135},{"vlan":3136},{"vlan":3137},{"vlan":3138},{"vlan":3139},{"vlan":3140},{"vlan":3141},{"vlan":3142},{"vlan":3143},{"vlan":3144},{"vlan":3145},{"vlan":3146},{"vlan":3147},{"vlan":3148},{"vlan":3149},{"vlan":3150},{"vlan":3151},{"vlan":3152},{"vlan":3153},{"vlan":3154},{"vlan":3155},{"vlan":3156},{"vlan":3157},{"vlan":3158},{"vlan":3159},{"vlan":3160},{"vlan":3161},{"vlan":3162},{"vlan":3163},{"vlan":3164},{"vlan":3165},{"vlan":3166},{"vlan":3167},{"vlan":3168},{"vlan":3169},{"vlan":3170},{"vlan":3171},{"vlan":3172},{"vlan":3173},{"vlan":3174},{"vlan":3175},{"vlan":3176},{"vlan":3177},{"vlan":3178},{"vlan":3179},{"vlan":3180},{"vlan":3181},{"vlan":3182},{"vlan":3183},{"vlan":3184},{"vlan":3185},{"vlan":3186},{"vlan":3187},{"vlan":3188},{"vlan":3189},{"vlan":3190},{"vlan":3191},{"vlan":3192},{"vlan":3193},{"vlan":3194},{"vlan":3195},{"vlan":3196},{"vlan":3197},{"vlan":3198},{"vlan":3199},{"vlan":3200},{"vlan":3201},{"vlan":3202},{"vlan":3203},{"vlan":3204},{"vlan":3205},{"vlan":3206},{"vlan":3207},{"vlan":3208},{"vlan":3209},{"vlan":3210},{"vlan":3211},{"vlan":3212},{"vlan":3213},{"vlan":3214},{"vlan":3215},{"vlan":3216},{"vlan":3217},{"vlan":3218},{"vlan":3219},{"vlan":3220},{"vlan":3221},{"vlan":3222},{"vlan":3223},{"vlan":3224},{"vlan":3225},{"vlan":3226},{"vlan":3227},{"vlan":3228},{"vlan":3229},{"vlan":3230},{"vlan":3231},{"vlan":3232},{"vlan":3233},{"vlan":3234},{"vlan":3235},{"vlan":3236},{"vlan":3237},{"vlan":3238},{"vlan":3239},{"vlan":3240},{"vlan":3241},{"vlan":3242},{"vlan":3243},{"vlan":3244},{"vlan":3245},{"vlan":3246},{"vlan":3247},{"vlan":3248},{"vlan":3249},{"vlan":3250},{"vlan":3251},{"vlan":3252},{"vlan":3253},{"vlan":3254},{"vlan":3255},{"vlan":3256},{"vlan":3257},{"vlan":3258},{"vlan":3259},{"vlan":3260},{"vlan":3261},{"vlan":3262},{"vlan":3263},{"vlan":3264},{"vlan":3265},{"vlan":3266},{"vlan":3267},{"vlan":3268},{"vlan":3269},{"vlan":3270},{"vlan":3271},{"vlan":3272},{"vlan":3273},{"vlan":3274},{"vlan":3275},{"vlan":3276},{"vlan":3277},{"vlan":3278},{"vlan":3279},{"vlan":3280},{"vlan":3281},{"vlan":3282},{"vlan":3283},{"vlan":3284},{"vlan":3285},{"vlan":3286},{"vlan":3287},{"vlan":3288},{"vlan":3289},{"vlan":3290},{"vlan":3291},{"vlan":3292},{"vlan":3293},{"vlan":3294},{"vlan":3295},{"vlan":3296},{"vlan":3297},{"vlan":3298},{"vlan":3299},{"vlan":3300},{"vlan":3301},{"vlan":3302},{"vlan":3303},{"vlan":3304},{"vlan":3305},{"vlan":3306},{"vlan":3307},{"vlan":3308},{"vlan":3309},{"vlan":3310},{"vlan":3311},{"vlan":3312},{"vlan":3313},{"vlan":3314},{"vlan":3315},{"vlan":3316},{"vlan":3317},{"vlan":3318},{"vlan":3319},{"vlan":3320},{"vlan":3321},{"vlan":3322},{"vlan":3323},{"vlan":3324},{"vlan":3325},{"vlan":3326},{"vlan":3327},{"vlan":3328},{"vlan":3329},{"vlan":3330},{"vlan":3331},{"vlan":3332},{"vlan":3333},{"vlan":3334},{"vlan":3335},{"vlan":3336},{"vlan":3337},{"vlan":3338},{"vlan":3339},{"vlan":3340},{"vlan":3341},{"vlan":3342},{"vlan":3343},{"vlan":3344},{"vlan":3345},{"vlan":3346},{"vlan":3347},{"vlan":3348},{"vlan":3349},{"vlan":3350},{"vlan":3351},{"vlan":3352},{"vlan":3353},{"vlan":3354},{"vlan":3355},{"vlan":3356},{"vlan":3357},{"vlan":3358},{"vlan":3359},{"vlan":3360},{"vlan":3361},{"vlan":3362},{"vlan":3363},{"vlan":3364},{"vlan":3365},{"vlan":3366},{"vlan":3367},{"vlan":3368},{"vlan":3369},{"vlan":3370},{"vlan":3371},{"vlan":3372},{"vlan":3373},{"vlan":3374},{"vlan":3375},{"vlan":3376},{"vlan":3377},{"vlan":3378},{"vlan":3379},{"vlan":3380},{"vlan":3381},{"vlan":3382},{"vlan":3383},{"vlan":3384},{"vlan":3385},{"vlan":3386},{"vlan":3387},{"vlan":3388},{"vlan":3389},{"vlan":3390},{"vlan":3391},{"vlan":3392},{"vlan":3393},{"vlan":3394},{"vlan":3395},{"vlan":3396},{"vlan":3397},{"vlan":3398},{"vlan":3399},{"vlan":3400},{"vlan":3401},{"vlan":3402},{"vlan":3403},{"vlan":3404},{"vlan":3405},{"vlan":3406},{"vlan":3407},{"vlan":3408},{"vlan":3409},{"vlan":3410},{"vlan":3411},{"vlan":3412},{"vlan":3413},{"vlan":3414},{"vlan":3415},{"vlan":3416},{"vlan":3417},{"vlan":3418},{"vlan":3419},{"vlan":3420},{"vlan":3421},{"vlan":3422},{"vlan":3423},{"vlan":3424},{"vlan":3425},{"vlan":3426},{"vlan":3427},{"vlan":3428},{"vlan":3429},{"vlan":3430},{"vlan":3431},{"vlan":3432},{"vlan":3433},{"vlan":3434},{"vlan":3435},{"vlan":3436},{"vlan":3437},{"vlan":3438},{"vlan":3439},{"vlan":3440},{"vlan":3441},{"vlan":3442},{"vlan":3443},{"vlan":3444},{"vlan":3445},{"vlan":3446},{"vlan":3447},{"vlan":3448},{"vlan":3449},{"vlan":3450},{"vlan":3451},{"vlan":3452},{"vlan":3453},{"vlan":3454},{"vlan":3455},{"vlan":3456},{"vlan":3457},{"vlan":3458},{"vlan":3459},{"vlan":3460},{"vlan":3461},{"vlan":3462},{"vlan":3463},{"vlan":3464},{"vlan":3465},{"vlan":3466},{"vlan":3467},{"vlan":3468},{"vlan":3469},{"vlan":3470},{"vlan":3471},{"vlan":3472},{"vlan":3473},{"vlan":3474},{"vlan":3475},{"vlan":3476},{"vlan":3477},{"vlan":3478},{"vlan":3479},{"vlan":3480},{"vlan":3481},{"vlan":3482},{"vlan":3483},{"vlan":3484},{"vlan":3485},{"vlan":3486},{"vlan":3487},{"vlan":3488},{"vlan":3489},{"vlan":3490},{"vlan":3491},{"vlan":3492},{"vlan":3493},{"vlan":3494},{"vlan":3495},{"vlan":3496},{"vlan":3497},{"vlan":3498},{"vlan":3499},{"vlan":3500},{"vlan":3501},{"vlan":3502},{"vlan":3503},{"vlan":3504},{"vlan":3505},{"vlan":3506},{"vlan":3507},{"vlan":3508},{"vlan":3509},{"vlan":3510},{"vlan":3511},{"vlan":3512},{"vlan":3513},{"vlan":3514},{"vlan":3515},{"vlan":3516},{"vlan":3517},{"vlan":3518},{"vlan":3519},{"vlan":3520},{"vlan":3521},{"vlan":3522},{"vlan":3523},{"vlan":3524},{"vlan":3525},{"vlan":3526},{"vlan":3527},{"vlan":3528},{"vlan":3529},{"vlan":3530},{"vlan":3531},{"vlan":3532},{"vlan":3533},{"vlan":3534},{"vlan":3535},{"vlan":3536},{"vlan":3537},{"vlan":3538},{"vlan":3539},{"vlan":3540},{"vlan":3541},{"vlan":3542},{"vlan":3543},{"vlan":3544},{"vlan":3545},{"vlan":3546},{"vlan":3547},{"vlan":3548},{"vlan":3549},{"vlan":3550},{"vlan":3551},{"vlan":3552},{"vlan":3553},{"vlan":3554},{"vlan":3555},{"vlan":3556},{"vlan":3557},{"vlan":3558},{"vlan":3559},{"vlan":3560},{"vlan":3561},{"vlan":3562},{"vlan":3563},{"vlan":3564},{"vlan":3565},{"vlan":3566},{"vlan":3567},{"vlan":3568},{"vlan":3569},{"vlan":3570},{"vlan":3571},{"vlan":3572},{"vlan":3573},{"vlan":3574},{"vlan":3575},{"vlan":3576},{"vlan":3577},{"vlan":3578},{"vlan":3579},{"vlan":3580},{"vlan":3581},{"vlan":3582},{"vlan":3583},{"vlan":3584},{"vlan":3585},{"vlan":3586},{"vlan":3587},{"vlan":3588},{"vlan":3589},{"vlan":3590},{"vlan":3591},{"vlan":3592},{"vlan":3593},{"vlan":3594},{"vlan":3595},{"vlan":3596},{"vlan":3597},{"vlan":3598},{"vlan":3599},{"vlan":3600},{"vlan":3601},{"vlan":3602},{"vlan":3603},{"vlan":3604},{"vlan":3605},{"vlan":3606},{"vlan":3607},{"vlan":3608},{"vlan":3609},{"vlan":3610},{"vlan":3611},{"vlan":3612},{"vlan":3613},{"vlan":3614},{"vlan":3615},{"vlan":3616},{"vlan":3617},{"vlan":3618},{"vlan":3619},{"vlan":3620},{"vlan":3621},{"vlan":3622},{"vlan":3623},{"vlan":3624},{"vlan":3625},{"vlan":3626},{"vlan":3627},{"vlan":3628},{"vlan":3629},{"vlan":3630},{"vlan":3631},{"vlan":3632},{"vlan":3633},{"vlan":3634},{"vlan":3635},{"vlan":3636},{"vlan":3637},{"vlan":3638},{"vlan":3639},{"vlan":3640},{"vlan":3641},{"vlan":3642},{"vlan":3643},{"vlan":3644},{"vlan":3645},{"vlan":3646},{"vlan":3647},{"vlan":3648},{"vlan":3649},{"vlan":3650},{"vlan":3651},{"vlan":3652},{"vlan":3653},{"vlan":3654},{"vlan":3655},{"vlan":3656},{"vlan":3657},{"vlan":3658},{"vlan":3659},{"vlan":3660},{"vlan":3661},{"vlan":3662},{"vlan":3663},{"vlan":3664},{"vlan":3665},{"vlan":3666},{"vlan":3667},{"vlan":3668},{"vlan":3669},{"vlan":3670},{"vlan":3671},{"vlan":3672},{"vlan":3673},{"vlan":3674},{"vlan":3675},{"vlan":3676},{"vlan":3677},{"vlan":3678},{"vlan":3679},{"vlan":3680},{"vlan":3681},{"vlan":3682},{"vlan":3683},{"vlan":3684},{"vlan":3685},{"vlan":3686},{"vlan":3687},{"vlan":3688},{"vlan":3689},{"vlan":3690},{"vlan":3691},{"vlan":3692},{"vlan":3693},{"vlan":3694},{"vlan":3695},{"vlan":3696},{"vlan":3697},{"vlan":3698},{"vlan":3699},{"vlan":3700},{"vlan":3701},{"vlan":3702},{"vlan":3703},{"vlan":3704},{"vlan":3705},{"vlan":3706},{"vlan":3707},{"vlan":3708},{"vlan":3709},{"vlan":3710},{"vlan":3711},{"vlan":3712},{"vlan":3713},{"vlan":3714},{"vlan":3715},{"vlan":3716},{"vlan":3717},{"vlan":3718},{"vlan":3719},{"vlan":3720},{"vlan":3721},{"vlan":3722},{"vlan":3723},{"vlan":3724},{"vlan":3725},{"vlan":3726},{"vlan":3727},{"vlan":3728},{"vlan":3729},{"vlan":3730},{"vlan":3731},{"vlan":3732},{"vlan":3733},{"vlan":3734},{"vlan":3735},{"vlan":3736},{"vlan":3737},{"vlan":3738},{"vlan":3739},{"vlan":3740},{"vlan":3741},{"vlan":3742},{"vlan":3743},{"vlan":3744},{"vlan":3745},{"vlan":3746},{"vlan":3747},{"vlan":3748},{"vlan":3749},{"vlan":3750},{"vlan":3751},{"vlan":3752},{"vlan":3753},{"vlan":3754},{"vlan":3755},{"vlan":3756},{"vlan":3757},{"vlan":3758},{"vlan":3759},{"vlan":3760},{"vlan":3761},{"vlan":3762},{"vlan":3763},{"vlan":3764},{"vlan":3765},{"vlan":3766},{"vlan":3767},{"vlan":3768},{"vlan":3769},{"vlan":3770},{"vlan":3771},{"vlan":3772},{"vlan":3773},{"vlan":3774},{"vlan":3775},{"vlan":3776},{"vlan":3777},{"vlan":3778},{"vlan":3779},{"vlan":3780},{"vlan":3781},{"vlan":3782},{"vlan":3783},{"vlan":3784},{"vlan":3785},{"vlan":3786},{"vlan":3787},{"vlan":3788},{"vlan":3789},{"vlan":3790},{"vlan":3791},{"vlan":3792},{"vlan":3793},{"vlan":3794},{"vlan":3795},{"vlan":3796},{"vlan":3797},{"vlan":3798},{"vlan":3799},{"vlan":3800},{"vlan":3801},{"vlan":3802},{"vlan":3803},{"vlan":3804},{"vlan":3805},{"vlan":3806},{"vlan":3807},{"vlan":3808},{"vlan":3809},{"vlan":3810},{"vlan":3811},{"vlan":3812},{"vlan":3813},{"vlan":3814},{"vlan":3815},{"vlan":3816},{"vlan":3817},{"vlan":3818},{"vlan":3819},{"vlan":3820},{"vlan":3821},{"vlan":3822},{"vlan":3823},{"vlan":3824},{"vlan":3825},{"vlan":3826},{"vlan":3827},{"vlan":3828},{"vlan":3829},{"vlan":3830},{"vlan":3831},{"vlan":3832},{"vlan":3833},{"vlan":3834},{"vlan":3835},{"vlan":3836},{"vlan":3837},{"vlan":3838},{"vlan":3839},{"vlan":3840},{"vlan":3841},{"vlan":3842},{"vlan":3843},{"vlan":3844},{"vlan":3845},{"vlan":3846},{"vlan":3847},{"vlan":3848},{"vlan":3849},{"vlan":3850},{"vlan":3851},{"vlan":3852},{"vlan":3853},{"vlan":3854},{"vlan":3855},{"vlan":3856},{"vlan":3857},{"vlan":3858},{"vlan":3859},{"vlan":3860},{"vlan":3861},{"vlan":3862},{"vlan":3863},{"vlan":3864},{"vlan":3865},{"vlan":3866},{"vlan":3867},{"vlan":3868},{"vlan":3869},{"vlan":3870},{"vlan":3871},{"vlan":3872},{"vlan":3873},{"vlan":3874},{"vlan":3875},{"vlan":3876},{"vlan":3877},{"vlan":3878},{"vlan":3879},{"vlan":3880},{"vlan":3881},{"vlan":3882},{"vlan":3883},{"vlan":3884},{"vlan":3885},{"vlan":3886},{"vlan":3887},{"vlan":3888},{"vlan":3889},{"vlan":3890},{"vlan":3891},{"vlan":3892},{"vlan":3893},{"vlan":3894},{"vlan":3895},{"vlan":3896},{"vlan":3897},{"vlan":3898},{"vlan":3899},{"vlan":3900},{"vlan":3901},{"vlan":3902},{"vlan":3903},{"vlan":3904},{"vlan":3905},{"vlan":3906},{"vlan":3907},{"vlan":3908},{"vlan":3909},{"vlan":3910},{"vlan":3911},{"vlan":3912},{"vlan":3913},{"vlan":3914},{"vlan":3915},{"vlan":3916},{"vlan":3917},{"vlan":3918},{"vlan":3919},{"vlan":3920},{"vlan":3921},{"vlan":3922},{"vlan":3923},{"vlan":3924},{"vlan":3925},{"vlan":3926},{"vlan":3927},{"vlan":3928},{"vlan":3929},{"vlan":3930},{"vlan":3931},{"vlan":3932},{"vlan":3933},{"vlan":3934},{"vlan":3935},{"vlan":3936},{"vlan":3937},{"vlan":3938},{"vlan":3939},{"vlan":3940},{"vlan":3941},{"vlan":3942},{"vlan":3943},{"vlan":3944},{"vlan":3945},{"vlan":3946},{"vlan":3947},{"vlan":3948},{"vlan":3949},{"vlan":3950},{"vlan":3951},{"vlan":3952},{"vlan":3953},{"vlan":3954},{"vlan":3955},{"vlan":3956},{"vlan":3957},{"vlan":3958},{"vlan":3959},{"vlan":3960},{"vlan":3961},{"vlan":3962},{"vlan":3963},{"vlan":3964},{"vlan":3965},{"vlan":3966},{"vlan":3967},{"vlan":3968},{"vlan":3969},{"vlan":3970},{"vlan":3971},{"vlan":3972},{"vlan":3973},{"vlan":3974},{"vlan":3975},{"vlan":3976},{"vlan":3977},{"vlan":3978},{"vlan":3979},{"vlan":3980},{"vlan":3981},{"vlan":3982},{"vlan":3983},{"vlan":3984},{"vlan":3985},{"vlan":3986},{"vlan":3987},{"vlan":3988},{"vlan":3989},{"vlan":3990},{"vlan":3991},{"vlan":3992},{"vlan":3993},{"vlan":3994},{"vlan":3995},{"vlan":3996},{"vlan":3997},{"vlan":3998},{"vlan":3999},{"vlan":4000},{"vlan":4001},{"vlan":4002},{"vlan":4003},{"vlan":4004},{"vlan":4005},{"vlan":4006},{"vlan":4007},{"vlan":4008},{"vlan":4009},{"vlan":4010},{"vlan":4011},{"vlan":4012},{"vlan":4013},{"vlan":4014},{"vlan":4015},{"vlan":4016},{"vlan":4017},{"vlan":4018},{"vlan":4019},{"vlan":4020},{"vlan":4021},{"vlan":4022},{"vlan":4023},{"vlan":4024},{"vlan":4025},{"vlan":4026},{"vlan":4027},{"vlan":4028},{"vlan":4029},{"vlan":4030},{"vlan":4031},{"vlan":4032},{"vlan":4033},{"vlan":4034},{"vlan":4035},{"vlan":4036},{"vlan":4037},{"vlan":4038},{"vlan":4039},{"vlan":4040},{"vlan":4041},{"vlan":4042},{"vlan":4043},{"vlan":4044},{"vlan":4045},{"vlan":4046},{"vlan":4047},{"vlan":4048},{"vlan":4049},{"vlan":4050},{"vlan":4051},{"vlan":4052},{"vlan":4053},{"vlan":4054},{"vlan":4055},{"vlan":4056},{"vlan":4057},{"vlan":4058},{"vlan":4059},{"vlan":4060},{"vlan":4061},{"vlan":4062},{"vlan":4063},{"vlan":4064},{"vlan":4065},{"vlan":4066},{"vlan":4067},{"vlan":4068},{"vlan":4069},{"vlan":4070},{"vlan":4071},{"vlan":4072},{"vlan":4073},{"vlan":4074},{"vlan":4075},{"vlan":4076},{"vlan":4077},{"vlan":4078},{"vlan":4079},{"vlan":4080},{"vlan":4081},{"vlan":4082},{"vlan":4083},{"vlan":4084},{"vlan":4085},{"vlan":4086},{"vlan":4087},{"vlan":4088},{"vlan":4089},{"vlan":4090},{"vlan":4091},{"vlan":4092},{"vlan":4093},{"vlan":4094}]}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_can_set_max_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=241, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=241, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:11:20 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=241, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=241, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:11:20 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=241, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=241, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=241, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":283,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=241, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=241, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=241, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=18] Channel closed DEBUG agg1:Logger.py:156
Passed functional/vlan/test_vlan_configuration_checks.py::test_vlan_can_not_add_interface_to_vlan_wo_bridge 0.70
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_can_not_add_interface_to_vlan_wo_bridge">Starting testcase:test_vlan_can_not_add_interface_to_vlan_wo_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-16990' coro=<test_vlan_can_not_add_interface_to_vlan_wo_bridge() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py:70> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO asyncssh:logging.py:92 [conn=241, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=242] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=242] Local address: 172.17.0.3, port 43572 INFO asyncssh:logging.py:92 [conn=242] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=242] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=242] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=242, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:12:11 AM UTC INFO asyncssh:logging.py:92 [conn=242, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=1] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=242, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=2] Command: bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=242, chan=2] Received exit status 255 INFO asyncssh:logging.py:92 [conn=242, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=2] Channel closed DEBUG agg1:Logger.py:156 RTNETLINK answers: Operation not supported INFO asyncssh:logging.py:92 [conn=242, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=242, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=4] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=242, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=242, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=242, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=242, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=8] Command: bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=242, chan=8] Received exit status 255 INFO asyncssh:logging.py:92 [conn=242, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=8] Channel closed DEBUG agg1:Logger.py:156 RTNETLINK answers: Operation not supported
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_can_not_add_interface_to_vlan_wo_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=242, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=9] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=242, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=10] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:12:11 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=242, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=242, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:12:12 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=242, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=242, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=14] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=242, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":284,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"0a:64:7d:7f:80:c1","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=242, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=242, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=16] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=242, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=16] Channel closed DEBUG agg1:Logger.py:156
Passed functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[broadcast] 211.77
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[broadcast]">Starting testcase:test_vlan_default_configuration_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-17016' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=242, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=243] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=243] Local address: 172.17.0.3, port 39368 INFO asyncssh:logging.py:92 [conn=243] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=243] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=243] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=243, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:12:12 AM UTC INFO asyncssh:logging.py:92 [conn=243, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=243, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=243, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=243, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=243, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=243, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=243, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=243, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=243, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e04b310>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 244 Rx 244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 244 Rx 244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 244 Rx 244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 244 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 244 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 244 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged traffic SIP-DIP N/A Tx 244 Rx 244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged traffic SIP-DIP N/A Tx 244 Rx 244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged traffic SIP-DIP N/A Tx 244 Rx 244 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=243, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=243, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:15:43 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=243, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=9] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=243, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=10] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:15:43 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=243, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=243, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=243, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":285,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=243, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=243, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=243, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=14] Channel closed DEBUG agg1:Logger.py:156
Passed functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[multicast] 211.28
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[multicast]">Starting testcase:test_vlan_default_configuration_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-17040' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=243, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=244] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=244] Local address: 172.17.0.3, port 40180 INFO asyncssh:logging.py:92 [conn=244] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=244] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=244] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=244, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:15:44 AM UTC INFO asyncssh:logging.py:92 [conn=244, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=244, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=244, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=244, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=244, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=244, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=244, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=244, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=244, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e16a050>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 122 Rx 122 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 122 Rx 122 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 121 Rx 121 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 122 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 122 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 121 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged traffic SIP-DIP N/A Tx 122 Rx 122 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged traffic SIP-DIP N/A Tx 122 Rx 122 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged traffic SIP-DIP N/A Tx 121 Rx 121 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=244, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=244, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:19:14 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=244, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=9] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=244, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=10] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:19:14 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=244, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=244, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=244, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":286,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=244, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=244, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=244, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=14] Channel closed DEBUG agg1:Logger.py:156
Passed functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[unicast] 209.87
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[unicast]">Starting testcase:test_vlan_default_configuration_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-17064' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=244, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=245] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=245] Local address: 172.17.0.3, port 46130 INFO asyncssh:logging.py:92 [conn=245] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=245] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=245] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=245, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:19:15 AM UTC INFO asyncssh:logging.py:92 [conn=245, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=245, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=245, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=245, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=245, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=245, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=245, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> X INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:8 -> 10.36.118.199:1:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e1682e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:5 -> 1 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:5 -> 2 SIP-DIP N/A Tx 199 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:5 -> X SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:8 -> 10.36.118.199:1:5 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=245, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=245, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:22:41 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=245, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=9] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=245, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=10] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:22:44 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=245, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=245, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=245, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":287,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=245, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=245, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=245, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=14] Channel closed DEBUG agg1:Logger.py:156
Passed functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[unknown_unicast] 210.05
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[unknown_unicast]">Starting testcase:test_vlan_default_configuration_with_[unknown_unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-17088' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=245, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=246] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=246] Local address: 172.17.0.3, port 60062 INFO asyncssh:logging.py:92 [conn=246] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=246] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=246] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=246, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:22:45 AM UTC INFO asyncssh:logging.py:92 [conn=246, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=246, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=246, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=246, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=246, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=246, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=246, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=246, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=246, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e168730>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 248 Rx 248 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 248 Rx 248 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 248 Rx 248 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 248 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 248 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 248 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged traffic SIP-DIP N/A Tx 248 Rx 248 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged traffic SIP-DIP N/A Tx 248 Rx 248 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged traffic SIP-DIP N/A Tx 248 Rx 248 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[unknown_unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=246, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=246, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:26:14 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=246, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=9] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=246, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=10] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:26:14 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=246, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=246, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=246, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":288,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=246, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=246, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=246, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=14] Channel closed DEBUG agg1:Logger.py:156
Passed functional/vlan/test_vlan_default_configuration.py::test_vlan_basic_functionality 196.96
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_basic_functionality">Starting testcase:test_vlan_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-17112' coro=<test_vlan_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:192> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=246, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=247] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=247] Local address: 172.17.0.3, port 56360 INFO asyncssh:logging.py:92 [conn=247] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=247] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=247] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=247, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:26:15 AM UTC INFO asyncssh:logging.py:92 [conn=247, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=247, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=247, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=247, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=247, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=247, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=247, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=247, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=8] Command: bridge vlan add dev swp1 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=247, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=247, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=10] Command: bridge vlan add dev swp2 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=247, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=247, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=12] Command: bridge vlan add dev swp3 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=247, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 2 untagged INFO asyncssh:logging.py:92 [conn=247, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=14] Command: bridge vlan add dev swp4 vid 2 untagged INFO asyncssh:logging.py:92 [conn=247, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e16b190>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged traffic SIP-DIP N/A Tx 245 Rx 245 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged traffic SIP-DIP N/A Tx 245 Rx 245 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged traffic SIP-DIP N/A Tx 245 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=247, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=247, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:29:31 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=247, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=247, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:29:31 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=247, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=247, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=247, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":289,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=247, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=247, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=247, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/vlan/test_vlan_default_configuration.py::test_vlan_changing_default_pvid 214.61
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_changing_default_pvid">Starting testcase:test_vlan_changing_default_pvid from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-17144' coro=<test_vlan_changing_default_pvid() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:269> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=247, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=248] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=248] Local address: 172.17.0.3, port 51164 INFO asyncssh:logging.py:92 [conn=248] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=248] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=248] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=248, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:29:32 AM UTC INFO asyncssh:logging.py:92 [conn=248, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 2 INFO asyncssh:logging.py:92 [conn=248, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 2 INFO asyncssh:logging.py:92 [conn=248, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=248, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=248, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=248, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=248, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=248, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=8] Command: bridge vlan add dev swp1 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=248, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=248, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=10] Command: bridge vlan add dev swp2 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=248, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=248, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=12] Command: bridge vlan add dev swp3 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=248, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=248, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=14] Command: bridge vlan add dev swp4 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=248, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e049990>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 221 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 221 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 220 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 221 Rx 221 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 221 Rx 221 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 220 Rx 220 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged traffic SIP-DIP N/A Tx 221 Rx 221 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged traffic SIP-DIP N/A Tx 221 Rx 221 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged traffic SIP-DIP N/A Tx 220 Rx 220 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_changing_default_pvid from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=248, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=248, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:33:06 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=248, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=248, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:33:06 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=248, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=248, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=248, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":290,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=248, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=248, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=248, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/vlan/test_vlan_increment_mac.py::test_vlan_with_increment_macs 439.15
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_with_increment_macs">Starting testcase:test_vlan_with_increment_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_increment_mac.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-17176' coro=<test_vlan_with_increment_macs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_increment_mac.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=248, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=249] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=249] Local address: 172.17.0.3, port 40868 INFO asyncssh:logging.py:92 [conn=249] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=249] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=249] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=249, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:33:06 AM UTC INFO asyncssh:logging.py:92 [conn=249, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=1] Channel closed DEBUG agg1:Logger.py:156 cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=249, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=2] Command: cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=249, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=2] Channel closed DEBUG agg1:Logger.py:156 arm64-accton-as5114-48x-r0 INFO asyncssh:logging.py:92 [conn=249, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=249, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=4] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=249, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=249, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=249, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=249, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=249, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge ageing_time 3000 INFO asyncssh:logging.py:92 [conn=249, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=10] Command: ip link set dev br0 type bridge ageing_time 3000 INFO asyncssh:logging.py:92 [conn=249, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 5 pvid && bridge vlan add dev swp1 vid 33 && bridge vlan add dev swp1 vid 20 INFO asyncssh:logging.py:92 [conn=249, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=12] Command: bridge vlan add dev swp1 vid 5 pvid && bridge vlan add dev swp1 vid 33 && bridge vlan add dev swp1 vid 20 INFO asyncssh:logging.py:92 [conn=249, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 5 pvid && bridge vlan add dev swp2 vid 33 && bridge vlan add dev swp2 vid 20 INFO asyncssh:logging.py:92 [conn=249, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=14] Command: bridge vlan add dev swp2 vid 5 pvid && bridge vlan add dev swp2 vid 33 && bridge vlan add dev swp2 vid 20 INFO asyncssh:logging.py:92 [conn=249, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 5 pvid && bridge vlan add dev swp3 vid 33 && bridge vlan add dev swp3 vid 20 INFO asyncssh:logging.py:92 [conn=249, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=16] Command: bridge vlan add dev swp3 vid 5 pvid && bridge vlan add dev swp3 vid 33 && bridge vlan add dev swp3 vid 20 INFO asyncssh:logging.py:92 [conn=249, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=17] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 5 pvid && bridge vlan add dev swp4 vid 33 && bridge vlan add dev swp4 vid 20 INFO asyncssh:logging.py:92 [conn=249, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=18] Command: bridge vlan add dev swp4 vid 5 pvid && bridge vlan add dev swp4 vid 33 && bridge vlan add dev swp4 vid 20 INFO asyncssh:logging.py:92 [conn=249, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e169c00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic with VLAN ID: 5 SIP-DIP N/A Tx 142107 Rx 142107 Loss 0.000 INFO asyncssh:logging.py:92 [conn=249, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show dev swp1 | grep 'vlan 5' | wc -l INFO asyncssh:logging.py:92 [conn=249, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=20] Command: bridge fdb show dev swp1 | grep 'vlan 5' | wc -l INFO asyncssh:logging.py:92 [conn=249, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=20] Channel closed DEBUG agg1:Logger.py:156 31343 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: traffic with VLAN ID: 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e1691e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic with VLAN ID: 33 SIP-DIP N/A Tx 142054 Rx 142054 Loss 0.000 INFO asyncssh:logging.py:92 [conn=249, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=21] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show dev swp1 | grep 'vlan 33' | wc -l INFO asyncssh:logging.py:92 [conn=249, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=22] Command: bridge fdb show dev swp1 | grep 'vlan 33' | wc -l INFO asyncssh:logging.py:92 [conn=249, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=22] Channel closed DEBUG agg1:Logger.py:156 31400 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: traffic with VLAN ID: 33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e24f580>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic with VLAN ID: 20 SIP-DIP N/A Tx 143217 Rx 143217 Loss 0.000 INFO asyncssh:logging.py:92 [conn=249, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=23] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show dev swp1 | grep 'vlan 20' | wc -l INFO asyncssh:logging.py:92 [conn=249, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=24] Command: bridge fdb show dev swp1 | grep 'vlan 20' | wc -l INFO asyncssh:logging.py:92 [conn=249, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=24] Channel closed DEBUG agg1:Logger.py:156 31438 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: traffic with VLAN ID: 20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_with_increment_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_increment_mac.py INFO asyncssh:logging.py:92 [conn=249, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=249, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:40:24 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=249, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=249, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=249, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":291,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=249, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=249, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=249, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=249, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=249, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=32] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:40:25 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Passed functional/vlan/test_vlan_priority.py::test_vlan_priority_tag 177.04
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_priority_tag">Starting testcase:test_vlan_priority_tag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_priority.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-17218' coro=<test_vlan_priority_tag() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_priority.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=249, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=250] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=250] Local address: 172.17.0.3, port 40398 INFO asyncssh:logging.py:92 [conn=250] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=250] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=250] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=250, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:40:26 AM UTC INFO asyncssh:logging.py:92 [conn=250, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=250, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=250, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=250, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=250, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=250, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=250, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 5 pvid INFO asyncssh:logging.py:92 [conn=250, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=8] Command: bridge vlan add dev swp1 vid 5 pvid INFO asyncssh:logging.py:92 [conn=250, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 5 pvid INFO asyncssh:logging.py:92 [conn=250, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=10] Command: bridge vlan add dev swp2 vid 5 pvid INFO asyncssh:logging.py:92 [conn=250, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:1:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN priority INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e04ac80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN priority SIP-DIP N/A Tx 21113967 Rx 21113967 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item Traffic with VLAN priority Tx 21113967 Rx 21113967 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking 1: Ethernet:Outer VLAN ID (4 bits) at offset 124 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking 2: Ethernet:Outer VLAN Priority (3 bits) at offset 112 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Vlan Id: 5, Vlan Priority: 6 | Rx 21113967
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_priority_tag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=250, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=250, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:43:22 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=250, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=250, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:43:22 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=250, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=250, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=250, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":292,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=250, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=250, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=250, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=18] Channel closed DEBUG agg1:Logger.py:156
Passed functional/vlan/test_vlan_switching_modes.py::test_vlan_switching_vlan_modes_via_cli 400.30
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_switching_vlan_modes_via_cli">Starting testcase:test_vlan_switching_vlan_modes_via_cli from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_switching_modes.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-17246' coro=<test_vlan_switching_vlan_modes_via_cli() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_switching_modes.py:56> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=250, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=251] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=251] Local address: 172.17.0.3, port 40876 INFO asyncssh:logging.py:92 [conn=251] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=251] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=251] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=251, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:43:23 AM UTC INFO asyncssh:logging.py:92 [conn=251, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=251, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=251, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=251, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=251, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=251, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=251, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp1 vid 3 untagged && bridge vlan add dev swp1 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=251, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=8] Command: bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp1 vid 3 untagged && bridge vlan add dev swp1 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=251, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 2 INFO asyncssh:logging.py:92 [conn=251, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=10] Command: bridge vlan add dev swp2 vid 2 INFO asyncssh:logging.py:92 [conn=251, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=251, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=12] Command: bridge vlan add dev swp3 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=251, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=251, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=14] Command: bridge vlan add dev swp4 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=251, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e169210>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 235 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 235 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 235 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 235 Rx 235 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 235 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 235 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 235 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 235 Rx 235 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 235 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 235 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 235 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 235 Rx 235 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged traffic SIP-DIP N/A Tx 235 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged traffic SIP-DIP N/A Tx 235 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged traffic SIP-DIP N/A Tx 235 Rx 235 Loss 0.000 INFO asyncssh:logging.py:92 [conn=251, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge vlan delete dev swp1 vid 4 INFO asyncssh:logging.py:92 [conn=251, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=16] Command: bridge vlan delete dev swp1 vid 4 INFO asyncssh:logging.py:92 [conn=251, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=17] Channel closed DEBUG agg1:Logger.py:156 bridge vlan delete dev swp2 vid 2 INFO asyncssh:logging.py:92 [conn=251, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=18] Command: bridge vlan delete dev swp2 vid 2 INFO asyncssh:logging.py:92 [conn=251, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge vlan delete dev swp3 vid 3 INFO asyncssh:logging.py:92 [conn=251, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=20] Command: bridge vlan delete dev swp3 vid 3 INFO asyncssh:logging.py:92 [conn=251, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=21] Channel closed DEBUG agg1:Logger.py:156 bridge vlan delete dev swp4 vid 4 INFO asyncssh:logging.py:92 [conn=251, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=22] Command: bridge vlan delete dev swp4 vid 4 INFO asyncssh:logging.py:92 [conn=251, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=23] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 5 pvid untagged && bridge vlan add dev swp1 vid 101 && bridge vlan add dev swp1 vid 4094 untagged INFO asyncssh:logging.py:92 [conn=251, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=24] Command: bridge vlan add dev swp1 vid 5 pvid untagged && bridge vlan add dev swp1 vid 101 && bridge vlan add dev swp1 vid 4094 untagged INFO asyncssh:logging.py:92 [conn=251, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=25] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 5 pvid untagged INFO asyncssh:logging.py:92 [conn=251, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=26] Command: bridge vlan add dev swp2 vid 5 pvid untagged INFO asyncssh:logging.py:92 [conn=251, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=27] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 101 pvid untagged INFO asyncssh:logging.py:92 [conn=251, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=28] Command: bridge vlan add dev swp3 vid 101 pvid untagged INFO asyncssh:logging.py:92 [conn=251, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=29] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=251, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=30] Command: bridge vlan add dev swp4 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=251, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 101 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 500 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 4094 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e0b5e70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 249 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 249 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 248 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 249 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 249 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 248 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 249 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 249 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 248 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 249 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 249 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 248 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged traffic SIP-DIP N/A Tx 249 Rx 249 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged traffic SIP-DIP N/A Tx 249 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged traffic SIP-DIP N/A Tx 248 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI New configuration traffic with VLAN ID: 0 SIP-DIP N/A Tx 249 Rx 249 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI New configuration traffic with VLAN ID: 0 SIP-DIP N/A Tx 249 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI New configuration traffic with VLAN ID: 0 SIP-DIP N/A Tx 248 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI New configuration traffic with VLAN ID: 5 SIP-DIP N/A Tx 249 Rx 249 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI New configuration traffic with VLAN ID: 5 SIP-DIP N/A Tx 249 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI New configuration traffic with VLAN ID: 5 SIP-DIP N/A Tx 248 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI New configuration traffic with VLAN ID: 101 SIP-DIP N/A Tx 249 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI New configuration traffic with VLAN ID: 101 SIP-DIP N/A Tx 249 Rx 249 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI New configuration traffic with VLAN ID: 101 SIP-DIP N/A Tx 248 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI New configuration traffic with VLAN ID: 500 SIP-DIP N/A Tx 249 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI New configuration traffic with VLAN ID: 500 SIP-DIP N/A Tx 249 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI New configuration traffic with VLAN ID: 500 SIP-DIP N/A Tx 248 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI New configuration traffic with VLAN ID: 4094 SIP-DIP N/A Tx 249 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI New configuration traffic with VLAN ID: 4094 SIP-DIP N/A Tx 249 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI New configuration traffic with VLAN ID: 4094 SIP-DIP N/A Tx 248 Rx 248 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI New configuration untagged traffic SIP-DIP N/A Tx 249 Rx 249 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI New configuration untagged traffic SIP-DIP N/A Tx 249 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI New configuration untagged traffic SIP-DIP N/A Tx 248 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_switching_vlan_modes_via_cli from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_switching_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=251, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=251, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=32] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:50:02 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=251, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=33] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=251, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=34] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:50:02 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=251, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=251, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=36] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=251, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":293,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=251, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=251, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=38] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=251, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=38] Channel closed DEBUG agg1:Logger.py:156
Passed functional/vlan/test_vlan_tagged_ports.py::test_vlan_tagged_ports_with_[broadcast] 235.47
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_ports_with_[broadcast]">Starting testcase:test_vlan_tagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-17294' coro=<test_vlan_tagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=251, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=252] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=252] Local address: 172.17.0.3, port 52600 INFO asyncssh:logging.py:92 [conn=252] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=252] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=252] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=252, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:50:03 AM UTC INFO asyncssh:logging.py:92 [conn=252, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=252, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=252, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=252, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=252, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=252, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=252, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 22 && bridge vlan add dev swp1 vid 23 && bridge vlan add dev swp1 vid 24 pvid INFO asyncssh:logging.py:92 [conn=252, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=8] Command: bridge vlan add dev swp1 vid 22 && bridge vlan add dev swp1 vid 23 && bridge vlan add dev swp1 vid 24 pvid INFO asyncssh:logging.py:92 [conn=252, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 22 && bridge vlan add dev swp2 vid 23 && bridge vlan add dev swp2 vid 24 pvid INFO asyncssh:logging.py:92 [conn=252, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=10] Command: bridge vlan add dev swp2 vid 22 && bridge vlan add dev swp2 vid 23 && bridge vlan add dev swp2 vid 24 pvid INFO asyncssh:logging.py:92 [conn=252, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 22 && bridge vlan add dev swp3 vid 23 && bridge vlan add dev swp3 vid 24 pvid INFO asyncssh:logging.py:92 [conn=252, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=12] Command: bridge vlan add dev swp3 vid 22 && bridge vlan add dev swp3 vid 23 && bridge vlan add dev swp3 vid 24 pvid INFO asyncssh:logging.py:92 [conn=252, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 22 && bridge vlan add dev swp4 vid 23 && bridge vlan add dev swp4 vid 24 pvid INFO asyncssh:logging.py:92 [conn=252, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=14] Command: bridge vlan add dev swp4 vid 22 && bridge vlan add dev swp4 vid 23 && bridge vlan add dev swp4 vid 24 pvid INFO asyncssh:logging.py:92 [conn=252, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 22 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 23 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e128eb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 240 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 240 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 240 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 240 Rx 240 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 240 Rx 240 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 240 Rx 240 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 240 Rx 240 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 240 Rx 240 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 240 Rx 240 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 240 Rx 240 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 240 Rx 240 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 240 Rx 240 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged traffic SIP-DIP N/A Tx 240 Rx 240 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged traffic SIP-DIP N/A Tx 240 Rx 240 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged traffic SIP-DIP N/A Tx 240 Rx 240 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=252, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=252, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:53:58 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=252, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=252, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:53:58 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=252, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=252, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=252, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":294,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=252, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=252, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=252, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/vlan/test_vlan_tagged_ports.py::test_vlan_tagged_ports_with_[multicast] 239.91
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_ports_with_[multicast]">Starting testcase:test_vlan_tagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-17326' coro=<test_vlan_tagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=252, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=253] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=253] Local address: 172.17.0.3, port 39494 INFO asyncssh:logging.py:92 [conn=253] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=253] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=253] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=253, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:53:58 AM UTC INFO asyncssh:logging.py:92 [conn=253, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=253, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=253, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=253, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=253, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=253, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=253, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 22 && bridge vlan add dev swp1 vid 23 && bridge vlan add dev swp1 vid 24 pvid INFO asyncssh:logging.py:92 [conn=253, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=8] Command: bridge vlan add dev swp1 vid 22 && bridge vlan add dev swp1 vid 23 && bridge vlan add dev swp1 vid 24 pvid INFO asyncssh:logging.py:92 [conn=253, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 22 && bridge vlan add dev swp2 vid 23 && bridge vlan add dev swp2 vid 24 pvid INFO asyncssh:logging.py:92 [conn=253, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=10] Command: bridge vlan add dev swp2 vid 22 && bridge vlan add dev swp2 vid 23 && bridge vlan add dev swp2 vid 24 pvid INFO asyncssh:logging.py:92 [conn=253, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 22 && bridge vlan add dev swp3 vid 23 && bridge vlan add dev swp3 vid 24 pvid INFO asyncssh:logging.py:92 [conn=253, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=12] Command: bridge vlan add dev swp3 vid 22 && bridge vlan add dev swp3 vid 23 && bridge vlan add dev swp3 vid 24 pvid INFO asyncssh:logging.py:92 [conn=253, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 22 && bridge vlan add dev swp4 vid 23 && bridge vlan add dev swp4 vid 24 pvid INFO asyncssh:logging.py:92 [conn=253, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=14] Command: bridge vlan add dev swp4 vid 22 && bridge vlan add dev swp4 vid 23 && bridge vlan add dev swp4 vid 24 pvid INFO asyncssh:logging.py:92 [conn=253, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 22 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 23 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e24c6a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 25 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 25 Rx 25 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 25 Rx 25 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 25 Rx 25 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged traffic SIP-DIP N/A Tx 25 Rx 25 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged traffic SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged traffic SIP-DIP N/A Tx 24 Rx 24 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=253, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=253, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:57:57 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=253, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=253, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:57:58 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=253, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=253, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=253, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":295,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=253, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=253, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=253, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/vlan/test_vlan_tagged_ports.py::test_vlan_tagged_ports_with_[unicast] 307.28
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_ports_with_[unicast]">Starting testcase:test_vlan_tagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-17358' coro=<test_vlan_tagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=253, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=254] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=254] Local address: 172.17.0.3, port 40544 INFO asyncssh:logging.py:92 [conn=254] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=254] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=254] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=254, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 06:57:58 AM UTC INFO asyncssh:logging.py:92 [conn=254, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=254, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=254, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=254, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=254, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=254, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=254, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 22 && bridge vlan add dev swp1 vid 23 && bridge vlan add dev swp1 vid 24 pvid INFO asyncssh:logging.py:92 [conn=254, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=8] Command: bridge vlan add dev swp1 vid 22 && bridge vlan add dev swp1 vid 23 && bridge vlan add dev swp1 vid 24 pvid INFO asyncssh:logging.py:92 [conn=254, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 22 && bridge vlan add dev swp2 vid 23 && bridge vlan add dev swp2 vid 24 pvid INFO asyncssh:logging.py:92 [conn=254, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=10] Command: bridge vlan add dev swp2 vid 22 && bridge vlan add dev swp2 vid 23 && bridge vlan add dev swp2 vid 24 pvid INFO asyncssh:logging.py:92 [conn=254, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 22 && bridge vlan add dev swp3 vid 23 && bridge vlan add dev swp3 vid 24 pvid INFO asyncssh:logging.py:92 [conn=254, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=12] Command: bridge vlan add dev swp3 vid 22 && bridge vlan add dev swp3 vid 23 && bridge vlan add dev swp3 vid 24 pvid INFO asyncssh:logging.py:92 [conn=254, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 22 && bridge vlan add dev swp4 vid 23 && bridge vlan add dev swp4 vid 24 pvid INFO asyncssh:logging.py:92 [conn=254, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=14] Command: bridge vlan add dev swp4 vid 22 && bridge vlan add dev swp4 vid 23 && bridge vlan add dev swp4 vid 24 pvid INFO asyncssh:logging.py:92 [conn=254, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:1:6 -> 10.36.118.199:1:5: VLAN : 1 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:1:7 -> 10.36.118.199:1:5: VLAN : 1 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:1:8 -> 10.36.118.199:1:5: VLAN : 1 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:1:6 -> 10.36.118.199:1:5: VLAN : 22 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:1:7 -> 10.36.118.199:1:5: VLAN : 22 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:1:8 -> 10.36.118.199:1:5: VLAN : 22 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:1:6 -> 10.36.118.199:1:5: VLAN : 23 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:1:7 -> 10.36.118.199:1:5: VLAN : 23 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:1:8 -> 10.36.118.199:1:5: VLAN : 23 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:1:6 -> 10.36.118.199:1:5: VLAN : 24 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:1:7 -> 10.36.118.199:1:5: VLAN : 24 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:1:8 -> 10.36.118.199:1:5: VLAN : 24 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e1765c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI From 10.36.118.199:1:6 -> 10.36.118.199:1:5: VLAN : 1 learning SIP-DIP N/A Tx 199 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI From 10.36.118.199:1:7 -> 10.36.118.199:1:5: VLAN : 1 learning SIP-DIP N/A Tx 199 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI From 10.36.118.199:1:8 -> 10.36.118.199:1:5: VLAN : 1 learning SIP-DIP N/A Tx 199 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI From 10.36.118.199:1:6 -> 10.36.118.199:1:5: VLAN : 22 learning SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI From 10.36.118.199:1:7 -> 10.36.118.199:1:5: VLAN : 22 learning SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI From 10.36.118.199:1:8 -> 10.36.118.199:1:5: VLAN : 22 learning SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI From 10.36.118.199:1:6 -> 10.36.118.199:1:5: VLAN : 23 learning SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI From 10.36.118.199:1:7 -> 10.36.118.199:1:5: VLAN : 23 learning SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI From 10.36.118.199:1:8 -> 10.36.118.199:1:5: VLAN : 23 learning SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI From 10.36.118.199:1:6 -> 10.36.118.199:1:5: VLAN : 24 learning SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI From 10.36.118.199:1:7 -> 10.36.118.199:1:5: VLAN : 24 learning SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI From 10.36.118.199:1:8 -> 10.36.118.199:1:5: VLAN : 24 learning SIP-DIP N/A Tx 199 Rx 199 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=254, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=254, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:03:02 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=254, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=254, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:03:05 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=254, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=254, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=254, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":296,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=254, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=254, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=254, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/vlan/test_vlan_tagged_size.py::test_vlan_tagged_packet_size 201.27
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_packet_size">Starting testcase:test_vlan_tagged_packet_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_size.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-17390' coro=<test_vlan_tagged_packet_size() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_size.py:42> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=254, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=255] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=255] Local address: 172.17.0.3, port 49188 INFO asyncssh:logging.py:92 [conn=255] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=255] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=255] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=255, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:03:06 AM UTC INFO asyncssh:logging.py:92 [conn=255, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 1 INFO asyncssh:logging.py:92 [conn=255, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 1 INFO asyncssh:logging.py:92 [conn=255, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=255, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=255, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=255, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=255, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=255, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=8] Command: bridge vlan add dev swp1 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=255, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=255, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=10] Command: bridge vlan add dev swp2 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=255, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=255, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=12] Command: bridge vlan add dev swp3 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=255, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 1 pvid INFO asyncssh:logging.py:92 [conn=255, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=14] Command: bridge vlan add dev swp4 vid 1 pvid INFO asyncssh:logging.py:92 [conn=255, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e12afe0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged traffic SIP-DIP N/A Tx 244 Rx 244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged traffic SIP-DIP N/A Tx 244 Rx 244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged traffic SIP-DIP N/A Tx 243 Rx 243 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_packet_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_size.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=255, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=255, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:06:26 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=255, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=255, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:06:26 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=255, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=255, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=255, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":297,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=255, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=255, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=255, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/vlan/test_vlan_untagged_ports.py::test_vlan_untagged_ports_with_[broadcast] 196.11
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_untagged_ports_with_[broadcast]">Starting testcase:test_vlan_untagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-17422' coro=<test_vlan_untagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=255, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=256] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=256] Local address: 172.17.0.3, port 57002 INFO asyncssh:logging.py:92 [conn=256] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=256] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=256] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=256, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:06:27 AM UTC INFO asyncssh:logging.py:92 [conn=256, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=256, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=256, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=256, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=256, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=256, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=256, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=256, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=8] Command: bridge vlan add dev swp1 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=256, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=256, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=10] Command: bridge vlan add dev swp2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=256, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=256, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=12] Command: bridge vlan add dev swp3 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=256, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=256, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=14] Command: bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=256, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged broadcast traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e12abc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged broadcast traffic SIP-DIP N/A Tx 245 Rx 245 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged broadcast traffic SIP-DIP N/A Tx 245 Rx 245 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged broadcast traffic SIP-DIP N/A Tx 245 Rx 245 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_untagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=256, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=256, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:09:42 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=256, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=256, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:09:42 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=256, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=256, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=256, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":298,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=256, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=256, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=256, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/vlan/test_vlan_untagged_ports.py::test_vlan_untagged_ports_with_[multicast] 192.16
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_untagged_ports_with_[multicast]">Starting testcase:test_vlan_untagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-17454' coro=<test_vlan_untagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=256, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=257] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=257] Local address: 172.17.0.3, port 57926 INFO asyncssh:logging.py:92 [conn=257] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=257] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=257] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=257, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:09:43 AM UTC INFO asyncssh:logging.py:92 [conn=257, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=257, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=257, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=257, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=257, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=257, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=257, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=8] Command: bridge vlan add dev swp1 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=10] Command: bridge vlan add dev swp2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=12] Command: bridge vlan add dev swp3 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=14] Command: bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged multicast traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e1d6290>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged multicast traffic SIP-DIP N/A Tx 123 Rx 123 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged multicast traffic SIP-DIP N/A Tx 122 Rx 122 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged multicast traffic SIP-DIP N/A Tx 122 Rx 122 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_untagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=257, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=257, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:12:54 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=257, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=257, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:12:55 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=257, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=257, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=257, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":299,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=257, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=257, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=257, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=22] Channel closed DEBUG agg1:Logger.py:156
Passed functional/vlan/test_vlan_untagged_ports.py::test_vlan_untagged_ports_with_[unicast] 202.10
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_untagged_ports_with_[unicast]">Starting testcase:test_vlan_untagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-17486' coro=<test_vlan_untagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=257, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=258] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=258] Local address: 172.17.0.3, port 53844 INFO asyncssh:logging.py:92 [conn=258] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=258] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=258] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=258, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:12:55 AM UTC INFO asyncssh:logging.py:92 [conn=258, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=258, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=258, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=258, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=258, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=258, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=258, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=8] Command: bridge vlan add dev swp1 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=10] Command: bridge vlan add dev swp2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=12] Command: bridge vlan add dev swp3 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=14] Command: bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged unicast stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Learning stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f1b7e1d6d10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged unicast stream SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI Learning stream SIP-DIP N/A Tx 199 Rx 199 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_untagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=258, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=258, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:16:14 AM UTC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=258, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=258, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sat 24 Jun 2023 07:16:17 AM UTC INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=258, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=258, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=258, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":300,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=258, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=258, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=258, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=22] Channel closed DEBUG agg1:Logger.py:156